1. UI - 조이스틱 UIManager에 추가 및 Scene에서 호출 방식 변경 2. UI - 경험치 바 앞에 레벨 아이콘 추가 3. 몬스터 죽었을때 경험치로 변경 4. 경험치 바와 레벨 아이콘 연동 Todo 1. 투사체 공격 만들기 2. 몬스터가 플레이어 쫓아오게 만들기 3. 몬스터를 카메라 외각에서 다량으로 생성하는 기능 추가하기 4. 몬스터가 캐릭터 공격시 체력 닳게 하기 5. 메뉴 UI 만들기 6. 레벨업시 획득 스킬 UI 만들기 7. 체력바 UI 만들기 8. 공격시 데미지 띄우는 UI 만들기
37655 lines
2.1 MiB
37655 lines
2.1 MiB
#include "pch-cpp.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
struct VirtualActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct VirtualActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3>
|
|
struct VirtualActionInvoker3
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct VirtualFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct VirtualFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct GenericVirtualFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
struct InterfaceActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct InterfaceActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct InterfaceFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct InterfaceFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct GenericInterfaceFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
|
|
struct Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C;
|
|
struct Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B;
|
|
struct Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C;
|
|
struct Action_1_tDAB4041881A0AD46A7C150D31A131F59B0A61378;
|
|
struct Action_1_tC926860F20D428DA3E93D6FBA36420E904DD903B;
|
|
struct Action_1_t7797D4D8783204B10C3D28B96B049C48276C3B1B;
|
|
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
|
|
struct Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7;
|
|
struct Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333;
|
|
struct Action_2_tBB6A2D36E83BB3B7BFA2ACD51493D5740A3D7F2E;
|
|
struct Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA;
|
|
struct Action_2_tD987B97B18D27B9920365359C46BC12702AD4F7D;
|
|
struct Action_2_t6AAF2E215E74E16A4EEF0A0749A4A325D99F5BA6;
|
|
struct Action_2_t9C4E97D0565650F0AEF7C72077EB8A0F9326E40B;
|
|
struct Action_2_t4797B88C63509F2EE4385D6DABE6A4B5AD5393F7;
|
|
struct Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188;
|
|
struct Dictionary_2_t0B4F40FB3850F8F8B487CCD9F64B8CF9ED139AB3;
|
|
struct Dictionary_2_tFF0F3921D8B2465193365C2463B7D6A977E874DA;
|
|
struct Dictionary_2_tA8E192E813E347FF19EC3868E2C565607445394C;
|
|
struct Dictionary_2_t058B78C04CBFB0F1C72F95C9880AE09DA041219F;
|
|
struct Dictionary_2_t433D1FE2CDB69C9F583F79D5252A34112439D0AD;
|
|
struct Dictionary_2_tEB3FF1660C6129E11F3B4771A549DE9F169B5103;
|
|
struct Dictionary_2_t1FFEE4C9AF6AF524CAD4FDCEA8F3AB34E585451D;
|
|
struct Dictionary_2_tD68C40116E127FE79F9E7AF07820CFDDBF20A8C1;
|
|
struct Func_2_t62EFAA3354EBC38A360CC3A9CAEC60374509CC29;
|
|
struct Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821;
|
|
struct Func_2_t880CA675AE5D39E081BEEF14DC092D82674DE4F2;
|
|
struct Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0;
|
|
struct Func_3_t0072F82DFBE56A425CAA051639D6DF09CB126719;
|
|
struct Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2;
|
|
struct Func_4_t71673974799A3C352F89909BA77E8B33929F2A32;
|
|
struct HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2;
|
|
struct HashSet_1_t87C47CF88B1B88398D4F9A1E51E92F834CF5160B;
|
|
struct HashSet_1_tEFC6605F7DE53F71946C33FD371E53C3100F2178;
|
|
struct IEnumerable_1_t940FA7702741D1A57781199D26ADBA3FE01EC8EE;
|
|
struct IEnumerable_1_t95A7770A90FA1932B7B5A6E80CFFE84EFDD89CD4;
|
|
struct IEnumerable_1_t150759F7548BAA782C609A9B09BA00CEC84BE3E6;
|
|
struct IEnumerator_1_tAFB65610F759CAFC5D1E91B68A548311182B6A22;
|
|
struct IEnumerator_1_t067D943FA808557FBA1FBED8EA4E9A1BFCB791B8;
|
|
struct IEnumerator_1_tA6A2274AE31A9D0C4E245176DC4855437D643269;
|
|
struct IEnumerator_1_tC686F7806DE87459BEAA5E37865B3E8BD4DAA1A0;
|
|
struct IEnumerator_1_t43D2E4BA9246755F293DFA74F001FB1A70A648FD;
|
|
struct IEnumerator_1_t8ED46B87E7705380C41A64C1E848D3F32789C639;
|
|
struct IObjectPool_1_tE0E410B09034F9EF266E8514D807E49C910D798F;
|
|
struct IObjectPool_1_tE8CA6468BE6707A63684BDE52B62C116D73785BA;
|
|
struct IObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5;
|
|
struct InputControl_1_t6610D981ECAED7950370CC37B55465BBFDDD6A61;
|
|
struct InputControl_1_t7A35A4AF63A7AA94678E000D4F3265A1FD84288A;
|
|
struct InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3;
|
|
struct InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66;
|
|
struct InputProcessor_1_t6E31E29C499C6D9610C662BCCAD45B97D442C96B;
|
|
struct InputProcessor_1_tFE49B42CB371A9A2A3F29802695BD251947AD0B4;
|
|
struct InputProcessor_1_tCC7634AB386F9C6888B89C0FD440251E67C5D8F7;
|
|
struct InputProcessor_1_tD1A40E0E5825AAABC3416EC96E087FF6E6351DD2;
|
|
struct InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798;
|
|
struct KeyValuePair_2_tC24A74EF64A292F5C6BA77D0B04CD6620D2DE3AC;
|
|
struct List_1_tFED1C27AA4B8AC9813FF4858B3ABB1B3F74558EF;
|
|
struct List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448;
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73;
|
|
struct List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A;
|
|
struct List_1_t66029D02EA129D03A082E470EB98C85812301A0C;
|
|
struct List_1_t268ADAE63E623B42094720668F8DB571CF6085E6;
|
|
struct List_1_t4E502B2E42676E48E6F9A8F0251ADB1DF4BD490E;
|
|
struct Predicate_1_t81E65ECFCC613C16F7408ECA5D3D94536697174D;
|
|
struct SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B;
|
|
struct TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021;
|
|
struct Action_1U5BU5D_t18C922CAB85EAE463E29566305D718EF64B12A16;
|
|
struct Action_1U5BU5D_tE4E06618063C3EF89781BEB4DF47D183654040E6;
|
|
struct Action_1U5BU5D_t9AF7A60AA589F7071315F3DA2F77CD32CB43FB5D;
|
|
struct Action_2U5BU5D_tE696881AB7B602657DE1A212B1F9322B7F472FBB;
|
|
struct Action_2U5BU5D_t493765D280908ABBDC5280C16C38A55BEB3FB645;
|
|
struct Action_2U5BU5D_tF0EAC88CF3D1AADA46955EC4879598BCF64FEA5B;
|
|
struct Action_2U5BU5D_t03D844ECB7234028DD3556FBAD4097B4835CA7A4;
|
|
struct IObserver_1U5BU5D_tC7308F301F0D09FCB9FED9003FC09E1AA8B7C170;
|
|
struct InputProcessor_1U5BU5D_tB3C64A18219DEBFF75635AE580655A02C187A57E;
|
|
struct InputProcessor_1U5BU5D_tFEE411B67EEAA6B997AF875A65D072993C8C809C;
|
|
struct InputProcessor_1U5BU5D_t2D9B681F9F0B39759619A0D4617FB6B20FB10AC0;
|
|
struct InputProcessor_1U5BU5D_t5083205703ED9D1A4B8037E3BBE765389957231A;
|
|
struct KeyValuePair_2U5BU5D_t45BAFB41C049BDC49B00275E5A255BB6DEB1396C;
|
|
struct KeyValuePair_2U5BU5D_tF8154B2302178CCE00D745DBF55F703880469DFC;
|
|
struct ActionU5BU5D_tF6161335A0A12A221AB081D78725C8AB6FE506D2;
|
|
struct ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7;
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
struct FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F;
|
|
struct GamepadU5BU5D_t907383551E67ACF51B8B4ECCC0E399DAE2AB3762;
|
|
struct GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6;
|
|
struct InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17;
|
|
struct InputDeviceU5BU5D_tA9AEFC6AF63557D3D5DCFB2B26DDA6F63147D548;
|
|
struct InputDeviceCommandDelegateU5BU5D_t243984810DCC1E9828C0D6665D0B7AC435A43D9A;
|
|
struct InputDeviceFindControlLayoutDelegateU5BU5D_t9B27C1115622DAB0A04E3C93E8A9D64EBFDA27BC;
|
|
struct InputEventPtrU5BU5D_tC8D2CB7018396F4C074F2202E79522E9B0979821;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
struct InternedStringU5BU5D_t0B851758733FC0B118D84BE83AED10A0404C18D5;
|
|
struct KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5;
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354;
|
|
struct TouchControlU5BU5D_t339733075857CFF82B4E43BFB310F2350225836D;
|
|
struct TouchscreenU5BU5D_t73D22E3D2A7039C6C374D75B796C8F83BCA897E3;
|
|
struct UInt16U5BU5D_tEB7C42D811D999D2AA815BADC3FCCDD9C67B3F83;
|
|
struct UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA;
|
|
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA;
|
|
struct HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5;
|
|
struct HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D;
|
|
struct HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955;
|
|
struct HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD;
|
|
struct ControlItemU5BU5D_t7798E8B7C7F58B8F6D13B567539CD82E962C7104;
|
|
struct ControlBitRangeNodeU5BU5D_t912A404149DE6D350D1735A026182C409C510F27;
|
|
struct DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A;
|
|
struct AvailableDeviceU5BU5D_t47A5F4F158146E9E9066D29DB4494D96AF8F1DB5;
|
|
struct StateChangeMonitorTimeoutU5BU5D_t475D94CE66B17064D5DE2966779E7E9006A09D82;
|
|
struct StateChangeMonitorsForDeviceU5BU5D_tA1D732EEFF09F568D8FDA6908633B6DAD38B61F4;
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
|
|
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
|
|
struct AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7;
|
|
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA;
|
|
struct BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158;
|
|
struct BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E;
|
|
struct ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF;
|
|
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3;
|
|
struct CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B;
|
|
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3;
|
|
struct Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC;
|
|
struct Delegate_t;
|
|
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
|
|
struct DeltaControl_t63053AF5E0CD02B62F3CDE79821E4A12F72D573B;
|
|
struct DoubleControl_t3707A6260424A2F3636669A2BAFF5CB5E91D2486;
|
|
struct DpadControl_t517E87BF3EB22369B71EA1941648079B468A45AB;
|
|
struct DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B;
|
|
struct Encoder_tAF9067231A76315584BDF4CD27990E2F485A78FA;
|
|
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
|
|
struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8;
|
|
struct Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A;
|
|
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F;
|
|
struct Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C;
|
|
struct HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D;
|
|
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
struct IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5;
|
|
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
|
|
struct IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09;
|
|
struct IInputStateChangeMonitor_t043FD8736A6F45C06A2FAFFC5BE70A565F999598;
|
|
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E;
|
|
struct IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910;
|
|
struct ISavedState_tC899A3970A1A39D623ABACC592E3E346F0CA7401;
|
|
struct InputActionAsset_tF217AC5223B4AAA46EBCB44B33E9259FB117417D;
|
|
struct InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E;
|
|
struct InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D;
|
|
struct InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B;
|
|
struct InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809;
|
|
struct InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A;
|
|
struct InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E;
|
|
struct InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5;
|
|
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE;
|
|
struct InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD;
|
|
struct InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210;
|
|
struct InputRemoting_tCBC35AAA3A034ECED8F33C5BA5257F2EB2B05114;
|
|
struct InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF;
|
|
struct InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480;
|
|
struct InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55;
|
|
struct IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB;
|
|
struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E;
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
|
|
struct MethodInfo_t;
|
|
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71;
|
|
struct NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7;
|
|
struct NativeUpdateCallback_tC5CA5A9117B79251968A4DA3758552EFE1D37495;
|
|
struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8;
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
|
|
struct ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB;
|
|
struct Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A;
|
|
struct SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E;
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2;
|
|
struct StickControl_t2608D1388A5015029123635B4B589AC7EE20C50B;
|
|
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE;
|
|
struct String_t;
|
|
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70;
|
|
struct TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079;
|
|
struct TouchPhaseControl_t4652C6E0EBFAFA85A31607769876B02C1C9FCAEC;
|
|
struct TouchPressControl_tD5BD68D9FDEAC889591DD7A499864893A43C7CEB;
|
|
struct TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0;
|
|
struct Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE;
|
|
struct Type_t;
|
|
struct Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432;
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
struct U3CU3Ec__DisplayClass13_0_tF99D0DA1843466C43BE570E944288EC7EDE0E4AD;
|
|
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED;
|
|
struct HIDLayoutBuilder_t1B1FA825DFA02D93183E7C1B3C416D4A43D56553;
|
|
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF;
|
|
struct DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73;
|
|
struct ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8;
|
|
struct Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75;
|
|
struct ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C;
|
|
struct iOSSettings_t1E9797F94CF6288036BD030C5A5BA22E80713C0F;
|
|
struct UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324;
|
|
struct U3CU3Ec__DisplayClass10_0_t3C16459876E43A6A7151C0E35A8B7402A64144D8;
|
|
struct U3CU3Ec__DisplayClass13_0_t21F396034441DB57F92472B4AB14EAD654A1E763;
|
|
struct U3CU3Ec__DisplayClass7_0_t1A3709DBB35971E4F78E67858F971CDD0B817698;
|
|
struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05;
|
|
struct U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6;
|
|
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D;
|
|
struct Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5;
|
|
struct U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F;
|
|
struct U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_1_t7797D4D8783204B10C3D28B96B049C48276C3B1B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CollectionPool_2_tBDB588E456C506D92EA19A206F41BE4DB57D1D11_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_2_t880CA675AE5D39E081BEEF14DC092D82674DE4F2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tA6A2274AE31A9D0C4E245176DC4855437D643269_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tAFB65610F759CAFC5D1E91B68A548311182B6A22_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tC686F7806DE87459BEAA5E37865B3E8BD4DAA1A0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InputStateBuffers_t338A1714D01276EEEF5F8CD6AE81DFED939D5968_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InputUpdateType_t31A66F5342D924983382FA675EF78007C04EC590_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t268ADAE63E623B42094720668F8DB571CF6085E6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t66029D02EA129D03A082E470EB98C85812301A0C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NativeUpdateCallback_tC5CA5A9117B79251968A4DA3758552EFE1D37495_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Predicate_1_t81E65ECFCC613C16F7408ECA5D3D94536697174D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TouchPhase_tC280DE0C3DA3652019BF3605D57099E6CE2F3B14_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass10_0_t3C16459876E43A6A7151C0E35A8B7402A64144D8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass13_0_t21F396034441DB57F92472B4AB14EAD654A1E763_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass7_0_t1A3709DBB35971E4F78E67858F971CDD0B817698_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UsagePage_t6EF545F107AB1DED99B07C377BD0B8457DC6F7B8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D____fingers_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A____touchscreens_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C____m_Elements_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59____elements_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1____usagePage_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B____usage_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580____m_History_FieldInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeField* Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70____m_Finger_FieldInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral012315DEACA80CA5572171295D68942333F9F9A7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral05B5896E41F6CE375015DD206C28094820DE1498;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0654CF7A7652A61085CCC7B975A9FB4D7C53DD46;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral08FB9129CB5911626293A76FA9EA45A589D9966E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0CF8CCC4707209C88733F45D2F50CAF236223A22;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0D74755D51876350D4B4382E014E2E93AD3D3B73;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2A5AC4668ADDA05D44CC58641856CAE1ADB66D24;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2B396DAFCF90B4201E355761B57D4F5B4820024F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2E967EC47C0181B3A2E25F28AF8F0061B4E2A296;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral30C9A4CE48482CFCCFE484E0EF36FF8844DDAE6E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral33018FA8926405B4E44C0D1902B3435E469A55E2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral336A688B6B40BC4C1AF41D269266485DC8485E3B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral34E2E1D5D393F33E08B55532C6B7D27294F02F4C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3BA4C63055FA6CF5A2214085C6E3F3F666044A57;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3C54E891B7C3652F3066D6041DE2D9BABF6DCA32;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral413A93D2DA41C940A92CBF70746012937590610E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4541DABAC4FE8FD5D7C4DBCDA1190481B5A90229;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4E6231226F0A62484622AE51964EB5710BB528F9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5278FC49D5DD7EE6B7B489211DF85A018916ACB6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral589E6D8BD59F7D804E4A1A1C559787B0B2549B6C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral58EE5386C7A4EBFD342B1A8A3469B586CD7724F3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5C199811F186FA928A800B2EFB80A1C7498DA9B5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5C82E0DD83FAB77ECA656BE8D48C1899B25B0815;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral62F4F3914DA44EFA764CD7207FD98C1D7D603493;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral682C94355936D06676EFEE25A133C60E3F8445C8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6C63C93EC2E14069C02301603969E78DB054EF8E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6CD29DF87BDE4FB4030DE06320C56337EE9127EF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral75C2382105EE7550A774237E98EAB4B761429404;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral79E7200C256B5A139CC2342D4CDC95E51A6DD366;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7ED914680C555D96C6ADF1D908946F172FCFAFCB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral80C0A09DC56E67593A40EC47DEE2A4827DB0BC33;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral822D2E2FACD5A075837EA460A85415C1BB4A5B00;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral82D598CE3B93B20E038CBF5D5EE6829297E22B95;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral82D9A561A7A240949C795C99087C473D0967B043;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral85B9AAF0EB29996A5ABED6647FBC8A4437062717;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral894192F113AFCA62FF819992911789F3CD2A99BF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8ABFE73B54F1E2EDA1877D47B6AD4176818D1A01;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8F6CFBA1DD39F197A0470DD4831EDB73FF9AA184;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9185A9C6A1BF633445844194B5073A9E7D587F4D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral924007ED054F82D9429F46EA3884D176E0DB744B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral97390174FD4C882BACE6D033A351D373021320B0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral98BC550B25E41B9B00C9D21EF0AD0291FE9A85CC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA4EC35FE30A8C73BDAEF7A654EEEA3953D7FAE24;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA699959862D8ADBB4A539849B791187B154DA724;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAD23E6251FEEFC7CF204F3BB7E43B14EE901517E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB2A6BBCEEF1288495F26EB3470ACB3FD27C456E3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBA67382D61289B0EDBD1CD867DE673562B9B5111;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC1FF02C94AF6761BB495CE9E94D85A9422EE0E3A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC2451B8C6D92CA7D8CE2544B065B761C4B4C9647;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC26AE6F38B24292B9F4A89F463BE2C43F48DEBD1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC5F6475699851D077E0F965E3C29BEB8A33E339A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCA0F65034D6B6BD3BB9E353144259AC585587137;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCE4026E40BC769AEFB28610F5FE8D1C5507EA2B4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD04950964E883490D4CCE5E2BB5659308B237EA5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD408E794AF2B358E256380A4F7BA14299C3D5801;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD52F14A7E64122290D63B7EF4B3530CB47A85E14;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD748E233FD289CD4B1ED5D7797639399A9B696ED;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD8332BDAEF71624DC1D56CDA64F0BAC2461AA9EF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD8D5235574444C342D8D4E761289705C697DD73F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDC29674F226716B02549B8B392EB04F0D3FBEB76;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDC71B380AFF23A38F6029B32B61C6943CB960350;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE493A589C92D423742E94550596D4C4E4B20CC33;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE518FE2FD73613C259C98F83F70015A67E8459D1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE94EF447B7CA22BD133EBC24A4C29384FD843DB0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEBE3EEDD107BB87C6567C5FBFDC3A815F512391E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF33AEA4F74EB3F443686A5ABBEB28AFF89059C6F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF43C565EB197642FD7A61215CD152E5223F84532;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFAAED55F148F74B2C74F8C745D3CF6CBC766B1DC;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ActionEvent_From_m6DE05D1DCB874CC678A8FC27347871B8669732C9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ActionEvent_set_bindingIndex_mF620F2E875C9E6EC9B51271D6E8F469C4E855708_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ActionEvent_set_controlIndex_m2AC91D48B3CCA9C73415A1F85648CB93B05711E7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ActionEvent_set_interactionIndex_m8369A717B14FE2DE5CC74F55A1764EFE2DCE0546_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ActionEvent_set_stateIndex_m6A5B88C7CD64D3BC75B8211484AF25280C5E520B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mB1214C732EDE19508DB2D6FFC732BA6C36725CCF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_AppendWithCapacity_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_mD1EB70229BA4FCE7BB48A627BDB2246259B0B02A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_AppendWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m4A3CE75746FB1AFC8283C6E8B76E923666A07961_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_Append_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m12D0540A13D944AB6449C772B158A7FF8E39A538_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_Append_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m28BB0D48547AE7FA146E50EEFC61673CA9694DBD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_Append_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_mA5858F11A337989656D8E979F1262C06642475A4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_Clear_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_mBDC379B2F0C95AC42366BF126E7830F8AADBE0EC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_Clear_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_m145582A0849DC8B8158800E6C42F8C0715633546_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_Clear_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m161A17E48623F7125BC715564D82E7095F4400F1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_ContainsReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_mF487A3E7CDC1C0B29B2BB3178D9CB4398D6A37D7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_EnsureCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mF8379BFCD36AC20A6B37E3145EA3F3B403301DC6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_EraseAtWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m0C0B81FF19D0A1AB73D89611640C2DA671D3389E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_EraseAt_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6B80DBFF93497B94276E989C8357A7A72C454144_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_EraseAt_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_mB1BC8BA75E0736148AAEC3C83444128EE5BA0049_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_EraseSliceWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m9AA46EEAF8D235726A766F9CBDE46A3587732F54_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_mB09BF2856995673BC9969B5E877CC8A9B8BCD443_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_mCF9137BEBBCF508C0D1E21C926C31E9A44FABA97_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisInputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B_m7255E2EDA1E06E6C8F99AF1564A17FCA40A970BB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_mAF4E5E77C2382FF511F4C4F6C5A3ABFB6182785C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_InsertAtWithCapacity_TisTouch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_m98321242121000D55966FF534E3B042044932B60_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayHelpers_LengthSafe_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m1A991C46566DF63B412B6FAC8DA4A910E6916923_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_AddCallback_m3952EFDAB87F62F3748292CDF90AB17DFB3BC72B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_RemoveCallback_m193ADCFAE914FE65AB4E5206FA645A02CDC9890D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackArray_1_get_length_m096E657BAB53406356BABE16CE03C92212CF5A52_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CollectionPool_2_Get_mE6CF40020536BE09DC00422B38D38CC79B8CB19A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m08B72E0E097917AA5CEBAD048899493F5780A421_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m9DEBF1BF04DA506E770B06B906F6ED856417BC9A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DeltaStateEvent_From_m11082795B41196B42A12418B371A7EF2723CEF38_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DeltaStateEvent_From_mFFEAD69A307D75C84B87E58E644B1F16E1B7EA48_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DualMotorRumble_PauseHaptics_m3BE8E2167226A3C37799E19743D4F8DAD232E31A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DualMotorRumble_ResetHaptics_m0589143821BBBA3DEA22D4F88027063057FBADA5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DualMotorRumble_ResumeHaptics_mECD40150D2AAB95F7FA25BC7BD146E0C28B76E56_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EnhancedTouchSupport_CheckEnabled_mB8F6A757CEB1321EEC99490327A0D543E3A067E7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EnhancedTouchSupport_OnDeviceChange_m6F0D816AB57DDD8E83C650DB19CA6DF0A2025BD9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EnhancedTouchSupport_OnSettingsChange_m6D6CC710C6F174A0E4E9DB6A0A8A78FC60805C96_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Contains_TisHIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F_mD2995E6FC4E949ABA06D2AA0A1F87BFF2F4BA018_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mE6025392536B1B57D5D39AD09482558157C4CBAA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mEDB482ACA649331B5EF4524B9E1D4C3B9BCD1134_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m6FBB9F9F70B0D21E92C7D13E26DDC8EA5A70ACB3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mB9DC3D934804170CFD1F8B40AD171946368F5E8C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mBAEFD5A6376C9CFEE01B48D250572D491A8C6C24_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Finger_OnTouchRecorded_m242B4B22E53D86C6710D4D23C1455CF98B30B19F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Finger_ShouldRecordTouch_m1C19BBD41726B0C8337211A07AAF48EC6FFD848B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisTouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_m3332B854D47D58542E9A5D19442054BDFC92FD85_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* GamepadState__ctor_mD69F20EFA852648DFB4A97AC8B91692FBA793373_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HIDDeviceDescriptorBuilder_AddElement_mD994613C265EE2137E086C3BD8A028E81763647E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HIDDeviceDescriptorBuilder_WithLogicalMinMax_m3B81BFABC8C577FFF03F61E1B205DF09B921B5C1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HIDDeviceDescriptorBuilder_WithPhysicalMinMax_m58B0FD4DA13242CD7B1D7F67FFB664E344A0270A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HIDParser_ParseReportDescriptor_m09EA84744047F1CEEAA416B641CC17AEA34DB9C7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HIDParser_ParseReportDescriptor_mEDBCC4C1B27054EB99A738735C1F41CD6472E62A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HID_OnFindLayoutForDevice_m2744520DC2AA6D10ED88CD05C49CD9EF1EBE29AA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IMECompositionString_get_Item_mAD02BEFBDF102BC3A61859E112F62473431FD9C7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_AppendWithCapacity_m4D609EB991E007436EB5BFA3784373529E098771_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_AppendWithCapacity_m7D120AE2B1401CD22AEE9DC9662CCC0DC84BBB60_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_AppendWithCapacity_mC3DD9D6BFC53FE2F13BC3FEE652EC3B2CBA547AE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_AppendWithCapacity_mDB0D8ADCFF5D374E15017980D7073D63B8E8C48F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_GetEnumerator_mF42E560968274088F43D58E20B67D7C313C7980B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_RemoveAtWithCapacity_m4D058322BEC61FA58F04CE9A837A2E464759415E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_RemoveAtWithCapacity_m8C65A9998195061436978BFFC7624D99DFAA3976_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_RemoveAtWithCapacity_mB93190E8A814A079EA1D711D1CE53DA0953D325D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_get_Item_m1C8BF2A41804F8D2B398B234FE3B1E940D36DFF1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_get_Item_m9028E5429BC2E916894F7F533B18E2D628C53CD9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InlinedArray_1_set_Item_m6A196904387C38864370BABA0CBACC0EEF6BB786_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputArrayExtensions_IndexOfReference_TisIObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_mDF245036F6C353CB2B70C5860F90BA16C961E751_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputArrayExtensions_IndexOfReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m33ABEE0C487DC3D77554DABBA802DA668DBB4D18_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputControl_1_ReadValueFromState_m1748B48FE53C7B329B8138F43857E231AC6FC24E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputControl_1_ReadValueFromState_m8653D1564BFE81C2D6C0AB381F9CD84492F350F7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputControl_1_ReadValueFromState_m90076063D4500290705DBD1D85DA8743D4652C37_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputControl_1_get_value_mBC9F8DCDF832854DCA08E35A824EBD8A76ABDE2E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputControl_GetChildControl_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m37B3269440E54D5C867480E334993426D47F9044_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventBuffer_AppendEvent_mAEC914B9C5C5534378199FF5C35D7EB57215E011_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventBuffer__ctor_mE2DE130D019FEE1A6E4DE07D0EDA233F7008D50B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventListener_op_Addition_mE4193B2988A4BA5E50D618112E188CEFAB5B6AFC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventListener_op_Subtraction_m1F22563B9F83525FF3046236D787006F931913FA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_IsA_TisActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444_m2F2591754A98F71A8E950E17F45153089F5B2D10_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_IsA_TisTextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E_m01CE0B6701368BD1BFDB10DE3162AF9A3D413B8A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_get_stateFormat_m664BD225A799818C59844F7749CF52A0F588D9B4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_get_stateOffset_mDB68F2BF9E2D3B80A98ED6B8DE02F1C3C55D69E4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_get_stateSizeInBytes_m4C0F58AF9A43543102B597F3ACDCAED40D2B95AB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_set_deviceId_mDC5B90109CDEECE63A5F1310379DB8B1B31D2B97_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_set_handled_m855A75D4B98470B0A814FB8627608595FC9E9EF0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_set_id_m8CCBE3CAF92578F56613E99AAA4334BCCFCFD40B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_set_internalTime_mBD0B465C6882DD13F5FA3AAE487C0FA8A68E3810_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventPtr_set_time_m6058E3EFFAC41CA39B2F16CB8F184F03CDEE6E13_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_LoadFrom_mB957CED841234BDBFBA2C7D99D89AF0CE73884AD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_LoadFrom_mEFB01D71D9BACB72028F20075B8B09E3C4052BB8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_ReadFrom_m0B3DB3EBB340BBD3B9AE3A819C432B09BF4F358F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_Resize_m257080DC43F8E24AD91F423FB340139965B1C190_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_WriteTo_mCCAB194CB8909F1BEC6854A0CA39FF87160629D7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace_WriteTo_mE0CBA14E395823FF215130CF48644ED14E8875CF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEventTrace__ctor_m8FF4728B5B37E6D481CD0118EB102B69BC22B138_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEvent_GetNextInMemoryChecked_m93A70165EF89707799F4E4F5935C74B620B709DB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputStateHistory_1_GetEnumerator_m7589AE5E798BAFF50EF3C3BC3539FFDFF5DFCF59_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputStateHistory_1_RecordStateChange_mD873C4A092DA5D5E86088B221B90A4B5B05F5840_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputStateHistory_1__ctor_m760ABD5FDD38AF6C3FF42B641B3FC8383E4A91DB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputStateHistory_1__ctor_mF238AB65ADBA9D960A9B86F6AA208AA315B42435_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_AddDevice_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_mD79344B098B9A9FB343FF886B1570591ABE366F5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_QueueStateEvent_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_m75F650C67ACBF9096BDC8A3C1EC71482303F92EF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisDualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_m617DEC2AD87CDA6CA84F62125F4B1041BDC62777_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* InputSystem_RegisterLayout_TisHID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_m2382634AAE2124CEA4375912F34520030C29D811_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* JsonUtility_FromJson_TisHIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_m312C04431DC84D71214A2C5CAC845D5B76D91E4E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2__ctor_m3C86D5D8BB0D1118068E83ED43D64F4E64E7C221_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m5A886C4B3E54DEA04D456E49D7FB92A4545FCD8F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m83DA000FF3605DAD9160D02FB36863DF77DB468A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyboardState__ctor_m154082608F16AC4438753E4814D9BA61AA3EB2D2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m2EE80016B94F10A7E9150D8ABB6C5668609CBAB3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mC605D61CAC954D4A3A8D348D5D221B814319A038_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mEFED85B7C6AF40AEC5B34E6C11C3C18BF631B3B5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_mEB9A929B41F7294B9F91D91FFCEB73C358478813_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m12163A5ACF7868965793C27BB4086FA446FE4082_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m2193302E2DBF37D55C25EE317E0BDE040BE5CB52_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m6CF56031007CD05AA70A2FDA98FB9652FD3C0DF5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m230131CE40A0013D25B1FB05FDDB98CB898BB718_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mAA78D7E536ED334B3A2ACF6807CC5CFFD12A1F04_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m62F2D5DF7AD292BC7D658B73628876B1EFDE0EB2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_mF8C569EAE11C005E295F2F7CFD63AF6107206290_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_CopyFrom_mCF4D43C37F14A2904C5BA14973DDE501D965DA89_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeInputRuntime_DeviceCommand_mB8A526874AD69E9506C9107ED93456FCBE1CCDF1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeInputRuntime_OnFocusChanged_m5EBBEFE59AA7D3441379388C255BA98963D59250_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* NativeInputRuntime_OnShutdown_mD52B4BB75DB77B06409941C49A6A41F41C6AAB4A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ObserverState_U3C_ctorU3Eb__2_0_m614AC79FB380B888191060E784E5A18A3A4FF29F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PooledObject_1_System_IDisposable_Dispose_m5642236CE31A998871D30083D40807623593A815_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* QueryPairedUserAccountCommand_set_id_mCA44A798D70E7F0EB7BA347652F4341221A5BDAE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* QueryPairedUserAccountCommand_set_name_m4C8CBE6D10186933B46DB10B494E21213805B37A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_IndexOf_mFE4262FD29B7CC10555B765F22C7D263C0BC97AB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_ToArray_m7C4848AF221AD3A11F95E50E61A49B4AA1FB58FE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1__ctor_m9C297EC68F90BE1CBFDC80B0D94420BF2B905455_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Count_mB20295F7CC546835AD75D4880A2A81DABB6BE29C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Item_mCB4626E80069288BC1EEF0F558B1B806F59DAE43_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Item_mDFB5E4BE282F80EE3CF856F0DD06DD5BD72B8B2A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_get_Item_mF7217A9697E8EAA3A574FCDCB611597EC9C1836A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_op_Implicit_m452C9949CC9DB6FEDA4109C319B34666CE36E3C2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArray_1_op_Implicit_mDC06E9C67A7376B81251B04CEC9AACE3428C82BE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Record_Equals_m17C216CDC45654F53F8191093F3404478DB16B69_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Record_GetHashCode_m94F8E34331A3B0253C5448B7E9B23BFE0F1B04A8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Record_GetUnsafeExtraMemoryPtrUnchecked_m43B2E6AC3AF2307D2DDF2C92E90A629666277F66_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Record_GetUnsafeExtraMemoryPtr_mF305A3D8857DFF297E9FB6573684E4B9BF82022C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Record__ctor_m1CACECB022FDAACE6482C208E6552F7614445895_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Record_get_index_m8BF5DBF4C267EED76E3802B249F2856F29DAD8A6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Record_get_time_m5976C10C2C3A2A2089D57F1DF9AE5557C10DF47E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReplayController_OnBeginFrame_m099944319B93E1E8A2B6264F50F31CF5434277EF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReplayController_PlayOneEvent_m2533EAE40DCB7642C6A4F4CF04E989D9AD0C1548_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReplayController_WithDeviceMappedFromTo_m031C51AFBE0637B093457927BA8D452F78B6F3D0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReplayController__ctor_mFACECC15923550957D306EF31786A98FD37F1F03_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* SavedStructState_1__ctor_m3C152C71C4CF020B00FFFDB88B7A667A8192389B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StateEvent_From_m1C02D0B7B693C47FFA472D23EF1F2CF0FBEA9AC9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StateEvent_From_m673CE00ED44EED4E56EF99C685FF0636E5B11F4D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TextEvent_From_m392E7397CAB8204770ABAD76324B9182EBA20469_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TouchHistory_get_Item_m2CF5BFE3F5263F361E7CBFD083E7449DA4F42BBF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TouchSimulation_AddPointer_mAF311DF959277CE67860C36E4650A3EE734194C1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TouchSimulation_OnDeviceChange_mBBFFE124D77C484CF2AFC391E9A53C408F4689B7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TouchSimulation_OnEvent_m1D309DAE95183E20C72075AE2B502EC6C0066414_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TouchSimulation_RemovePointer_m787BDB97748ADD4B28C3AFB85304B6A938889B42_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Touch_BeginUpdate_mDE8739575E49E8BA2F9FCD789F8962ED390A9EEC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Touch_add_onFingerDown_m8A2C32388E43F459FA71AA84B1CDB159597867ED_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Touch_add_onFingerMove_m8E1845DBA9ABE95B6D8E922392BAC311054BFF91_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Touch_add_onFingerUp_mC01645A16F23AF92176537CE0FE1ADB55A93B03E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Touch_get_history_m1B049B5EB482493F9CFE5B260DACEAE9B0119BB6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Touch_remove_onFingerDown_m6CA33BB823569C40703EDC3C1B9F46D2700C6AA6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Touch_remove_onFingerMove_m9525E9752D6F09F290C07825E6115793B882542F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Touch_remove_onFingerUp_m637736C3F7E75C5D8CFC08540B13599024FA7CF5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CPlayAllEventsAccordingToTimestampsU3Eb__38_0_mD6E1BBAC6B62A15BA7EF6AA962FB149E191F86A5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSaveAndResetStateU3Eb__80_0_m68DC728969026B2343ABDBBD11BAECB90104CE76_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CSaveAndResetStateU3Eb__80_1_mE5C6C813958FEFF5A8AED050324F4B777D62B991_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass10_0_U3Cset_onBeforeUpdateU3Eb__0_m8866A3C60E714FB89E34A85EEAC587B91D9AD43D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass13_0_U3Cset_onShouldRunUpdateU3Eb__0_mA1457EFD8C1B7BBC063563F4D3D7C41EDB06062F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass43_0_U3CApplyDeviceMappingU3Eb__0_mD9F26ADD12D189195E38531637DD0404DCBC9F1D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass7_0_U3Cset_onUpdateU3Eb__0_mA6FA76E66DF94BD79BE9B23EC8C0B4B2038F76F7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnsafeUtility_SizeOf_TisInputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5_m0A49629FF4362F75BF20F043E1BA1E7D050C76F9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnsafeUtility_SizeOf_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mFE961AB914D8126DC425FAFC788195746A8CBA59_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_0_0_0_var;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D;;
|
|
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com;
|
|
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com;;
|
|
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke;
|
|
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke;;
|
|
struct HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7;
|
|
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED;;
|
|
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_com;
|
|
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_com;;
|
|
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_pinvoke;
|
|
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_pinvoke;;
|
|
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E;;
|
|
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com;
|
|
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com;;
|
|
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke;
|
|
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke;;
|
|
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE;;
|
|
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com;
|
|
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com;;
|
|
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke;
|
|
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke;;
|
|
struct InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5;
|
|
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70;;
|
|
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com;
|
|
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com;;
|
|
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke;
|
|
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke;;
|
|
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF;;
|
|
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com;
|
|
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com;;
|
|
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke;
|
|
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke;;
|
|
struct UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324;;
|
|
struct UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_com;
|
|
struct UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_com;;
|
|
struct UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_pinvoke;
|
|
struct UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_pinvoke;;
|
|
|
|
struct ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7;
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
struct FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F;
|
|
struct GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6;
|
|
struct InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17;
|
|
struct InputEventPtrU5BU5D_tC8D2CB7018396F4C074F2202E79522E9B0979821;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5;
|
|
struct TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354;
|
|
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA;
|
|
struct HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5;
|
|
struct HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D;
|
|
struct HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955;
|
|
struct HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD;
|
|
struct DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A;
|
|
|
|
IL2CPP_EXTERN_C_BEGIN
|
|
IL2CPP_EXTERN_C_END
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
struct List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448 : public RuntimeObject
|
|
{
|
|
InputEventPtrU5BU5D_tC8D2CB7018396F4C074F2202E79522E9B0979821* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A : public RuntimeObject
|
|
{
|
|
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t66029D02EA129D03A082E470EB98C85812301A0C : public RuntimeObject
|
|
{
|
|
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t268ADAE63E623B42094720668F8DB571CF6085E6 : public RuntimeObject
|
|
{
|
|
HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158 : public RuntimeObject
|
|
{
|
|
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___m_stream;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___m_buffer;
|
|
Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* ___m_decoder;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___m_charBytes;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_singleChar;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_charBuffer;
|
|
int32_t ___m_maxCharsSize;
|
|
bool ___m_2BytesPerChar;
|
|
bool ___m_isMemoryStream;
|
|
bool ___m_leaveOpen;
|
|
};
|
|
struct BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E : public RuntimeObject
|
|
{
|
|
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___OutStream;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____buffer;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ____encoding;
|
|
Encoder_tAF9067231A76315584BDF4CD27990E2F485A78FA* ____encoder;
|
|
bool ____leaveOpen;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____largeByteBuffer;
|
|
int32_t ____maxChars;
|
|
};
|
|
struct DualShockSupport_tD28EA4C748CF508B6AF1F9AF9726C3ABF980F539 : public RuntimeObject
|
|
{
|
|
};
|
|
struct EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D : public RuntimeObject
|
|
{
|
|
};
|
|
struct Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A : public RuntimeObject
|
|
{
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___U3CscreenU3Ek__BackingField;
|
|
int32_t ___U3CindexU3Ek__BackingField;
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___m_StateHistory;
|
|
};
|
|
struct HIDParser_t2D551915CEBEE317397BFBEE69221D129DF48114 : public RuntimeObject
|
|
{
|
|
};
|
|
struct HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2 : public RuntimeObject
|
|
{
|
|
};
|
|
struct InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3 : public RuntimeObject
|
|
{
|
|
};
|
|
struct InputRuntimeExtensions_tB772603FE88278A03CEFF428F6A8979676017688 : public RuntimeObject
|
|
{
|
|
};
|
|
struct InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164 : public RuntimeObject
|
|
{
|
|
};
|
|
struct InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD : public RuntimeObject
|
|
{
|
|
};
|
|
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
|
|
{
|
|
RuntimeObject* ____identity;
|
|
};
|
|
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ____identity;
|
|
};
|
|
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ____identity;
|
|
};
|
|
struct NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7 : public RuntimeObject
|
|
{
|
|
bool ___m_RunInBackground;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___m_ShutdownMethod;
|
|
InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* ___m_OnUpdate;
|
|
Action_1_tDAB4041881A0AD46A7C150D31A131F59B0A61378* ___m_OnBeforeUpdate;
|
|
Func_2_t62EFAA3354EBC38A360CC3A9CAEC60374509CC29* ___m_OnShouldRunUpdate;
|
|
float ___m_PollingFrequency;
|
|
bool ___m_DidCallOnShutdown;
|
|
Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* ___m_FocusChangedMethod;
|
|
};
|
|
struct NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE : public RuntimeObject
|
|
{
|
|
};
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
int32_t ____stringLength;
|
|
Il2CppChar ____firstChar;
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
|
{
|
|
};
|
|
struct U3CU3Ec__DisplayClass13_0_tF99D0DA1843466C43BE570E944288EC7EDE0E4AD : public RuntimeObject
|
|
{
|
|
HIDLayoutBuilder_t1B1FA825DFA02D93183E7C1B3C416D4A43D56553* ___layout;
|
|
};
|
|
struct DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___observer;
|
|
};
|
|
struct U3CU3Ec__DisplayClass10_0_t3C16459876E43A6A7151C0E35A8B7402A64144D8 : public RuntimeObject
|
|
{
|
|
Action_1_tDAB4041881A0AD46A7C150D31A131F59B0A61378* ___value;
|
|
};
|
|
struct U3CU3Ec__DisplayClass13_0_t21F396034441DB57F92472B4AB14EAD654A1E763 : public RuntimeObject
|
|
{
|
|
Func_2_t62EFAA3354EBC38A360CC3A9CAEC60374509CC29* ___value;
|
|
};
|
|
struct U3CU3Ec__DisplayClass7_0_t1A3709DBB35971E4F78E67858F971CDD0B817698 : public RuntimeObject
|
|
{
|
|
InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* ___value;
|
|
};
|
|
struct U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6 : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F : public RuntimeObject
|
|
{
|
|
};
|
|
struct U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A : public RuntimeObject
|
|
{
|
|
int32_t ___originalDeviceId;
|
|
};
|
|
struct Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B
|
|
{
|
|
InputDeviceU5BU5D_tA9AEFC6AF63557D3D5DCFB2B26DDA6F63147D548* ___m_Array;
|
|
int32_t ___m_IndexStart;
|
|
int32_t ___m_IndexEnd;
|
|
int32_t ___m_Index;
|
|
};
|
|
struct Enumerator_t13B0EDB01F0A85A952803970AFD1073D96A46C94
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_Array;
|
|
int32_t ___m_IndexStart;
|
|
int32_t ___m_IndexEnd;
|
|
int32_t ___m_Index;
|
|
};
|
|
struct InlinedArray_1_tFABE06D675C714FC44C09C36D7B9C908690ADEAD
|
|
{
|
|
int32_t ___length;
|
|
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___firstValue;
|
|
Action_1U5BU5D_t18C922CAB85EAE463E29566305D718EF64B12A16* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_tC5A6273BF5A8642C3615223409DC9A7AE2856C8D
|
|
{
|
|
int32_t ___length;
|
|
Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* ___firstValue;
|
|
Action_1U5BU5D_tE4E06618063C3EF89781BEB4DF47D183654040E6* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t90D679876AE3A52129F69F403ECC9AD16D60AD9F
|
|
{
|
|
int32_t ___length;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___firstValue;
|
|
Action_1U5BU5D_t9AF7A60AA589F7071315F3DA2F77CD32CB43FB5D* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_tC156E68CC1D19C7411B135D705222BBA02E1E546
|
|
{
|
|
int32_t ___length;
|
|
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* ___firstValue;
|
|
Action_2U5BU5D_tE696881AB7B602657DE1A212B1F9322B7F472FBB* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t0C164496D3AC9C0D8B5986F12B3E22F94E904138
|
|
{
|
|
int32_t ___length;
|
|
Action_2_tBB6A2D36E83BB3B7BFA2ACD51493D5740A3D7F2E* ___firstValue;
|
|
Action_2U5BU5D_t493765D280908ABBDC5280C16C38A55BEB3FB645* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_tCB69E3C40A7449F79D455D118402BE76E07EDD3B
|
|
{
|
|
int32_t ___length;
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___firstValue;
|
|
Action_2U5BU5D_tF0EAC88CF3D1AADA46955EC4879598BCF64FEA5B* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t6CA0FBB125302D36470046647247C3C186DA3C81
|
|
{
|
|
int32_t ___length;
|
|
Action_2_t4797B88C63509F2EE4385D6DABE6A4B5AD5393F7* ___firstValue;
|
|
Action_2U5BU5D_t03D844ECB7234028DD3556FBAD4097B4835CA7A4* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5
|
|
{
|
|
int32_t ___length;
|
|
RuntimeObject* ___firstValue;
|
|
IObserver_1U5BU5D_tC7308F301F0D09FCB9FED9003FC09E1AA8B7C170* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_tCBE1C2CE719FCFE71270323E0AEFF8C6536B0493
|
|
{
|
|
int32_t ___length;
|
|
InputProcessor_1_t6E31E29C499C6D9610C662BCCAD45B97D442C96B* ___firstValue;
|
|
InputProcessor_1U5BU5D_tB3C64A18219DEBFF75635AE580655A02C187A57E* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t2A86A6C75E0160EE14310E053C5249518871D847
|
|
{
|
|
int32_t ___length;
|
|
InputProcessor_1_tFE49B42CB371A9A2A3F29802695BD251947AD0B4* ___firstValue;
|
|
InputProcessor_1U5BU5D_tFEE411B67EEAA6B997AF875A65D072993C8C809C* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_tD4AEEFFEC2CBF49D196A92D16CE8DA15F1532FCD
|
|
{
|
|
int32_t ___length;
|
|
InputProcessor_1_tCC7634AB386F9C6888B89C0FD440251E67C5D8F7* ___firstValue;
|
|
InputProcessor_1U5BU5D_t2D9B681F9F0B39759619A0D4617FB6B20FB10AC0* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_tE5F1062E65707D24360CEAC52E03D32C6E5BA8BB
|
|
{
|
|
int32_t ___length;
|
|
InputProcessor_1_tD1A40E0E5825AAABC3416EC96E087FF6E6351DD2* ___firstValue;
|
|
InputProcessor_1U5BU5D_t5083205703ED9D1A4B8037E3BBE765389957231A* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_tD7279E61A2C2BCBF7B9BA61C55E889A59A778B32
|
|
{
|
|
int32_t ___length;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___firstValue;
|
|
ActionU5BU5D_tF6161335A0A12A221AB081D78725C8AB6FE506D2* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C
|
|
{
|
|
int32_t ___length;
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___firstValue;
|
|
InputDeviceU5BU5D_tA9AEFC6AF63557D3D5DCFB2B26DDA6F63147D548* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t8574959399B65CB49207DFFDE0842E996E6DBBED
|
|
{
|
|
int32_t ___length;
|
|
InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* ___firstValue;
|
|
InputDeviceCommandDelegateU5BU5D_t243984810DCC1E9828C0D6665D0B7AC435A43D9A* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t6FEF55D1987F9E3301E4FF894670C2B041308E88
|
|
{
|
|
int32_t ___length;
|
|
InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E* ___firstValue;
|
|
InputDeviceFindControlLayoutDelegateU5BU5D_t9B27C1115622DAB0A04E3C93E8A9D64EBFDA27BC* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4
|
|
{
|
|
int32_t ___length;
|
|
RuntimeObject* ___firstValue;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3
|
|
{
|
|
int32_t ___length;
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___firstValue;
|
|
TouchscreenU5BU5D_t73D22E3D2A7039C6C374D75B796C8F83BCA897E3* ___additionalValues;
|
|
};
|
|
struct KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189
|
|
{
|
|
int32_t ___key;
|
|
int32_t ___value;
|
|
};
|
|
struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01
|
|
{
|
|
bool ___hasValue;
|
|
bool ___value;
|
|
};
|
|
struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28
|
|
{
|
|
bool ___hasValue;
|
|
int32_t ___value;
|
|
};
|
|
struct Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17
|
|
{
|
|
bool ___hasValue;
|
|
int64_t ___value;
|
|
};
|
|
struct PooledObject_1_t3EE851FC31BB36C74442BC11F197850E2088685C
|
|
{
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* ___m_ToReturn;
|
|
RuntimeObject* ___m_Pool;
|
|
};
|
|
struct PooledObject_1_tAA91CAE93DC8A19E0A5B6C1D78C3AE149F635F8E
|
|
{
|
|
RuntimeObject* ___m_ToReturn;
|
|
RuntimeObject* ___m_Pool;
|
|
};
|
|
struct ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36
|
|
{
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___m_Array;
|
|
int32_t ___m_StartIndex;
|
|
int32_t ___m_Length;
|
|
};
|
|
struct ReadOnlyArray_1_tA1DF7A256AD2BF17FB155224CB2611ED215EFCD3
|
|
{
|
|
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_Array;
|
|
int32_t ___m_StartIndex;
|
|
int32_t ___m_Length;
|
|
};
|
|
struct ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA
|
|
{
|
|
InputDeviceU5BU5D_tA9AEFC6AF63557D3D5DCFB2B26DDA6F63147D548* ___m_Array;
|
|
int32_t ___m_StartIndex;
|
|
int32_t ___m_Length;
|
|
};
|
|
struct ReadOnlyArray_1_t40B8DDDCD6ACBA3B2C0AF1387BE23D68DAEF77B5
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_Array;
|
|
int32_t ___m_StartIndex;
|
|
int32_t ___m_Length;
|
|
};
|
|
struct ReadOnlyArray_1_t3D5F71F2FAC15E8E7413E1B4BDCCA92D49962E72
|
|
{
|
|
TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354* ___m_Array;
|
|
int32_t ___m_StartIndex;
|
|
int32_t ___m_Length;
|
|
};
|
|
struct ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E
|
|
{
|
|
TouchControlU5BU5D_t339733075857CFF82B4E43BFB310F2350225836D* ___m_Array;
|
|
int32_t ___m_StartIndex;
|
|
int32_t ___m_Length;
|
|
};
|
|
struct ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7
|
|
{
|
|
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* ___m_Array;
|
|
int32_t ___m_StartIndex;
|
|
int32_t ___m_Length;
|
|
};
|
|
struct ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570
|
|
{
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* ___m_Array;
|
|
int32_t ___m_StartIndex;
|
|
int32_t ___m_Length;
|
|
};
|
|
struct Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4
|
|
{
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___m_Owner;
|
|
int32_t ___m_IndexPlusOne;
|
|
uint32_t ___m_Version;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
|
{
|
|
bool ___m_value;
|
|
};
|
|
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
|
|
{
|
|
uint8_t ___m_value;
|
|
};
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
|
|
{
|
|
Il2CppChar ___m_value;
|
|
};
|
|
struct Color_tD001788D726C3A7F1379BEED0260B9591F440C1F
|
|
{
|
|
float ___r;
|
|
float ___g;
|
|
float ___b;
|
|
float ___a;
|
|
};
|
|
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
|
|
{
|
|
double ___m_value;
|
|
};
|
|
struct DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701
|
|
{
|
|
float ___U3ClowFrequencyMotorSpeedU3Ek__BackingField;
|
|
float ___U3ChighFrequencyMotorSpeedU3Ek__BackingField;
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
|
|
{
|
|
};
|
|
struct FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED
|
|
{
|
|
int32_t ___m_Code;
|
|
};
|
|
struct InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F
|
|
{
|
|
String_t* ___m_InterfaceName;
|
|
String_t* ___m_DeviceClass;
|
|
String_t* ___m_Manufacturer;
|
|
String_t* ___m_Product;
|
|
String_t* ___m_Serial;
|
|
String_t* ___m_Version;
|
|
String_t* ___m_Capabilities;
|
|
};
|
|
struct InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F_marshaled_pinvoke
|
|
{
|
|
char* ___m_InterfaceName;
|
|
char* ___m_DeviceClass;
|
|
char* ___m_Manufacturer;
|
|
char* ___m_Product;
|
|
char* ___m_Serial;
|
|
char* ___m_Version;
|
|
char* ___m_Capabilities;
|
|
};
|
|
struct InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F_marshaled_com
|
|
{
|
|
Il2CppChar* ___m_InterfaceName;
|
|
Il2CppChar* ___m_DeviceClass;
|
|
Il2CppChar* ___m_Manufacturer;
|
|
Il2CppChar* ___m_Product;
|
|
Il2CppChar* ___m_Serial;
|
|
Il2CppChar* ___m_Version;
|
|
Il2CppChar* ___m_Capabilities;
|
|
};
|
|
struct InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555
|
|
{
|
|
KeyValuePair_2U5BU5D_tF8154B2302178CCE00D745DBF55F703880469DFC* ___m_Patterns;
|
|
};
|
|
struct InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555_marshaled_pinvoke
|
|
{
|
|
KeyValuePair_2_tC24A74EF64A292F5C6BA77D0B04CD6620D2DE3AC* ___m_Patterns;
|
|
};
|
|
struct InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555_marshaled_com
|
|
{
|
|
KeyValuePair_2_tC24A74EF64A292F5C6BA77D0B04CD6620D2DE3AC* ___m_Patterns;
|
|
};
|
|
struct InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D__padding[1];
|
|
};
|
|
};
|
|
struct InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0
|
|
{
|
|
alignas(IL2CPP_SIZEOF_VOID_P) InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_EventPtr;
|
|
};
|
|
struct InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338
|
|
{
|
|
int32_t ___U3CmaxNumDevicesU3Ek__BackingField;
|
|
int32_t ___U3CcurrentNumDevicesU3Ek__BackingField;
|
|
int32_t ___U3CmaxStateSizeInBytesU3Ek__BackingField;
|
|
int32_t ___U3CcurrentStateSizeInBytesU3Ek__BackingField;
|
|
int32_t ___U3CcurrentControlCountU3Ek__BackingField;
|
|
int32_t ___U3CcurrentLayoutCountU3Ek__BackingField;
|
|
int32_t ___U3CtotalEventBytesU3Ek__BackingField;
|
|
int32_t ___U3CtotalEventCountU3Ek__BackingField;
|
|
int32_t ___U3CtotalUpdateCountU3Ek__BackingField;
|
|
double ___U3CtotalEventProcessingTimeU3Ek__BackingField;
|
|
double ___U3CtotalEventLagTimeU3Ek__BackingField;
|
|
};
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
|
{
|
|
int32_t ___m_value;
|
|
};
|
|
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
|
|
{
|
|
int64_t ___m_value;
|
|
};
|
|
struct IntPtr_t
|
|
{
|
|
void* ___m_value;
|
|
};
|
|
struct InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735
|
|
{
|
|
String_t* ___m_StringOriginalCase;
|
|
String_t* ___m_StringLowerCase;
|
|
};
|
|
struct InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735_marshaled_pinvoke
|
|
{
|
|
char* ___m_StringOriginalCase;
|
|
char* ___m_StringLowerCase;
|
|
};
|
|
struct InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735_marshaled_com
|
|
{
|
|
Il2CppChar* ___m_StringOriginalCase;
|
|
Il2CppChar* ___m_StringLowerCase;
|
|
};
|
|
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682__padding[1];
|
|
};
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct NativeInputEventBuffer_t4EE5873AD7998E0E83C9F8585C338AB14C9101FD
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
void* ___eventBuffer;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
void* ___eventBuffer_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___eventCount_OffsetPadding[8];
|
|
int32_t ___eventCount;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___eventCount_OffsetPadding_forAlignmentOnly[8];
|
|
int32_t ___eventCount_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sizeInBytes_OffsetPadding[12];
|
|
int32_t ___sizeInBytes;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sizeInBytes_OffsetPadding_forAlignmentOnly[12];
|
|
int32_t ___sizeInBytes_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___capacityInBytes_OffsetPadding[16];
|
|
int32_t ___capacityInBytes;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___capacityInBytes_OffsetPadding_forAlignmentOnly[16];
|
|
int32_t ___capacityInBytes_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
};
|
|
};
|
|
uint8_t NativeInputEventBuffer_t4EE5873AD7998E0E83C9F8585C338AB14C9101FD__padding[20];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct PredictiveParser_t33E75D237A7F855FDFDD50AA2DDDBBB65DE94248
|
|
{
|
|
int32_t ___m_Position;
|
|
};
|
|
struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
float ___w;
|
|
};
|
|
struct SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA
|
|
{
|
|
double ___m_LastUpdateTime;
|
|
int32_t ___m_SampleCount;
|
|
float ___U3CtargetFrequencyU3Ek__BackingField;
|
|
float ___U3CfrequencyU3Ek__BackingField;
|
|
};
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
float ___m_value;
|
|
};
|
|
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
|
|
{
|
|
ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05* ____activeReadWriteTask;
|
|
SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ____asyncActiveSemaphore;
|
|
};
|
|
struct TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580
|
|
{
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___m_History;
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___m_Finger;
|
|
int32_t ___m_Count;
|
|
int32_t ___m_StartIndex;
|
|
uint32_t ___m_Version;
|
|
};
|
|
struct TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_pinvoke
|
|
{
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___m_History;
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___m_Finger;
|
|
int32_t ___m_Count;
|
|
int32_t ___m_StartIndex;
|
|
uint32_t ___m_Version;
|
|
};
|
|
struct TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_com
|
|
{
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___m_History;
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___m_Finger;
|
|
int32_t ___m_Count;
|
|
int32_t ___m_StartIndex;
|
|
uint32_t ___m_Version;
|
|
};
|
|
struct TypeTable_tEAC1ECAD849469DEA65DA2FC65B19C2D4739B67E
|
|
{
|
|
Dictionary_2_t1FFEE4C9AF6AF524CAD4FDCEA8F3AB34E585451D* ___table;
|
|
};
|
|
struct TypeTable_tEAC1ECAD849469DEA65DA2FC65B19C2D4739B67E_marshaled_pinvoke
|
|
{
|
|
Dictionary_2_t1FFEE4C9AF6AF524CAD4FDCEA8F3AB34E585451D* ___table;
|
|
};
|
|
struct TypeTable_tEAC1ECAD849469DEA65DA2FC65B19C2D4739B67E_marshaled_com
|
|
{
|
|
Dictionary_2_t1FFEE4C9AF6AF524CAD4FDCEA8F3AB34E585451D* ___table;
|
|
};
|
|
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
|
|
{
|
|
uint16_t ___m_value;
|
|
};
|
|
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
|
|
{
|
|
uint32_t ___m_value;
|
|
};
|
|
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
|
|
{
|
|
uint64_t ___m_value;
|
|
};
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
};
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
|
};
|
|
};
|
|
struct U3Cm_ValueDataU3Ee__FixedBuffer_t94746BF84FF1BD9ACDDDA17AE7155A9AA40DB97A
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3Cm_ValueDataU3Ee__FixedBuffer_t94746BF84FF1BD9ACDDDA17AE7155A9AA40DB97A__padding[1];
|
|
};
|
|
};
|
|
struct U3CstateDataU3Ee__FixedBuffer_t2D79C7E59F64E19D0450D36680F1A1B52CD89F84
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3CstateDataU3Ee__FixedBuffer_t2D79C7E59F64E19D0450D36680F1A1B52CD89F84__padding[1];
|
|
};
|
|
};
|
|
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
Il2CppChar ___FixedElementField;
|
|
};
|
|
uint8_t U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF__padding[128];
|
|
};
|
|
};
|
|
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF__padding[128];
|
|
};
|
|
};
|
|
struct U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF__padding[128];
|
|
};
|
|
};
|
|
struct Cache_tB837109647F577DCE3795AEE2E9E0E3F61F543AB
|
|
{
|
|
Dictionary_2_t058B78C04CBFB0F1C72F95C9880AE09DA041219F* ___table;
|
|
};
|
|
struct Cache_tB837109647F577DCE3795AEE2E9E0E3F61F543AB_marshaled_pinvoke
|
|
{
|
|
Dictionary_2_t058B78C04CBFB0F1C72F95C9880AE09DA041219F* ___table;
|
|
};
|
|
struct Cache_tB837109647F577DCE3795AEE2E9E0E3F61F543AB_marshaled_com
|
|
{
|
|
Dictionary_2_t058B78C04CBFB0F1C72F95C9880AE09DA041219F* ___table;
|
|
};
|
|
struct Collection_t6E9F85AD439CF26269683541C4DC58BA3B6756C5
|
|
{
|
|
Dictionary_2_t1FFEE4C9AF6AF524CAD4FDCEA8F3AB34E585451D* ___layoutTypes;
|
|
Dictionary_2_tEB3FF1660C6129E11F3B4771A549DE9F169B5103* ___layoutStrings;
|
|
Dictionary_2_tFF0F3921D8B2465193365C2463B7D6A977E874DA* ___layoutBuilders;
|
|
Dictionary_2_t433D1FE2CDB69C9F583F79D5252A34112439D0AD* ___baseLayoutTable;
|
|
Dictionary_2_tA8E192E813E347FF19EC3868E2C565607445394C* ___layoutOverrides;
|
|
HashSet_1_t87C47CF88B1B88398D4F9A1E51E92F834CF5160B* ___layoutOverrideNames;
|
|
Dictionary_2_tD68C40116E127FE79F9E7AF07820CFDDBF20A8C1* ___precompiledLayouts;
|
|
List_1_t4E502B2E42676E48E6F9A8F0251ADB1DF4BD490E* ___layoutMatchers;
|
|
};
|
|
struct Collection_t6E9F85AD439CF26269683541C4DC58BA3B6756C5_marshaled_pinvoke
|
|
{
|
|
Dictionary_2_t1FFEE4C9AF6AF524CAD4FDCEA8F3AB34E585451D* ___layoutTypes;
|
|
Dictionary_2_tEB3FF1660C6129E11F3B4771A549DE9F169B5103* ___layoutStrings;
|
|
Dictionary_2_tFF0F3921D8B2465193365C2463B7D6A977E874DA* ___layoutBuilders;
|
|
Dictionary_2_t433D1FE2CDB69C9F583F79D5252A34112439D0AD* ___baseLayoutTable;
|
|
Dictionary_2_tA8E192E813E347FF19EC3868E2C565607445394C* ___layoutOverrides;
|
|
HashSet_1_t87C47CF88B1B88398D4F9A1E51E92F834CF5160B* ___layoutOverrideNames;
|
|
Dictionary_2_tD68C40116E127FE79F9E7AF07820CFDDBF20A8C1* ___precompiledLayouts;
|
|
List_1_t4E502B2E42676E48E6F9A8F0251ADB1DF4BD490E* ___layoutMatchers;
|
|
};
|
|
struct Collection_t6E9F85AD439CF26269683541C4DC58BA3B6756C5_marshaled_com
|
|
{
|
|
Dictionary_2_t1FFEE4C9AF6AF524CAD4FDCEA8F3AB34E585451D* ___layoutTypes;
|
|
Dictionary_2_tEB3FF1660C6129E11F3B4771A549DE9F169B5103* ___layoutStrings;
|
|
Dictionary_2_tFF0F3921D8B2465193365C2463B7D6A977E874DA* ___layoutBuilders;
|
|
Dictionary_2_t433D1FE2CDB69C9F583F79D5252A34112439D0AD* ___baseLayoutTable;
|
|
Dictionary_2_tA8E192E813E347FF19EC3868E2C565607445394C* ___layoutOverrides;
|
|
HashSet_1_t87C47CF88B1B88398D4F9A1E51E92F834CF5160B* ___layoutOverrideNames;
|
|
Dictionary_2_tD68C40116E127FE79F9E7AF07820CFDDBF20A8C1* ___precompiledLayouts;
|
|
List_1_t4E502B2E42676E48E6F9A8F0251ADB1DF4BD490E* ___layoutMatchers;
|
|
};
|
|
struct Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB
|
|
{
|
|
alignas(IL2CPP_SIZEOF_VOID_P) InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_Buffer;
|
|
int32_t ___m_EventCount;
|
|
alignas(IL2CPP_SIZEOF_VOID_P) InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentEvent;
|
|
int32_t ___m_CurrentIndex;
|
|
};
|
|
struct StateChangeMonitorTimeout_t9D00677B36798F8E8A4FA1DC5797CBD5F5C4F1DE
|
|
{
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control;
|
|
double ___time;
|
|
RuntimeObject* ___monitor;
|
|
int64_t ___monitorIndex;
|
|
int32_t ___timerIndex;
|
|
};
|
|
struct StateChangeMonitorTimeout_t9D00677B36798F8E8A4FA1DC5797CBD5F5C4F1DE_marshaled_pinvoke
|
|
{
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control;
|
|
double ___time;
|
|
RuntimeObject* ___monitor;
|
|
int64_t ___monitorIndex;
|
|
int32_t ___timerIndex;
|
|
};
|
|
struct StateChangeMonitorTimeout_t9D00677B36798F8E8A4FA1DC5797CBD5F5C4F1DE_marshaled_com
|
|
{
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___control;
|
|
double ___time;
|
|
RuntimeObject* ___monitor;
|
|
int64_t ___monitorIndex;
|
|
int32_t ___timerIndex;
|
|
};
|
|
struct DoubleBuffers_tC70880E0E4F69237E763403F28F65B807E94A9ED
|
|
{
|
|
void** ___deviceToBufferMapping;
|
|
int32_t ___deviceCount;
|
|
};
|
|
struct Record_tF7FF07DC502355356B48CE78337FB16B196E2EE0
|
|
{
|
|
InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* ___m_Owner;
|
|
int32_t ___m_IndexPlusOne;
|
|
uint32_t ___m_Version;
|
|
};
|
|
struct Record_tF7FF07DC502355356B48CE78337FB16B196E2EE0_marshaled_pinvoke
|
|
{
|
|
InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* ___m_Owner;
|
|
int32_t ___m_IndexPlusOne;
|
|
uint32_t ___m_Version;
|
|
};
|
|
struct Record_tF7FF07DC502355356B48CE78337FB16B196E2EE0_marshaled_com
|
|
{
|
|
InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* ___m_Owner;
|
|
int32_t ___m_IndexPlusOne;
|
|
uint32_t ___m_Version;
|
|
};
|
|
struct UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324
|
|
{
|
|
bool ___m_WasUpdated;
|
|
uint32_t ___U3CvalueU3Ek__BackingField;
|
|
};
|
|
struct UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_WasUpdated;
|
|
uint32_t ___U3CvalueU3Ek__BackingField;
|
|
};
|
|
struct UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_com
|
|
{
|
|
int32_t ___m_WasUpdated;
|
|
uint32_t ___U3CvalueU3Ek__BackingField;
|
|
};
|
|
struct U3CkeysU3Ee__FixedBuffer_t042985C8A4742730483B7863D903A899805230F3
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3CkeysU3Ee__FixedBuffer_t042985C8A4742730483B7863D903A899805230F3__padding[16];
|
|
};
|
|
};
|
|
struct U3CnameBufferU3Ee__FixedBuffer_tF101426D1EE77D09C5615FAE829F3F32616ED2A4
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3CnameBufferU3Ee__FixedBuffer_tF101426D1EE77D09C5615FAE829F3F32616ED2A4__padding[256];
|
|
};
|
|
};
|
|
struct U3CnameBufferU3Ee__FixedBuffer_t168308F70377718D2FF4ADDC61E423166ADBE1DA
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3CnameBufferU3Ee__FixedBuffer_t168308F70377718D2FF4ADDC61E423166ADBE1DA__padding[256];
|
|
};
|
|
};
|
|
struct U3CidBufferU3Ee__FixedBuffer_t8F8E3EAA210EF6DD3834C5C4E574ADC65AC6173A
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3CidBufferU3Ee__FixedBuffer_t8F8E3EAA210EF6DD3834C5C4E574ADC65AC6173A__padding[512];
|
|
};
|
|
};
|
|
struct U3CnameBufferU3Ee__FixedBuffer_tC07F8AB4DC191B8E7EAC20B6CAD62F5D165BB91B
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3CnameBufferU3Ee__FixedBuffer_tC07F8AB4DC191B8E7EAC20B6CAD62F5D165BB91B__padding[512];
|
|
};
|
|
};
|
|
struct U3CidBufferU3Ee__FixedBuffer_tE4CA52A47737D5043418F9D66A282E93248BF2BD
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3CidBufferU3Ee__FixedBuffer_tE4CA52A47737D5043418F9D66A282E93248BF2BD__padding[512];
|
|
};
|
|
};
|
|
struct U3CstateDataU3Ee__FixedBuffer_t00ED1E0C66E396C0021CE2F46B671748BC5E5FEC
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3CstateDataU3Ee__FixedBuffer_t00ED1E0C66E396C0021CE2F46B671748BC5E5FEC__padding[1];
|
|
};
|
|
};
|
|
struct U3CprimaryTouchDataU3Ee__FixedBuffer_t843D75C0F089EEBE01C3063B14726D4B99B56258
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3CprimaryTouchDataU3Ee__FixedBuffer_t843D75C0F089EEBE01C3063B14726D4B99B56258__padding[56];
|
|
};
|
|
};
|
|
struct U3CtouchDataU3Ee__FixedBuffer_t6436C7ECCAE275554BE674C0A81E0C42D5213DAE
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3CtouchDataU3Ee__FixedBuffer_t6436C7ECCAE275554BE674C0A81E0C42D5213DAE__padding[560];
|
|
};
|
|
};
|
|
struct U3Cm_StateWithControlIndexU3Ee__FixedBuffer_t77EBD407B7C7A5338334A356AE94C7F24C77CDA2
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3Cm_StateWithControlIndexU3Ee__FixedBuffer_t77EBD407B7C7A5338334A356AE94C7F24C77CDA2__padding[1];
|
|
};
|
|
};
|
|
struct U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tBC837D25D8887B1E4BCBE9B19FEB8EBD20FEF254
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
uint8_t ___FixedElementField;
|
|
};
|
|
uint8_t U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tBC837D25D8887B1E4BCBE9B19FEB8EBD20FEF254__padding[1];
|
|
};
|
|
};
|
|
struct ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5
|
|
{
|
|
intptr_t ____value;
|
|
};
|
|
struct CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_tFABE06D675C714FC44C09C36D7B9C908690ADEAD ___m_Callbacks;
|
|
InlinedArray_1_tFABE06D675C714FC44C09C36D7B9C908690ADEAD ___m_CallbacksToAdd;
|
|
InlinedArray_1_tFABE06D675C714FC44C09C36D7B9C908690ADEAD ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_tC5A6273BF5A8642C3615223409DC9A7AE2856C8D ___m_Callbacks;
|
|
InlinedArray_1_tC5A6273BF5A8642C3615223409DC9A7AE2856C8D ___m_CallbacksToAdd;
|
|
InlinedArray_1_tC5A6273BF5A8642C3615223409DC9A7AE2856C8D ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_t90D679876AE3A52129F69F403ECC9AD16D60AD9F ___m_Callbacks;
|
|
InlinedArray_1_t90D679876AE3A52129F69F403ECC9AD16D60AD9F ___m_CallbacksToAdd;
|
|
InlinedArray_1_t90D679876AE3A52129F69F403ECC9AD16D60AD9F ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_t2CA72B1E4C1404A9DA6888410ADA4EAF32795333
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_tC156E68CC1D19C7411B135D705222BBA02E1E546 ___m_Callbacks;
|
|
InlinedArray_1_tC156E68CC1D19C7411B135D705222BBA02E1E546 ___m_CallbacksToAdd;
|
|
InlinedArray_1_tC156E68CC1D19C7411B135D705222BBA02E1E546 ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_t6CDC364469641FDEFC50305004914224252C5C85
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_t0C164496D3AC9C0D8B5986F12B3E22F94E904138 ___m_Callbacks;
|
|
InlinedArray_1_t0C164496D3AC9C0D8B5986F12B3E22F94E904138 ___m_CallbacksToAdd;
|
|
InlinedArray_1_t0C164496D3AC9C0D8B5986F12B3E22F94E904138 ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_t85DCE036F5C6200B85D9AF68EE20A7675DD9AC37
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_tCB69E3C40A7449F79D455D118402BE76E07EDD3B ___m_Callbacks;
|
|
InlinedArray_1_tCB69E3C40A7449F79D455D118402BE76E07EDD3B ___m_CallbacksToAdd;
|
|
InlinedArray_1_tCB69E3C40A7449F79D455D118402BE76E07EDD3B ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_t766EB5E63A2D3692C554B40CB077C80A0D3633CC
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_t6CA0FBB125302D36470046647247C3C186DA3C81 ___m_Callbacks;
|
|
InlinedArray_1_t6CA0FBB125302D36470046647247C3C186DA3C81 ___m_CallbacksToAdd;
|
|
InlinedArray_1_t6CA0FBB125302D36470046647247C3C186DA3C81 ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_t346DB7B424423D4F14A14CFE2C0734F62447A529
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_tD7279E61A2C2BCBF7B9BA61C55E889A59A778B32 ___m_Callbacks;
|
|
InlinedArray_1_tD7279E61A2C2BCBF7B9BA61C55E889A59A778B32 ___m_CallbacksToAdd;
|
|
InlinedArray_1_tD7279E61A2C2BCBF7B9BA61C55E889A59A778B32 ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_t7C2A86AF46E04B281542BEADE553C9DF6B1A0885
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_t8574959399B65CB49207DFFDE0842E996E6DBBED ___m_Callbacks;
|
|
InlinedArray_1_t8574959399B65CB49207DFFDE0842E996E6DBBED ___m_CallbacksToAdd;
|
|
InlinedArray_1_t8574959399B65CB49207DFFDE0842E996E6DBBED ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_t52995C3D8849483AA8BD7ABCDB6094548AF3BE8D
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_t6FEF55D1987F9E3301E4FF894670C2B041308E88 ___m_Callbacks;
|
|
InlinedArray_1_t6FEF55D1987F9E3301E4FF894670C2B041308E88 ___m_CallbacksToAdd;
|
|
InlinedArray_1_t6FEF55D1987F9E3301E4FF894670C2B041308E88 ___m_CallbacksToRemove;
|
|
};
|
|
struct CallbackArray_1_t70C9B62D06582BEAC403C9259B541A2D8D4B4A1F
|
|
{
|
|
bool ___m_CannotMutateCallbacksArray;
|
|
InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4 ___m_Callbacks;
|
|
InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4 ___m_CallbacksToAdd;
|
|
InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4 ___m_CallbacksToRemove;
|
|
};
|
|
struct InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43
|
|
{
|
|
int32_t ___length;
|
|
KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189 ___firstValue;
|
|
KeyValuePair_2U5BU5D_t45BAFB41C049BDC49B00275E5A255BB6DEB1396C* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_tAFDFE0972A71B9760077CFA9D4A1DBD7BE435800
|
|
{
|
|
int32_t ___length;
|
|
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___firstValue;
|
|
InternedStringU5BU5D_t0B851758733FC0B118D84BE83AED10A0404C18D5* ___additionalValues;
|
|
};
|
|
struct InlinedArray_1_t63A16C5FE53708C13F492320BA02E124371662FA
|
|
{
|
|
int32_t ___length;
|
|
StateChangeMonitorTimeout_t9D00677B36798F8E8A4FA1DC5797CBD5F5C4F1DE ___firstValue;
|
|
StateChangeMonitorTimeoutU5BU5D_t475D94CE66B17064D5DE2966779E7E9006A09D82* ___additionalValues;
|
|
};
|
|
struct Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C
|
|
{
|
|
bool ___hasValue;
|
|
InputDeviceMatcher_tF9BA551C8BB4AE41672366A7EBEA951543E0C555 ___value;
|
|
};
|
|
struct AccelerometerState_tBC7006B5431DF59DC2A9AF2E08FD06674EA8372A
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___acceleration;
|
|
};
|
|
struct Allocator_t996642592271AAD9EE688F142741D512C07B5824
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct AttitudeState_tE01F02CAD17A08F2D35660E017437AC72BC45745
|
|
{
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___attitude;
|
|
};
|
|
struct Delegate_t : public RuntimeObject
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
RuntimeObject* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
bool ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_com
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
struct Exception_t : public RuntimeObject
|
|
{
|
|
String_t* ____className;
|
|
String_t* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t* ____innerException;
|
|
String_t* ____helpURL;
|
|
RuntimeObject* ____stackTrace;
|
|
String_t* ____stackTraceString;
|
|
String_t* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
RuntimeObject* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
String_t* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_pinvoke
|
|
{
|
|
char* ____className;
|
|
char* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_pinvoke* ____innerException;
|
|
char* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
char* ____stackTraceString;
|
|
char* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
char* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_com
|
|
{
|
|
Il2CppChar* ____className;
|
|
Il2CppChar* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_com* ____innerException;
|
|
Il2CppChar* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
Il2CppChar* ____stackTraceString;
|
|
Il2CppChar* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
Il2CppChar* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct FileAccess_t3992FF4CCC61971B804DD291F06F696C3CF33C30
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct GamepadButton_t092328B0362619B4160D3BA65D497B41D807EB16
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
uint32_t ___buttons;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
uint32_t ___buttons_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___leftStick_OffsetPadding[4];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftStick;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___leftStick_OffsetPadding_forAlignmentOnly[4];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftStick_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___rightStick_OffsetPadding[12];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightStick;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___rightStick_OffsetPadding_forAlignmentOnly[12];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightStick_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___leftTrigger_OffsetPadding[20];
|
|
float ___leftTrigger;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___leftTrigger_OffsetPadding_forAlignmentOnly[20];
|
|
float ___leftTrigger_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___rightTrigger_OffsetPadding[24];
|
|
float ___rightTrigger;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___rightTrigger_OffsetPadding_forAlignmentOnly[24];
|
|
float ___rightTrigger_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1__padding[28];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct GravityState_tD607A716F9E0D00477CECC5C019929633E66ACFF
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___gravity;
|
|
};
|
|
struct GyroscopeState_t6C1BC700557D943111882E3634CA7411EE531B87
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___angularVelocity;
|
|
};
|
|
struct HideFlags_tC514182ACEFD3B847988C45D5DB812FF6DB1BF4A
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___size;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int32_t ___size_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___buffer_OffsetPadding[4];
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF ___buffer;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___buffer_OffsetPadding_forAlignmentOnly[4];
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF ___buffer_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E__padding[132];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___size;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___size_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___buffer_OffsetPadding[4];
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke ___buffer;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___buffer_OffsetPadding_forAlignmentOnly[4];
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke ___buffer_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
};
|
|
};
|
|
uint8_t IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E__padding[132];
|
|
};
|
|
};
|
|
struct IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___size;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___size_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___buffer_OffsetPadding[4];
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com ___buffer;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___buffer_OffsetPadding_forAlignmentOnly[4];
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com ___buffer_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
};
|
|
};
|
|
uint8_t IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E__padding[132];
|
|
};
|
|
};
|
|
struct InputActionPhase_t79D9374C1940AA7248377075A0E83122540334C6
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct InputDeviceChange_t1AD7D7058ABBDAA185C1A2B3A9B5E8FE115D7A78
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___type;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___type_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sizeInBytes_OffsetPadding[4];
|
|
int32_t ___sizeInBytes;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___sizeInBytes_OffsetPadding_forAlignmentOnly[4];
|
|
int32_t ___sizeInBytes_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E__padding[8];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5
|
|
{
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___U3CformatU3Ek__BackingField;
|
|
uint32_t ___m_ByteOffset;
|
|
uint32_t ___U3CbitOffsetU3Ek__BackingField;
|
|
uint32_t ___U3CsizeInBitsU3Ek__BackingField;
|
|
};
|
|
struct InputStateBuffers_t338A1714D01276EEEF5F8CD6AE81DFED939D5968
|
|
{
|
|
uint32_t ___sizePerBuffer;
|
|
uint32_t ___totalSize;
|
|
void* ___defaultStateBuffer;
|
|
void* ___noiseMaskBuffer;
|
|
void* ___resetMaskBuffer;
|
|
void* ___m_AllBuffers;
|
|
DoubleBuffers_tC70880E0E4F69237E763403F28F65B807E94A9ED ___m_PlayerStateBuffers;
|
|
};
|
|
struct InputUpdateType_t31A66F5342D924983382FA675EF78007C04EC590
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct JoystickState_t03D95BB2BA3497FA34F7F2C395126FE079DBAD23
|
|
{
|
|
int32_t ___buttons;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___stick;
|
|
};
|
|
struct Key_tA157C0DCB2A0D2BE58B76B3BB836A1B2E4EAF387
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E
|
|
{
|
|
U3CkeysU3Ee__FixedBuffer_t042985C8A4742730483B7863D903A899805230F3 ___keys;
|
|
};
|
|
struct LinearAccelerationState_tD14025B444097A9A3CA0B3ADBA153C775A316F24
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___acceleration;
|
|
};
|
|
struct MarkerFlags_t58228A99AC6567F565911ED792189DBBDFF83E30
|
|
{
|
|
uint16_t ___value__;
|
|
};
|
|
struct MouseButton_t8D0B198592CF83A5A765258D30674D66A3E64A0C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___delta_OffsetPadding[8];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___delta;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___delta_OffsetPadding_forAlignmentOnly[8];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___delta_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___scroll_OffsetPadding[16];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___scroll;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___scroll_OffsetPadding_forAlignmentOnly[16];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___scroll_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___buttons_OffsetPadding[24];
|
|
uint16_t ___buttons;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___buttons_OffsetPadding_forAlignmentOnly[24];
|
|
uint16_t ___buttons_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___displayIndex_OffsetPadding[26];
|
|
uint16_t ___displayIndex;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___displayIndex_OffsetPadding_forAlignmentOnly[26];
|
|
uint16_t ___displayIndex_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___clickCount_OffsetPadding[28];
|
|
uint16_t ___clickCount;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___clickCount_OffsetPadding_forAlignmentOnly[28];
|
|
uint16_t ___clickCount_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1__padding[30];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct NativeArrayOptions_t3E979EEF4B4840228A7692A97DA07553C6465F1D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct NativeInputEventType_t622584116C97356073253408636FA50ECAA9853B
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct NativeInputUpdateType_tBF672D1AE8F85E9FFC0D44EF6BD5FB96B5C9ACE8
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
|
|
{
|
|
intptr_t ___m_CachedPtr;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_CachedPtr;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
|
{
|
|
intptr_t ___m_CachedPtr;
|
|
};
|
|
struct PenButton_t0BA4B52240ABD38446866B65EE531F669377E554
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___delta_OffsetPadding[8];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___delta;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___delta_OffsetPadding_forAlignmentOnly[8];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___delta_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___tilt_OffsetPadding[16];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___tilt;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___tilt_OffsetPadding_forAlignmentOnly[16];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___tilt_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___pressure_OffsetPadding[24];
|
|
float ___pressure;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___pressure_OffsetPadding_forAlignmentOnly[24];
|
|
float ___pressure_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___twist_OffsetPadding[28];
|
|
float ___twist;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___twist_OffsetPadding_forAlignmentOnly[28];
|
|
float ___twist_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___buttons_OffsetPadding[32];
|
|
uint16_t ___buttons;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___buttons_OffsetPadding_forAlignmentOnly[32];
|
|
uint16_t ___buttons_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___displayIndex_OffsetPadding[34];
|
|
uint16_t ___displayIndex;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___displayIndex_OffsetPadding_forAlignmentOnly[34];
|
|
uint16_t ___displayIndex_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144__padding[36];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct PointerState_t3BD79772D06D5CC227EBE757B27F8262EB46A919
|
|
{
|
|
uint32_t ___pointerId;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___delta;
|
|
float ___pressure;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___radius;
|
|
uint16_t ___buttons;
|
|
uint16_t ___displayIndex;
|
|
};
|
|
struct ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct RuntimePlatform_t9A8AAF204603076FCAAECCCC05DA386AEE7BF66E
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ScreenOrientation_t928A8AFB38625B9356E57BA75BBD90FA653DCFC2
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70
|
|
{
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___m_Finger;
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___m_TouchRecord;
|
|
};
|
|
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke
|
|
{
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___m_Finger;
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___m_TouchRecord;
|
|
};
|
|
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com
|
|
{
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___m_Finger;
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___m_TouchRecord;
|
|
};
|
|
struct TouchFlags_tE612D94D507D1CFA4DB40EEE3FDF65302CE4137B
|
|
{
|
|
uint8_t ___value__;
|
|
};
|
|
struct TouchPhase_tC280DE0C3DA3652019BF3605D57099E6CE2F3B14
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___touchId;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int32_t ___touchId_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___position_OffsetPadding[4];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___position_OffsetPadding_forAlignmentOnly[4];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___position_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___delta_OffsetPadding[12];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___delta;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___delta_OffsetPadding_forAlignmentOnly[12];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___delta_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___pressure_OffsetPadding[20];
|
|
float ___pressure;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___pressure_OffsetPadding_forAlignmentOnly[20];
|
|
float ___pressure_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___radius_OffsetPadding[24];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___radius;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___radius_OffsetPadding_forAlignmentOnly[24];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___radius_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___phaseId_OffsetPadding[32];
|
|
uint8_t ___phaseId;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___phaseId_OffsetPadding_forAlignmentOnly[32];
|
|
uint8_t ___phaseId_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___tapCount_OffsetPadding[33];
|
|
uint8_t ___tapCount;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___tapCount_OffsetPadding_forAlignmentOnly[33];
|
|
uint8_t ___tapCount_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___displayIndex_OffsetPadding[34];
|
|
uint8_t ___displayIndex;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___displayIndex_OffsetPadding_forAlignmentOnly[34];
|
|
uint8_t ___displayIndex_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___flags_OffsetPadding[35];
|
|
uint8_t ___flags;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___flags_OffsetPadding_forAlignmentOnly[35];
|
|
uint8_t ___flags_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___updateStepCount_OffsetPadding[36];
|
|
uint32_t ___updateStepCount;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___updateStepCount_OffsetPadding_forAlignmentOnly[36];
|
|
uint32_t ___updateStepCount_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___startTime_OffsetPadding[40];
|
|
double ___startTime;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___startTime_OffsetPadding_forAlignmentOnly[40];
|
|
double ___startTime_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___startPosition_OffsetPadding[48];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___startPosition;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___startPosition_OffsetPadding_forAlignmentOnly[48];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___startPosition_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97__padding[56];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
U3CprimaryTouchDataU3Ee__FixedBuffer_t843D75C0F089EEBE01C3063B14726D4B99B56258 ___primaryTouchData;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
U3CprimaryTouchDataU3Ee__FixedBuffer_t843D75C0F089EEBE01C3063B14726D4B99B56258 ___primaryTouchData_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___touchData_OffsetPadding[56];
|
|
U3CtouchDataU3Ee__FixedBuffer_t6436C7ECCAE275554BE674C0A81E0C42D5213DAE ___touchData;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___touchData_OffsetPadding_forAlignmentOnly[56];
|
|
U3CtouchDataU3Ee__FixedBuffer_t6436C7ECCAE275554BE674C0A81E0C42D5213DAE ___touchData_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F__padding[560];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct TypeCode_tBEF9BE86C8BCF5A6B82F3381219738D27804EF79
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Clamp_tCB96E8D34067B0DCBED42C565F4443DF880DD284
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Button_t1B68DE33744879F4E02B6FE84C2434558BFADC59
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct GenericDesktop_t7A7FDC7978756F7A79860CB0DEB547978F968063
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct HIDCollectionType_t7AC7F0F059AEAEEFBD54D5F4DB1DFCB85254C854
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct HIDElementFlags_t3C41C626435310A0F354E862D4747C2369E8720C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct HIDReportType_t37249B7677BD7083BEB296DEC42B8A0C0ADE562F
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Simulation_t4760B5DEC24047A16F290FAC6D7E64AAD44E1EAF
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct UsagePage_t6EF545F107AB1DED99B07C377BD0B8457DC6F7B8
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usagePage;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___logicalMinimum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___logicalMaximum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___physicalMinimum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___physicalMaximum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___unitExponent;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___unit;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportSize;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportCount;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportId;
|
|
};
|
|
struct HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_pinvoke
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usagePage;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___logicalMinimum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___logicalMaximum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___physicalMinimum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___physicalMaximum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___unitExponent;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___unit;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportSize;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportCount;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportId;
|
|
};
|
|
struct HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_com
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usagePage;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___logicalMinimum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___logicalMaximum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___physicalMinimum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___physicalMaximum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___unitExponent;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___unit;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportSize;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportCount;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___reportId;
|
|
};
|
|
struct HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usage;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMinimum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMaximum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorIndex;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorMinimum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorMaximum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringIndex;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringMinimum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringMaximum;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___usageList;
|
|
};
|
|
struct HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_pinvoke
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usage;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMinimum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMaximum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorIndex;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorMinimum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorMaximum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringIndex;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringMinimum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringMaximum;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___usageList;
|
|
};
|
|
struct HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_com
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usage;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMinimum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMaximum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorIndex;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorMinimum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___designatorMaximum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringIndex;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringMinimum;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___stringMaximum;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___usageList;
|
|
};
|
|
struct HIDItemTypeAndTag_t313707ACB3F0F6EF0C884DEC46ACFA92F64DDCE6
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Result_t3AF4C1D4CB426836EBEA0C76FF29FB5D62788606
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ControlFlags_t9C297F208DE19CEB00A0560F7FDE59F6A2004132
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Enumerate_tAFB6E28CA44189165DDA67CC93DF6A7FA5B31D73
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Flags_t193C2E9B0D9701ACB7ABD982BA8B3B2DB2F74230
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct DeviceFlags_tF02F85DA24FF16879A67B540FCA560EC955CE728
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8 : public RuntimeObject
|
|
{
|
|
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5 ___observers;
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___onEventDelegate;
|
|
};
|
|
struct DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52
|
|
{
|
|
int32_t ___m_DeviceId;
|
|
String_t* ___m_Layout;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___m_StateFormat;
|
|
int32_t ___m_StateSizeInBytes;
|
|
String_t* ___m_FullLayoutJson;
|
|
};
|
|
struct DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_DeviceId;
|
|
char* ___m_Layout;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___m_StateFormat;
|
|
int32_t ___m_StateSizeInBytes;
|
|
char* ___m_FullLayoutJson;
|
|
};
|
|
struct DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshaled_com
|
|
{
|
|
int32_t ___m_DeviceId;
|
|
Il2CppChar* ___m_Layout;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___m_StateFormat;
|
|
int32_t ___m_StateSizeInBytes;
|
|
Il2CppChar* ___m_FullLayoutJson;
|
|
};
|
|
struct Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75 : public RuntimeObject
|
|
{
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* ___m_Trace;
|
|
int32_t ___m_ChangeCounter;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___m_Current;
|
|
};
|
|
struct FileFlags_tBDC19CD105DD0618556D092585D1B6942AD1D3CA
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct BackgroundBehavior_t4D397A0FC3ECD31C1A4DB8C2D09BBC4E71BFC1D6
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct EditorInputBehaviorInPlayMode_tC47B44FACCF39F8E2DCA21270D51417B5DEF814D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct InputActionPropertyDrawerMode_t521985D556D158DCD4AF3C3B351D5EC081C89E86
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ScrollDeltaBehavior_tFC5903AA0557D4ECD6CD332D3DDA61319F68A01D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct UpdateMode_tCD49766B755C4CD8E1F2DE8D57798DAC2C5CBF32
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
double ___time;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
double ___time_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___version_OffsetPadding[8];
|
|
uint32_t ___version;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___version_OffsetPadding_forAlignmentOnly[8];
|
|
uint32_t ___version_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___controlIndex_OffsetPadding[12];
|
|
int32_t ___controlIndex;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___controlIndex_OffsetPadding_forAlignmentOnly[12];
|
|
int32_t ___controlIndex_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_StateWithoutControlIndex_OffsetPadding[12];
|
|
U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tBC837D25D8887B1E4BCBE9B19FEB8EBD20FEF254 ___m_StateWithoutControlIndex;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_StateWithoutControlIndex_OffsetPadding_forAlignmentOnly[12];
|
|
U3Cm_StateWithoutControlIndexU3Ee__FixedBuffer_tBC837D25D8887B1E4BCBE9B19FEB8EBD20FEF254 ___m_StateWithoutControlIndex_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_StateWithControlIndex_OffsetPadding[16];
|
|
U3Cm_StateWithControlIndexU3Ee__FixedBuffer_t77EBD407B7C7A5338334A356AE94C7F24C77CDA2 ___m_StateWithControlIndex;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_StateWithControlIndex_OffsetPadding_forAlignmentOnly[16];
|
|
U3Cm_StateWithControlIndexU3Ee__FixedBuffer_t77EBD407B7C7A5338334A356AE94C7F24C77CDA2 ___m_StateWithControlIndex_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
struct Button_tB77F320590E9A3E16FDB75B0E162337BD9764879
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Result_tBEBF555661C3E631D77404276F9D7D3D954C4E50
|
|
{
|
|
int64_t ___value__;
|
|
};
|
|
struct ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___accumulatedDelta;
|
|
uint32_t ___uniqueId;
|
|
};
|
|
struct Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5 : public RuntimeObject
|
|
{
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 ___m_Owner;
|
|
int32_t ___m_Index;
|
|
};
|
|
struct NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF
|
|
{
|
|
void* ___m_Buffer;
|
|
int32_t ___m_Length;
|
|
int32_t ___m_AllocatorLabel;
|
|
};
|
|
struct Nullable_1_t01EA562E317937F4460711CFA1BFDE2AA35CBF20
|
|
{
|
|
bool ___hasValue;
|
|
int32_t ___value;
|
|
};
|
|
struct ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1
|
|
{
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer;
|
|
int32_t ____length;
|
|
};
|
|
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD__padding[8];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___lowFrequencyMotorSpeed_OffsetPadding[8];
|
|
float ___lowFrequencyMotorSpeed;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___lowFrequencyMotorSpeed_OffsetPadding_forAlignmentOnly[8];
|
|
float ___lowFrequencyMotorSpeed_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___highFrequencyMotorSpeed_OffsetPadding[12];
|
|
float ___highFrequencyMotorSpeed;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___highFrequencyMotorSpeed_OffsetPadding_forAlignmentOnly[12];
|
|
float ___highFrequencyMotorSpeed_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E__padding[16];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4__padding[8];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_ImeEnabled_OffsetPadding[8];
|
|
uint8_t ___m_ImeEnabled;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_ImeEnabled_OffsetPadding_forAlignmentOnly[8];
|
|
uint8_t ___m_ImeEnabled_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C__padding[9];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buf;
|
|
String_t* ___name;
|
|
SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E* ___safeHandle;
|
|
bool ___isExposed;
|
|
int64_t ___append_startpos;
|
|
int32_t ___access;
|
|
bool ___owner;
|
|
bool ___async;
|
|
bool ___canseek;
|
|
bool ___anonymous;
|
|
bool ___buf_dirty;
|
|
int32_t ___buf_size;
|
|
int32_t ___buf_length;
|
|
int32_t ___buf_offset;
|
|
int64_t ___buf_start;
|
|
};
|
|
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF__padding[8];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D : public RuntimeObject
|
|
{
|
|
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___m_Name;
|
|
Type_t* ___m_Type;
|
|
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___m_Variants;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___m_StateFormat;
|
|
int32_t ___m_StateSizeInBytes;
|
|
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___m_UpdateBeforeRender;
|
|
InlinedArray_1_tAFDFE0972A71B9760077CFA9D4A1DBD7BE435800 ___m_BaseLayouts;
|
|
InlinedArray_1_tAFDFE0972A71B9760077CFA9D4A1DBD7BE435800 ___m_AppliedOverrides;
|
|
InternedStringU5BU5D_t0B851758733FC0B118D84BE83AED10A0404C18D5* ___m_CommonUsages;
|
|
ControlItemU5BU5D_t7798E8B7C7F58B8F6D13B567539CD82E962C7104* ___m_Controls;
|
|
String_t* ___m_DisplayName;
|
|
String_t* ___m_Description;
|
|
int32_t ___m_Flags;
|
|
};
|
|
struct InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD : public RuntimeObject
|
|
{
|
|
int32_t ___m_ChangeCounter;
|
|
bool ___m_Enabled;
|
|
Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* ___m_OnFilterEvent;
|
|
int32_t ___m_DeviceId;
|
|
CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477 ___m_EventListeners;
|
|
int64_t ___m_EventBufferSize;
|
|
int64_t ___m_MaxEventBufferSize;
|
|
int64_t ___m_GrowIncrementSize;
|
|
int64_t ___m_EventCount;
|
|
int64_t ___m_EventSizeInBytes;
|
|
uint64_t ___m_EventBufferStorage;
|
|
uint64_t ___m_EventBufferHeadStorage;
|
|
uint64_t ___m_EventBufferTailStorage;
|
|
bool ___m_HasWrapped;
|
|
bool ___m_RecordFrameMarkers;
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* ___m_DeviceInfos;
|
|
};
|
|
struct MulticastDelegate_t : public Delegate_t
|
|
{
|
|
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
|
|
{
|
|
Delegate_t_marshaled_pinvoke** ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
|
|
{
|
|
Delegate_t_marshaled_com** ___delegates;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___type;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___type_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sizeInBytes_OffsetPadding[4];
|
|
uint16_t ___sizeInBytes;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___sizeInBytes_OffsetPadding_forAlignmentOnly[4];
|
|
uint16_t ___sizeInBytes_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___deviceId_OffsetPadding[6];
|
|
uint16_t ___deviceId;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___deviceId_OffsetPadding_forAlignmentOnly[6];
|
|
uint16_t ___deviceId_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___time_OffsetPadding[8];
|
|
double ___time;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___time_OffsetPadding_forAlignmentOnly[8];
|
|
double ___time_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___eventId_OffsetPadding[16];
|
|
int32_t ___eventId;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___eventId_OffsetPadding_forAlignmentOnly[16];
|
|
int32_t ___eventId_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
};
|
|
};
|
|
uint8_t NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8__padding[20];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___m_Type;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int32_t ___m_Type_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_BoolValue_OffsetPadding[4];
|
|
bool ___m_BoolValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_BoolValue_OffsetPadding_forAlignmentOnly[4];
|
|
bool ___m_BoolValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_CharValue_OffsetPadding[4];
|
|
Il2CppChar ___m_CharValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_CharValue_OffsetPadding_forAlignmentOnly[4];
|
|
Il2CppChar ___m_CharValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_ByteValue_OffsetPadding[4];
|
|
uint8_t ___m_ByteValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_ByteValue_OffsetPadding_forAlignmentOnly[4];
|
|
uint8_t ___m_ByteValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_SByteValue_OffsetPadding[4];
|
|
int8_t ___m_SByteValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_SByteValue_OffsetPadding_forAlignmentOnly[4];
|
|
int8_t ___m_SByteValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_ShortValue_OffsetPadding[4];
|
|
int16_t ___m_ShortValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_ShortValue_OffsetPadding_forAlignmentOnly[4];
|
|
int16_t ___m_ShortValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_UShortValue_OffsetPadding[4];
|
|
uint16_t ___m_UShortValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_UShortValue_OffsetPadding_forAlignmentOnly[4];
|
|
uint16_t ___m_UShortValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_IntValue_OffsetPadding[4];
|
|
int32_t ___m_IntValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_IntValue_OffsetPadding_forAlignmentOnly[4];
|
|
int32_t ___m_IntValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_UIntValue_OffsetPadding[4];
|
|
uint32_t ___m_UIntValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_UIntValue_OffsetPadding_forAlignmentOnly[4];
|
|
uint32_t ___m_UIntValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_LongValue_OffsetPadding[4];
|
|
int64_t ___m_LongValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_LongValue_OffsetPadding_forAlignmentOnly[4];
|
|
int64_t ___m_LongValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_ULongValue_OffsetPadding[4];
|
|
uint64_t ___m_ULongValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_ULongValue_OffsetPadding_forAlignmentOnly[4];
|
|
uint64_t ___m_ULongValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_FloatValue_OffsetPadding[4];
|
|
float ___m_FloatValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_FloatValue_OffsetPadding_forAlignmentOnly[4];
|
|
float ___m_FloatValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_DoubleValue_OffsetPadding[4];
|
|
double ___m_DoubleValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_DoubleValue_OffsetPadding_forAlignmentOnly[4];
|
|
double ___m_DoubleValue_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
struct PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4_marshaled_pinvoke
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___m_Type;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int32_t ___m_Type_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_BoolValue_OffsetPadding[4];
|
|
int32_t ___m_BoolValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_BoolValue_OffsetPadding_forAlignmentOnly[4];
|
|
int32_t ___m_BoolValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_CharValue_OffsetPadding[4];
|
|
uint8_t ___m_CharValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_CharValue_OffsetPadding_forAlignmentOnly[4];
|
|
uint8_t ___m_CharValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_ByteValue_OffsetPadding[4];
|
|
uint8_t ___m_ByteValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_ByteValue_OffsetPadding_forAlignmentOnly[4];
|
|
uint8_t ___m_ByteValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_SByteValue_OffsetPadding[4];
|
|
int8_t ___m_SByteValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_SByteValue_OffsetPadding_forAlignmentOnly[4];
|
|
int8_t ___m_SByteValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_ShortValue_OffsetPadding[4];
|
|
int16_t ___m_ShortValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_ShortValue_OffsetPadding_forAlignmentOnly[4];
|
|
int16_t ___m_ShortValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_UShortValue_OffsetPadding[4];
|
|
uint16_t ___m_UShortValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_UShortValue_OffsetPadding_forAlignmentOnly[4];
|
|
uint16_t ___m_UShortValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_IntValue_OffsetPadding[4];
|
|
int32_t ___m_IntValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_IntValue_OffsetPadding_forAlignmentOnly[4];
|
|
int32_t ___m_IntValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_UIntValue_OffsetPadding[4];
|
|
uint32_t ___m_UIntValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_UIntValue_OffsetPadding_forAlignmentOnly[4];
|
|
uint32_t ___m_UIntValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_LongValue_OffsetPadding[4];
|
|
int64_t ___m_LongValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_LongValue_OffsetPadding_forAlignmentOnly[4];
|
|
int64_t ___m_LongValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_ULongValue_OffsetPadding[4];
|
|
uint64_t ___m_ULongValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_ULongValue_OffsetPadding_forAlignmentOnly[4];
|
|
uint64_t ___m_ULongValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_FloatValue_OffsetPadding[4];
|
|
float ___m_FloatValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_FloatValue_OffsetPadding_forAlignmentOnly[4];
|
|
float ___m_FloatValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_DoubleValue_OffsetPadding[4];
|
|
double ___m_DoubleValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_DoubleValue_OffsetPadding_forAlignmentOnly[4];
|
|
double ___m_DoubleValue_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
struct PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4_marshaled_com
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___m_Type;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int32_t ___m_Type_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_BoolValue_OffsetPadding[4];
|
|
int32_t ___m_BoolValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_BoolValue_OffsetPadding_forAlignmentOnly[4];
|
|
int32_t ___m_BoolValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_CharValue_OffsetPadding[4];
|
|
uint8_t ___m_CharValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_CharValue_OffsetPadding_forAlignmentOnly[4];
|
|
uint8_t ___m_CharValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_ByteValue_OffsetPadding[4];
|
|
uint8_t ___m_ByteValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_ByteValue_OffsetPadding_forAlignmentOnly[4];
|
|
uint8_t ___m_ByteValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_SByteValue_OffsetPadding[4];
|
|
int8_t ___m_SByteValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_SByteValue_OffsetPadding_forAlignmentOnly[4];
|
|
int8_t ___m_SByteValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_ShortValue_OffsetPadding[4];
|
|
int16_t ___m_ShortValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_ShortValue_OffsetPadding_forAlignmentOnly[4];
|
|
int16_t ___m_ShortValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_UShortValue_OffsetPadding[4];
|
|
uint16_t ___m_UShortValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_UShortValue_OffsetPadding_forAlignmentOnly[4];
|
|
uint16_t ___m_UShortValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_IntValue_OffsetPadding[4];
|
|
int32_t ___m_IntValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_IntValue_OffsetPadding_forAlignmentOnly[4];
|
|
int32_t ___m_IntValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_UIntValue_OffsetPadding[4];
|
|
uint32_t ___m_UIntValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_UIntValue_OffsetPadding_forAlignmentOnly[4];
|
|
uint32_t ___m_UIntValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_LongValue_OffsetPadding[4];
|
|
int64_t ___m_LongValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_LongValue_OffsetPadding_forAlignmentOnly[4];
|
|
int64_t ___m_LongValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_ULongValue_OffsetPadding[4];
|
|
uint64_t ___m_ULongValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_ULongValue_OffsetPadding_forAlignmentOnly[4];
|
|
uint64_t ___m_ULongValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_FloatValue_OffsetPadding[4];
|
|
float ___m_FloatValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_FloatValue_OffsetPadding_forAlignmentOnly[4];
|
|
float ___m_FloatValue_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_DoubleValue_OffsetPadding[4];
|
|
double ___m_DoubleValue;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_DoubleValue_OffsetPadding_forAlignmentOnly[4];
|
|
double ___m_DoubleValue_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___canRunInBackground_OffsetPadding[8];
|
|
bool ___canRunInBackground;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___canRunInBackground_OffsetPadding_forAlignmentOnly[8];
|
|
bool ___canRunInBackground_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341__padding[9];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_pinvoke
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___canRunInBackground_OffsetPadding[8];
|
|
int32_t ___canRunInBackground;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___canRunInBackground_OffsetPadding_forAlignmentOnly[8];
|
|
int32_t ___canRunInBackground_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
};
|
|
};
|
|
uint8_t QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341__padding[9];
|
|
};
|
|
};
|
|
struct QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_com
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___canRunInBackground_OffsetPadding[8];
|
|
int32_t ___canRunInBackground;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___canRunInBackground_OffsetPadding_forAlignmentOnly[8];
|
|
int32_t ___canRunInBackground_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
};
|
|
};
|
|
uint8_t QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341__padding[9];
|
|
};
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___outDimensions_OffsetPadding[8];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___outDimensions;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___outDimensions_OffsetPadding_forAlignmentOnly[8];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___outDimensions_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83__padding[16];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___isEnabled_OffsetPadding[8];
|
|
bool ___isEnabled;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___isEnabled_OffsetPadding_forAlignmentOnly[8];
|
|
bool ___isEnabled_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4__padding[9];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_pinvoke
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___isEnabled_OffsetPadding[8];
|
|
int32_t ___isEnabled;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___isEnabled_OffsetPadding_forAlignmentOnly[8];
|
|
int32_t ___isEnabled_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
};
|
|
};
|
|
uint8_t QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4__padding[9];
|
|
};
|
|
};
|
|
struct QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_com
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___isEnabled_OffsetPadding[8];
|
|
int32_t ___isEnabled;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___isEnabled_OffsetPadding_forAlignmentOnly[8];
|
|
int32_t ___isEnabled_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
};
|
|
};
|
|
uint8_t QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4__padding[9];
|
|
};
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___scanOrKeyCode_OffsetPadding[8];
|
|
int32_t ___scanOrKeyCode;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___scanOrKeyCode_OffsetPadding_forAlignmentOnly[8];
|
|
int32_t ___scanOrKeyCode_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___nameBuffer_OffsetPadding[12];
|
|
U3CnameBufferU3Ee__FixedBuffer_tF101426D1EE77D09C5615FAE829F3F32616ED2A4 ___nameBuffer;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___nameBuffer_OffsetPadding_forAlignmentOnly[12];
|
|
U3CnameBufferU3Ee__FixedBuffer_tF101426D1EE77D09C5615FAE829F3F32616ED2A4 ___nameBuffer_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247__padding[268];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___nameBuffer_OffsetPadding[8];
|
|
U3CnameBufferU3Ee__FixedBuffer_t168308F70377718D2FF4ADDC61E423166ADBE1DA ___nameBuffer;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___nameBuffer_OffsetPadding_forAlignmentOnly[8];
|
|
U3CnameBufferU3Ee__FixedBuffer_t168308F70377718D2FF4ADDC61E423166ADBE1DA ___nameBuffer_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F__padding[264];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___handle_OffsetPadding[8];
|
|
uint64_t ___handle;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___handle_OffsetPadding_forAlignmentOnly[8];
|
|
uint64_t ___handle_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___nameBuffer_OffsetPadding[16];
|
|
U3CnameBufferU3Ee__FixedBuffer_tC07F8AB4DC191B8E7EAC20B6CAD62F5D165BB91B ___nameBuffer;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___nameBuffer_OffsetPadding_forAlignmentOnly[16];
|
|
U3CnameBufferU3Ee__FixedBuffer_tC07F8AB4DC191B8E7EAC20B6CAD62F5D165BB91B ___nameBuffer_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___idBuffer_OffsetPadding[528];
|
|
U3CidBufferU3Ee__FixedBuffer_t8F8E3EAA210EF6DD3834C5C4E574ADC65AC6173A ___idBuffer;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___idBuffer_OffsetPadding_forAlignmentOnly[528];
|
|
U3CidBufferU3Ee__FixedBuffer_t8F8E3EAA210EF6DD3834C5C4E574ADC65AC6173A ___idBuffer_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582__padding[1040];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___frequency_OffsetPadding[8];
|
|
float ___frequency;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___frequency_OffsetPadding_forAlignmentOnly[8];
|
|
float ___frequency_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA__padding[12];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___idBuffer_OffsetPadding[8];
|
|
U3CidBufferU3Ee__FixedBuffer_tE4CA52A47737D5043418F9D66A282E93248BF2BD ___idBuffer;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___idBuffer_OffsetPadding_forAlignmentOnly[8];
|
|
U3CidBufferU3Ee__FixedBuffer_tE4CA52A47737D5043418F9D66A282E93248BF2BD ___idBuffer_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD__padding[520];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968__padding[8];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8__padding[8];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_pinvoke : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_com : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
|
{
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_Position_OffsetPadding[8];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Position;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_Position_OffsetPadding_forAlignmentOnly[8];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Position_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46__padding[16];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___frequency_OffsetPadding[8];
|
|
float ___frequency;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___frequency_OffsetPadding_forAlignmentOnly[8];
|
|
float ___frequency_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88__padding[12];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E ___baseCommand_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___warpPositionInPlayerDisplaySpace_OffsetPadding[8];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___warpPositionInPlayerDisplaySpace;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___warpPositionInPlayerDisplaySpace_OffsetPadding_forAlignmentOnly[8];
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___warpPositionInPlayerDisplaySpace_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0__padding[16];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7
|
|
{
|
|
int32_t ___type;
|
|
int32_t ___usage;
|
|
int32_t ___usagePage;
|
|
int32_t ___parent;
|
|
int32_t ___childCount;
|
|
int32_t ___firstChild;
|
|
};
|
|
struct HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59
|
|
{
|
|
int32_t ___vendorId;
|
|
int32_t ___productId;
|
|
int32_t ___usage;
|
|
int32_t ___usagePage;
|
|
int32_t ___inputReportSize;
|
|
int32_t ___outputReportSize;
|
|
int32_t ___featureReportSize;
|
|
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* ___elements;
|
|
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* ___collections;
|
|
};
|
|
struct HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_pinvoke
|
|
{
|
|
int32_t ___vendorId;
|
|
int32_t ___productId;
|
|
int32_t ___usage;
|
|
int32_t ___usagePage;
|
|
int32_t ___inputReportSize;
|
|
int32_t ___outputReportSize;
|
|
int32_t ___featureReportSize;
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_pinvoke* ___elements;
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7* ___collections;
|
|
};
|
|
struct HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_com
|
|
{
|
|
int32_t ___vendorId;
|
|
int32_t ___productId;
|
|
int32_t ___usage;
|
|
int32_t ___usagePage;
|
|
int32_t ___inputReportSize;
|
|
int32_t ___outputReportSize;
|
|
int32_t ___featureReportSize;
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_com* ___elements;
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7* ___collections;
|
|
};
|
|
struct HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C
|
|
{
|
|
int32_t ___usagePage;
|
|
int32_t ___usage;
|
|
int32_t ___m_CurrentReportId;
|
|
int32_t ___m_CurrentReportType;
|
|
int32_t ___m_CurrentReportOffsetInBits;
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* ___m_Elements;
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* ___m_Collections;
|
|
int32_t ___m_InputReportSize;
|
|
int32_t ___m_OutputReportSize;
|
|
int32_t ___m_FeatureReportSize;
|
|
};
|
|
struct HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_pinvoke
|
|
{
|
|
int32_t ___usagePage;
|
|
int32_t ___usage;
|
|
int32_t ___m_CurrentReportId;
|
|
int32_t ___m_CurrentReportType;
|
|
int32_t ___m_CurrentReportOffsetInBits;
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* ___m_Elements;
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* ___m_Collections;
|
|
int32_t ___m_InputReportSize;
|
|
int32_t ___m_OutputReportSize;
|
|
int32_t ___m_FeatureReportSize;
|
|
};
|
|
struct HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_com
|
|
{
|
|
int32_t ___usagePage;
|
|
int32_t ___usage;
|
|
int32_t ___m_CurrentReportId;
|
|
int32_t ___m_CurrentReportType;
|
|
int32_t ___m_CurrentReportOffsetInBits;
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* ___m_Elements;
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* ___m_Collections;
|
|
int32_t ___m_InputReportSize;
|
|
int32_t ___m_OutputReportSize;
|
|
int32_t ___m_FeatureReportSize;
|
|
};
|
|
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED
|
|
{
|
|
int32_t ___usage;
|
|
int32_t ___usagePage;
|
|
int32_t ___unit;
|
|
int32_t ___unitExponent;
|
|
int32_t ___logicalMin;
|
|
int32_t ___logicalMax;
|
|
int32_t ___physicalMin;
|
|
int32_t ___physicalMax;
|
|
int32_t ___reportType;
|
|
int32_t ___collectionIndex;
|
|
int32_t ___reportId;
|
|
int32_t ___reportSizeInBits;
|
|
int32_t ___reportOffsetInBits;
|
|
int32_t ___flags;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMin;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMax;
|
|
};
|
|
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_pinvoke
|
|
{
|
|
int32_t ___usage;
|
|
int32_t ___usagePage;
|
|
int32_t ___unit;
|
|
int32_t ___unitExponent;
|
|
int32_t ___logicalMin;
|
|
int32_t ___logicalMax;
|
|
int32_t ___physicalMin;
|
|
int32_t ___physicalMax;
|
|
int32_t ___reportType;
|
|
int32_t ___collectionIndex;
|
|
int32_t ___reportId;
|
|
int32_t ___reportSizeInBits;
|
|
int32_t ___reportOffsetInBits;
|
|
int32_t ___flags;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMin;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMax;
|
|
};
|
|
struct HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_com
|
|
{
|
|
int32_t ___usage;
|
|
int32_t ___usagePage;
|
|
int32_t ___unit;
|
|
int32_t ___unitExponent;
|
|
int32_t ___logicalMin;
|
|
int32_t ___logicalMax;
|
|
int32_t ___physicalMin;
|
|
int32_t ___physicalMax;
|
|
int32_t ___reportType;
|
|
int32_t ___collectionIndex;
|
|
int32_t ___reportId;
|
|
int32_t ___reportSizeInBits;
|
|
int32_t ___reportOffsetInBits;
|
|
int32_t ___flags;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMin;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___usageMax;
|
|
};
|
|
struct HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F
|
|
{
|
|
int32_t ___reportId;
|
|
int32_t ___reportType;
|
|
int32_t ___currentBitOffset;
|
|
};
|
|
struct HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F
|
|
{
|
|
int32_t ___page;
|
|
int32_t ___usage;
|
|
};
|
|
struct Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46
|
|
{
|
|
alignas(4) IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E ___m_CompositionString;
|
|
Il2CppChar ___m_CurrentCharacter;
|
|
int32_t ___m_CurrentIndex;
|
|
};
|
|
struct Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_pinvoke
|
|
{
|
|
alignas(4) IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke ___m_CompositionString;
|
|
uint8_t ___m_CurrentCharacter;
|
|
int32_t ___m_CurrentIndex;
|
|
};
|
|
struct Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_com
|
|
{
|
|
alignas(4) IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com ___m_CompositionString;
|
|
uint8_t ___m_CurrentCharacter;
|
|
int32_t ___m_CurrentIndex;
|
|
};
|
|
struct InputEventControlCollection_t63B58F806FC82F1D8E18E88557E8FCC26388F3BE
|
|
{
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___m_Device;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___m_EventPtr;
|
|
int32_t ___m_Flags;
|
|
float ___m_MagnitudeThreshold;
|
|
};
|
|
struct InputEventControlCollection_t63B58F806FC82F1D8E18E88557E8FCC26388F3BE_marshaled_pinvoke
|
|
{
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___m_Device;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___m_EventPtr;
|
|
int32_t ___m_Flags;
|
|
float ___m_MagnitudeThreshold;
|
|
};
|
|
struct InputEventControlCollection_t63B58F806FC82F1D8E18E88557E8FCC26388F3BE_marshaled_com
|
|
{
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___m_Device;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___m_EventPtr;
|
|
int32_t ___m_Flags;
|
|
float ___m_MagnitudeThreshold;
|
|
};
|
|
struct InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB
|
|
{
|
|
int32_t ___m_Flags;
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___m_Device;
|
|
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___m_StateOffsetToControlIndex;
|
|
int32_t ___m_StateOffsetToControlIndexLength;
|
|
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_AllControls;
|
|
uint8_t* ___m_DefaultState;
|
|
uint8_t* ___m_CurrentState;
|
|
uint8_t* ___m_NoiseMask;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___m_EventPtr;
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___m_CurrentControl;
|
|
int32_t ___m_CurrentIndexInStateOffsetToControlIndexMap;
|
|
uint32_t ___m_CurrentControlStateBitOffset;
|
|
uint8_t* ___m_EventState;
|
|
uint32_t ___m_CurrentBitOffset;
|
|
uint32_t ___m_EndBitOffset;
|
|
float ___m_MagnitudeThreshold;
|
|
};
|
|
struct InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_Flags;
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___m_Device;
|
|
Il2CppSafeArray* ___m_StateOffsetToControlIndex;
|
|
int32_t ___m_StateOffsetToControlIndexLength;
|
|
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_AllControls;
|
|
uint8_t* ___m_DefaultState;
|
|
uint8_t* ___m_CurrentState;
|
|
uint8_t* ___m_NoiseMask;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___m_EventPtr;
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___m_CurrentControl;
|
|
int32_t ___m_CurrentIndexInStateOffsetToControlIndexMap;
|
|
uint32_t ___m_CurrentControlStateBitOffset;
|
|
uint8_t* ___m_EventState;
|
|
uint32_t ___m_CurrentBitOffset;
|
|
uint32_t ___m_EndBitOffset;
|
|
float ___m_MagnitudeThreshold;
|
|
};
|
|
struct InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB_marshaled_com
|
|
{
|
|
int32_t ___m_Flags;
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___m_Device;
|
|
Il2CppSafeArray* ___m_StateOffsetToControlIndex;
|
|
int32_t ___m_StateOffsetToControlIndexLength;
|
|
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_AllControls;
|
|
uint8_t* ___m_DefaultState;
|
|
uint8_t* ___m_CurrentState;
|
|
uint8_t* ___m_NoiseMask;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___m_EventPtr;
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___m_CurrentControl;
|
|
int32_t ___m_CurrentIndexInStateOffsetToControlIndexMap;
|
|
uint32_t ___m_CurrentControlStateBitOffset;
|
|
uint8_t* ___m_EventState;
|
|
uint32_t ___m_CurrentBitOffset;
|
|
uint32_t ___m_EndBitOffset;
|
|
float ___m_MagnitudeThreshold;
|
|
};
|
|
struct ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C : public RuntimeObject
|
|
{
|
|
bool ___U3CfinishedU3Ek__BackingField;
|
|
bool ___U3CpausedU3Ek__BackingField;
|
|
int32_t ___U3CpositionU3Ek__BackingField;
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* ___m_EventTrace;
|
|
Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* ___m_Enumerator;
|
|
InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43 ___m_DeviceIDMappings;
|
|
bool ___m_CreateNewDevices;
|
|
InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C ___m_CreatedDevices;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___m_OnFinished;
|
|
Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* ___m_OnEvent;
|
|
double ___m_StartTimeAsPerFirstEvent;
|
|
double ___m_StartTimeAsPerRuntime;
|
|
int32_t ___m_AllEventsByTimeIndex;
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* ___m_AllEventsByTime;
|
|
};
|
|
struct SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026
|
|
{
|
|
int32_t ___lastUpdateType;
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324 ___playerUpdateStepCount;
|
|
};
|
|
struct SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026_marshaled_pinvoke
|
|
{
|
|
int32_t ___lastUpdateType;
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_pinvoke ___playerUpdateStepCount;
|
|
};
|
|
struct SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026_marshaled_com
|
|
{
|
|
int32_t ___lastUpdateType;
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_com ___playerUpdateStepCount;
|
|
};
|
|
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D
|
|
{
|
|
int32_t ___updateMask;
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___fingers;
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___activeFingers;
|
|
TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354* ___activeTouches;
|
|
int32_t ___activeFingerCount;
|
|
int32_t ___activeTouchCount;
|
|
int32_t ___totalFingerCount;
|
|
uint32_t ___lastId;
|
|
bool ___haveBuiltActiveTouches;
|
|
bool ___haveActiveTouchesNeedingRefreshNextUpdate;
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___activeTouchState;
|
|
};
|
|
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke
|
|
{
|
|
int32_t ___updateMask;
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___fingers;
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___activeFingers;
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke* ___activeTouches;
|
|
int32_t ___activeFingerCount;
|
|
int32_t ___activeTouchCount;
|
|
int32_t ___totalFingerCount;
|
|
uint32_t ___lastId;
|
|
int32_t ___haveBuiltActiveTouches;
|
|
int32_t ___haveActiveTouchesNeedingRefreshNextUpdate;
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___activeTouchState;
|
|
};
|
|
struct FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com
|
|
{
|
|
int32_t ___updateMask;
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___fingers;
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___activeFingers;
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com* ___activeTouches;
|
|
int32_t ___activeFingerCount;
|
|
int32_t ___activeTouchCount;
|
|
int32_t ___totalFingerCount;
|
|
uint32_t ___lastId;
|
|
int32_t ___haveBuiltActiveTouches;
|
|
int32_t ___haveActiveTouchesNeedingRefreshNextUpdate;
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___activeTouchState;
|
|
};
|
|
struct Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_tDAB4041881A0AD46A7C150D31A131F59B0A61378 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t7797D4D8783204B10C3D28B96B049C48276C3B1B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t6AAF2E215E74E16A4EEF0A0749A4A325D99F5BA6 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8
|
|
{
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 ____current;
|
|
};
|
|
struct Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60
|
|
{
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED ____current;
|
|
};
|
|
struct Func_2_t62EFAA3354EBC38A360CC3A9CAEC60374509CC29 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t880CA675AE5D39E081BEEF14DC092D82674DE4F2 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t0072F82DFBE56A425CAA051639D6DF09CB126719 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Predicate_1_t81E65ECFCC613C16F7408ECA5D3D94536697174D : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
String_t* ____paramName;
|
|
};
|
|
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
|
{
|
|
};
|
|
struct IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E : public RuntimeObject
|
|
{
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 ___m_StateBlock;
|
|
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___m_Name;
|
|
String_t* ___m_Path;
|
|
String_t* ___m_DisplayName;
|
|
String_t* ___m_DisplayNameFromLayout;
|
|
String_t* ___m_ShortDisplayName;
|
|
String_t* ___m_ShortDisplayNameFromLayout;
|
|
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___m_Layout;
|
|
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___m_Variants;
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___m_Device;
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___m_Parent;
|
|
int32_t ___m_UsageCount;
|
|
int32_t ___m_UsageStartIndex;
|
|
int32_t ___m_AliasCount;
|
|
int32_t ___m_AliasStartIndex;
|
|
int32_t ___m_ChildCount;
|
|
int32_t ___m_ChildStartIndex;
|
|
int32_t ___m_ControlFlags;
|
|
bool ___m_CachedValueIsStale;
|
|
bool ___m_UnprocessedCachedValueIsStale;
|
|
PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4 ___m_DefaultState;
|
|
PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4 ___m_MinValue;
|
|
PrimitiveValue_t1CC37566F40746757D5E3F87474A05909D85C2D4 ___m_MaxValue;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___m_OptimizedControlDataType;
|
|
};
|
|
struct InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8 ___m_Event;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8 ___m_Event_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
};
|
|
};
|
|
uint8_t InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5__padding[20];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_Buffer;
|
|
int64_t ___m_SizeInBytes;
|
|
int32_t ___m_EventCount;
|
|
bool ___m_WeOwnTheBuffer;
|
|
};
|
|
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_Buffer;
|
|
int64_t ___m_SizeInBytes;
|
|
int32_t ___m_EventCount;
|
|
int32_t ___m_WeOwnTheBuffer;
|
|
};
|
|
struct InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_Buffer;
|
|
int64_t ___m_SizeInBytes;
|
|
int32_t ___m_EventCount;
|
|
int32_t ___m_WeOwnTheBuffer;
|
|
};
|
|
struct InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF : public ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_SupportedDevices;
|
|
int32_t ___m_UpdateMode;
|
|
int32_t ___m_ScrollDeltaBehavior;
|
|
int32_t ___m_MaxEventBytesPerUpdate;
|
|
int32_t ___m_MaxQueuedEventsPerUpdate;
|
|
bool ___m_CompensateForScreenOrientation;
|
|
int32_t ___m_BackgroundBehavior;
|
|
int32_t ___m_EditorInputBehaviorInPlayMode;
|
|
int32_t ___m_InputActionPropertyDrawerMode;
|
|
float ___m_DefaultDeadzoneMin;
|
|
float ___m_DefaultDeadzoneMax;
|
|
float ___m_DefaultButtonPressPoint;
|
|
float ___m_ButtonReleaseThreshold;
|
|
float ___m_DefaultTapTime;
|
|
float ___m_DefaultSlowTapTime;
|
|
float ___m_DefaultHoldTime;
|
|
float ___m_TapRadius;
|
|
float ___m_MultiTapDelayTime;
|
|
bool ___m_DisableRedundantEventsMerging;
|
|
bool ___m_ShortcutKeysConsumeInputs;
|
|
HashSet_1_tEFC6605F7DE53F71946C33FD371E53C3100F2178* ___m_FeatureFlags;
|
|
iOSSettings_t1E9797F94CF6288036BD030C5A5BA22E80713C0F* ___m_iOSSettings;
|
|
};
|
|
struct InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480 : public RuntimeObject
|
|
{
|
|
Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7* ___U3ConRecordAddedU3Ek__BackingField;
|
|
Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2* ___U3ConShouldRecordStateChangeU3Ek__BackingField;
|
|
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_Controls;
|
|
int32_t ___m_ControlCount;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_RecordBuffer;
|
|
int32_t ___m_StateSizeInBytes;
|
|
int32_t ___m_RecordCount;
|
|
int32_t ___m_HistoryDepth;
|
|
int32_t ___m_ExtraMemoryPerRecord;
|
|
int32_t ___m_HeadIndex;
|
|
uint32_t ___m_CurrentVersion;
|
|
Nullable_1_t01EA562E317937F4460711CFA1BFDE2AA35CBF20 ___m_UpdateMask;
|
|
bool ___m_AddNewControls;
|
|
};
|
|
struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct NativeUpdateCallback_tC5CA5A9117B79251968A4DA3758552EFE1D37495 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct HIDLayoutBuilder_t1B1FA825DFA02D93183E7C1B3C416D4A43D56553 : public RuntimeObject
|
|
{
|
|
String_t* ___displayName;
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 ___hidDescriptor;
|
|
String_t* ___parentLayout;
|
|
Type_t* ___deviceType;
|
|
};
|
|
struct GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A
|
|
{
|
|
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 ___touchscreens;
|
|
int32_t ___historyLengthPerFinger;
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerDown;
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerMove;
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerUp;
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D ___playerState;
|
|
};
|
|
struct GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_pinvoke
|
|
{
|
|
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 ___touchscreens;
|
|
int32_t ___historyLengthPerFinger;
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerDown;
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerMove;
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerUp;
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke ___playerState;
|
|
};
|
|
struct GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_com
|
|
{
|
|
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 ___touchscreens;
|
|
int32_t ___historyLengthPerFinger;
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerDown;
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerMove;
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B ___onFingerUp;
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com ___playerState;
|
|
};
|
|
struct InputControl_1_t6610D981ECAED7950370CC37B55465BBFDDD6A61 : public InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E
|
|
{
|
|
InlinedArray_1_tCBE1C2CE719FCFE71270323E0AEFF8C6536B0493 ___m_ProcessorStack;
|
|
int32_t ___m_CachedValue;
|
|
int32_t ___m_UnprocessedCachedValue;
|
|
bool ___evaluateProcessorsEveryRead;
|
|
};
|
|
struct InputControl_1_t7A35A4AF63A7AA94678E000D4F3265A1FD84288A : public InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E
|
|
{
|
|
InlinedArray_1_t2A86A6C75E0160EE14310E053C5249518871D847 ___m_ProcessorStack;
|
|
float ___m_CachedValue;
|
|
float ___m_UnprocessedCachedValue;
|
|
bool ___evaluateProcessorsEveryRead;
|
|
};
|
|
struct InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3 : public InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E
|
|
{
|
|
InlinedArray_1_tD4AEEFFEC2CBF49D196A92D16CE8DA15F1532FCD ___m_ProcessorStack;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 ___m_CachedValue;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 ___m_UnprocessedCachedValue;
|
|
bool ___evaluateProcessorsEveryRead;
|
|
};
|
|
struct InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66 : public InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E
|
|
{
|
|
InlinedArray_1_tE5F1062E65707D24360CEAC52E03D32C6E5BA8BB ___m_ProcessorStack;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_CachedValue;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_UnprocessedCachedValue;
|
|
bool ___evaluateProcessorsEveryRead;
|
|
};
|
|
struct InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798 : public InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480
|
|
{
|
|
};
|
|
struct SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B : public RuntimeObject
|
|
{
|
|
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A ___m_State;
|
|
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* ___m_RestoreAction;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___m_StaticDisposeCurrentState;
|
|
};
|
|
struct TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_ControlIndex_OffsetPadding[20];
|
|
uint16_t ___m_ControlIndex;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_ControlIndex_OffsetPadding_forAlignmentOnly[20];
|
|
uint16_t ___m_ControlIndex_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_BindingIndex_OffsetPadding[22];
|
|
uint16_t ___m_BindingIndex;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_BindingIndex_OffsetPadding_forAlignmentOnly[22];
|
|
uint16_t ___m_BindingIndex_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_InteractionIndex_OffsetPadding[24];
|
|
uint16_t ___m_InteractionIndex;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_InteractionIndex_OffsetPadding_forAlignmentOnly[24];
|
|
uint16_t ___m_InteractionIndex_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_StateIndex_OffsetPadding[26];
|
|
uint8_t ___m_StateIndex;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_StateIndex_OffsetPadding_forAlignmentOnly[26];
|
|
uint8_t ___m_StateIndex_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_Phase_OffsetPadding[27];
|
|
uint8_t ___m_Phase;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_Phase_OffsetPadding_forAlignmentOnly[27];
|
|
uint8_t ___m_Phase_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_StartTime_OffsetPadding[28];
|
|
double ___m_StartTime;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_StartTime_OffsetPadding_forAlignmentOnly[28];
|
|
double ___m_StartTime_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___m_ValueData_OffsetPadding[36];
|
|
U3Cm_ValueDataU3Ee__FixedBuffer_t94746BF84FF1BD9ACDDDA17AE7155A9AA40DB97A ___m_ValueData;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___m_ValueData_OffsetPadding_forAlignmentOnly[36];
|
|
U3Cm_ValueDataU3Ee__FixedBuffer_t94746BF84FF1BD9ACDDDA17AE7155A9AA40DB97A ___m_ValueData_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444__padding[37];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
};
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
RuntimeObject* ____actualValue;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___stateFormat_OffsetPadding[20];
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___stateFormat;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___stateFormat_OffsetPadding_forAlignmentOnly[20];
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___stateFormat_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___stateOffset_OffsetPadding[24];
|
|
uint32_t ___stateOffset;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___stateOffset_OffsetPadding_forAlignmentOnly[24];
|
|
uint32_t ___stateOffset_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___stateData_OffsetPadding[28];
|
|
U3CstateDataU3Ee__FixedBuffer_t2D79C7E59F64E19D0450D36680F1A1B52CD89F84 ___stateData;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___stateData_OffsetPadding_forAlignmentOnly[28];
|
|
U3CstateDataU3Ee__FixedBuffer_t2D79C7E59F64E19D0450D36680F1A1B52CD89F84 ___stateData_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
};
|
|
};
|
|
uint8_t DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859__padding[29];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB__padding[20];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9__padding[20];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___hardReset_OffsetPadding[8];
|
|
bool ___hardReset;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___hardReset_OffsetPadding_forAlignmentOnly[8];
|
|
bool ___hardReset_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4__padding[20];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_pinvoke
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___hardReset_OffsetPadding[8];
|
|
int32_t ___hardReset;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___hardReset_OffsetPadding_forAlignmentOnly[8];
|
|
int32_t ___hardReset_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
};
|
|
};
|
|
uint8_t DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4__padding[20];
|
|
};
|
|
};
|
|
struct DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_com
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___hardReset_OffsetPadding[8];
|
|
int32_t ___hardReset;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___hardReset_OffsetPadding_forAlignmentOnly[8];
|
|
int32_t ___hardReset_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
};
|
|
};
|
|
uint8_t DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4__padding[20];
|
|
};
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___compositionString_OffsetPadding[20];
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E ___compositionString;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___compositionString_OffsetPadding_forAlignmentOnly[20];
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E ___compositionString_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55__padding[152];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_pinvoke
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___compositionString_OffsetPadding[20];
|
|
alignas(4) IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke ___compositionString;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___compositionString_OffsetPadding_forAlignmentOnly[20];
|
|
alignas(4) IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke ___compositionString_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
};
|
|
};
|
|
uint8_t IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55__padding[152];
|
|
};
|
|
};
|
|
struct IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_com
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___compositionString_OffsetPadding[20];
|
|
alignas(4) IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com ___compositionString;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___compositionString_OffsetPadding_forAlignmentOnly[20];
|
|
alignas(4) IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com ___compositionString_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
};
|
|
};
|
|
uint8_t IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55__padding[152];
|
|
};
|
|
};
|
|
struct InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B : public InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E
|
|
{
|
|
int32_t ___m_DeviceFlags;
|
|
int32_t ___m_DeviceId;
|
|
int32_t ___m_ParticipantId;
|
|
int32_t ___m_DeviceIndex;
|
|
uint32_t ___m_CurrentProcessedEventBytesOnUpdate;
|
|
InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F ___m_Description;
|
|
double ___m_LastUpdateTimeInternal;
|
|
uint32_t ___m_CurrentUpdateStepCount;
|
|
InternedStringU5BU5D_t0B851758733FC0B118D84BE83AED10A0404C18D5* ___m_AliasesForEachControl;
|
|
InternedStringU5BU5D_t0B851758733FC0B118D84BE83AED10A0404C18D5* ___m_UsagesForEachControl;
|
|
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_UsageToControl;
|
|
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___m_ChildrenForEachControl;
|
|
HashSet_1_t4A2F2B74276D0AD3ED0F873045BD61E9504ECAE2* ___m_UpdatedButtons;
|
|
List_1_tFED1C27AA4B8AC9813FF4858B3ABB1B3F74558EF* ___m_ButtonControlsCheckingPressState;
|
|
bool ___m_UseCachePathForButtonPresses;
|
|
UInt32U5BU5D_t02FBD658AD156A17574ECE6106CF1FBFCC9807FA* ___m_StateOffsetToControlMap;
|
|
ControlBitRangeNodeU5BU5D_t912A404149DE6D350D1735A026182C409C510F27* ___m_ControlTreeNodes;
|
|
UInt16U5BU5D_tEB7C42D811D999D2AA815BADC3FCCDD9C67B3F83* ___m_ControlTreeIndices;
|
|
};
|
|
struct InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE ___m_NativeBuffer;
|
|
alignas(IL2CPP_SIZEOF_VOID_P) InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentNativeEventReadPtr;
|
|
alignas(IL2CPP_SIZEOF_VOID_P) InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentNativeEventWritePtr;
|
|
int32_t ___m_RemainingNativeEventCount;
|
|
int32_t ___m_MaxAppendedEvents;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE ___m_AppendBuffer;
|
|
alignas(IL2CPP_SIZEOF_VOID_P) InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentAppendEventReadPtr;
|
|
alignas(IL2CPP_SIZEOF_VOID_P) InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentAppendEventWritePtr;
|
|
int32_t ___m_RemainingAppendEventCount;
|
|
int32_t ___m_NumEventsRetainedInBuffer;
|
|
bool ___m_IsOpen;
|
|
};
|
|
struct InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_pinvoke
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke ___m_NativeBuffer;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentNativeEventReadPtr;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentNativeEventWritePtr;
|
|
int32_t ___m_RemainingNativeEventCount;
|
|
int32_t ___m_MaxAppendedEvents;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke ___m_AppendBuffer;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentAppendEventReadPtr;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentAppendEventWritePtr;
|
|
int32_t ___m_RemainingAppendEventCount;
|
|
int32_t ___m_NumEventsRetainedInBuffer;
|
|
int32_t ___m_IsOpen;
|
|
};
|
|
struct InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_com
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com ___m_NativeBuffer;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentNativeEventReadPtr;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentNativeEventWritePtr;
|
|
int32_t ___m_RemainingNativeEventCount;
|
|
int32_t ___m_MaxAppendedEvents;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com ___m_AppendBuffer;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentAppendEventReadPtr;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___m_CurrentAppendEventWritePtr;
|
|
int32_t ___m_RemainingAppendEventCount;
|
|
int32_t ___m_NumEventsRetainedInBuffer;
|
|
int32_t ___m_IsOpen;
|
|
};
|
|
struct InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
|
{
|
|
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ___m_CancellationTokenSource;
|
|
};
|
|
struct ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB : public InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB
|
|
{
|
|
String_t* ____objectName;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___stateFormat_OffsetPadding[20];
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___stateFormat;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___stateFormat_OffsetPadding_forAlignmentOnly[20];
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___stateFormat_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___stateData_OffsetPadding[24];
|
|
U3CstateDataU3Ee__FixedBuffer_t00ED1E0C66E396C0021CE2F46B671748BC5E5FEC ___stateData;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___stateData_OffsetPadding_forAlignmentOnly[24];
|
|
U3CstateDataU3Ee__FixedBuffer_t00ED1E0C66E396C0021CE2F46B671748BC5E5FEC ___stateData_forAlignmentOnly;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
};
|
|
};
|
|
uint8_t StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F__padding[25];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
#pragma pack(push, tp, 1)
|
|
struct TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 ___baseEvent_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___character_OffsetPadding[20];
|
|
int32_t ___character;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___character_OffsetPadding_forAlignmentOnly[20];
|
|
int32_t ___character_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E__padding[24];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7 : public InputControl_1_t7A35A4AF63A7AA94678E000D4F3265A1FD84288A
|
|
{
|
|
int32_t ___clamp;
|
|
float ___clampMin;
|
|
float ___clampMax;
|
|
float ___clampConstant;
|
|
bool ___invert;
|
|
bool ___normalize;
|
|
float ___normalizeMin;
|
|
float ___normalizeMax;
|
|
float ___normalizeZero;
|
|
bool ___scale;
|
|
float ___scaleFactor;
|
|
};
|
|
struct Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C : public InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B
|
|
{
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CbuttonWestU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CbuttonNorthU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CbuttonSouthU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CbuttonEastU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CleftStickButtonU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CrightStickButtonU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CstartButtonU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CselectButtonU3Ek__BackingField;
|
|
DpadControl_t517E87BF3EB22369B71EA1941648079B468A45AB* ___U3CdpadU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CleftShoulderU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CrightShoulderU3Ek__BackingField;
|
|
StickControl_t2608D1388A5015029123635B4B589AC7EE20C50B* ___U3CleftStickU3Ek__BackingField;
|
|
StickControl_t2608D1388A5015029123635B4B589AC7EE20C50B* ___U3CrightStickU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CleftTriggerU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CrightTriggerU3Ek__BackingField;
|
|
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701 ___m_Rumble;
|
|
};
|
|
struct HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D : public InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B
|
|
{
|
|
bool ___m_HaveParsedHIDDescriptor;
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 ___m_HIDDescriptor;
|
|
};
|
|
struct InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210 : public RuntimeObject
|
|
{
|
|
int32_t ___m_LayoutRegistrationVersion;
|
|
float ___m_PollingFrequency;
|
|
Collection_t6E9F85AD439CF26269683541C4DC58BA3B6756C5 ___m_Layouts;
|
|
TypeTable_tEAC1ECAD849469DEA65DA2FC65B19C2D4739B67E ___m_Processors;
|
|
TypeTable_tEAC1ECAD849469DEA65DA2FC65B19C2D4739B67E ___m_Interactions;
|
|
TypeTable_tEAC1ECAD849469DEA65DA2FC65B19C2D4739B67E ___m_Composites;
|
|
int32_t ___m_DevicesCount;
|
|
InputDeviceU5BU5D_tA9AEFC6AF63557D3D5DCFB2B26DDA6F63147D548* ___m_Devices;
|
|
Dictionary_2_t0B4F40FB3850F8F8B487CCD9F64B8CF9ED139AB3* ___m_DevicesById;
|
|
int32_t ___m_AvailableDeviceCount;
|
|
AvailableDeviceU5BU5D_t47A5F4F158146E9E9066D29DB4494D96AF8F1DB5* ___m_AvailableDevices;
|
|
int32_t ___m_DisconnectedDevicesCount;
|
|
InputDeviceU5BU5D_tA9AEFC6AF63557D3D5DCFB2B26DDA6F63147D548* ___m_DisconnectedDevices;
|
|
int32_t ___m_UpdateMask;
|
|
int32_t ___m_CurrentUpdate;
|
|
InputStateBuffers_t338A1714D01276EEEF5F8CD6AE81DFED939D5968 ___m_StateBuffers;
|
|
int32_t ___m_ScrollDeltaBehavior;
|
|
CallbackArray_1_t2CA72B1E4C1404A9DA6888410ADA4EAF32795333 ___m_DeviceChangeListeners;
|
|
CallbackArray_1_t6CDC364469641FDEFC50305004914224252C5C85 ___m_DeviceStateChangeListeners;
|
|
CallbackArray_1_t52995C3D8849483AA8BD7ABCDB6094548AF3BE8D ___m_DeviceFindLayoutCallbacks;
|
|
CallbackArray_1_t7C2A86AF46E04B281542BEADE553C9DF6B1A0885 ___m_DeviceCommandCallbacks;
|
|
CallbackArray_1_t766EB5E63A2D3692C554B40CB077C80A0D3633CC ___m_LayoutChangeListeners;
|
|
CallbackArray_1_t85DCE036F5C6200B85D9AF68EE20A7675DD9AC37 ___m_EventListeners;
|
|
CallbackArray_1_t346DB7B424423D4F14A14CFE2C0734F62447A529 ___m_BeforeUpdateListeners;
|
|
CallbackArray_1_t346DB7B424423D4F14A14CFE2C0734F62447A529 ___m_AfterUpdateListeners;
|
|
CallbackArray_1_t346DB7B424423D4F14A14CFE2C0734F62447A529 ___m_SettingsChangedListeners;
|
|
CallbackArray_1_t346DB7B424423D4F14A14CFE2C0734F62447A529 ___m_ActionsChangedListeners;
|
|
bool ___m_NativeBeforeUpdateHooked;
|
|
bool ___m_HaveDevicesWithStateCallbackReceivers;
|
|
bool ___m_HasFocus;
|
|
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9 ___m_InputEventStream;
|
|
InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* ___m_DeviceFindExecuteCommandDelegate;
|
|
int32_t ___m_DeviceFindExecuteCommandDeviceId;
|
|
RuntimeObject* ___m_Runtime;
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338 ___m_Metrics;
|
|
InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF* ___m_Settings;
|
|
bool ___m_OptimizedControlsFeatureEnabled;
|
|
bool ___m_ReadValueCachingFeatureEnabled;
|
|
bool ___m_ParanoidReadValueCachingChecksEnabled;
|
|
InputActionAsset_tF217AC5223B4AAA46EBCB44B33E9259FB117417D* ___m_Actions;
|
|
bool ___m_ShouldMakeCurrentlyUpdatingDeviceCurrent;
|
|
StateChangeMonitorsForDeviceU5BU5D_tA1D732EEFF09F568D8FDA6908633B6DAD38B61F4* ___m_StateChangeMonitors;
|
|
InlinedArray_1_t63A16C5FE53708C13F492320BA02E124371662FA ___m_StateChangeMonitorTimeouts;
|
|
};
|
|
struct IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB : public InputControl_1_t6610D981ECAED7950370CC37B55465BBFDDD6A61
|
|
{
|
|
};
|
|
struct Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A : public InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B
|
|
{
|
|
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CpositionU3Ek__BackingField;
|
|
DeltaControl_t63053AF5E0CD02B62F3CDE79821E4A12F72D573B* ___U3CdeltaU3Ek__BackingField;
|
|
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CradiusU3Ek__BackingField;
|
|
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CpressureU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CpressU3Ek__BackingField;
|
|
IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB* ___U3CdisplayIndexU3Ek__BackingField;
|
|
};
|
|
struct TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079 : public InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3
|
|
{
|
|
TouchPressControl_tD5BD68D9FDEAC889591DD7A499864893A43C7CEB* ___U3CpressU3Ek__BackingField;
|
|
IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB* ___U3CdisplayIndexU3Ek__BackingField;
|
|
IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB* ___U3CtouchIdU3Ek__BackingField;
|
|
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CpositionU3Ek__BackingField;
|
|
DeltaControl_t63053AF5E0CD02B62F3CDE79821E4A12F72D573B* ___U3CdeltaU3Ek__BackingField;
|
|
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CpressureU3Ek__BackingField;
|
|
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CradiusU3Ek__BackingField;
|
|
TouchPhaseControl_t4652C6E0EBFAFA85A31607769876B02C1C9FCAEC* ___U3CphaseU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CindirectTouchU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CtapU3Ek__BackingField;
|
|
IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB* ___U3CtapCountU3Ek__BackingField;
|
|
DoubleControl_t3707A6260424A2F3636669A2BAFF5CB5E91D2486* ___U3CstartTimeU3Ek__BackingField;
|
|
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* ___U3CstartPositionU3Ek__BackingField;
|
|
};
|
|
struct TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___U3CsimulatedTouchscreenU3Ek__BackingField;
|
|
int32_t ___m_NumPointers;
|
|
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* ___m_Pointers;
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* ___m_CurrentPositions;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___m_CurrentDisplayIndices;
|
|
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* ___m_Touches;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___m_TouchIds;
|
|
int32_t ___m_LastTouchId;
|
|
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* ___m_OnDeviceChange;
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___m_OnEvent;
|
|
};
|
|
struct Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432 : public InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66
|
|
{
|
|
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CxU3Ek__BackingField;
|
|
AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7* ___U3CyU3Ek__BackingField;
|
|
};
|
|
struct ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF : public AxisControl_tD6613A2445A3C2BFA22C77E16CA3201AF72354A7
|
|
{
|
|
bool ___m_NeedsToCheckFramePress;
|
|
uint32_t ___m_UpdateCountLastPressed;
|
|
uint32_t ___m_UpdateCountLastReleased;
|
|
bool ___m_LastUpdateWasPress;
|
|
bool ___U3CneedsToCheckFramePressU3Ek__BackingField;
|
|
float ___pressPoint;
|
|
};
|
|
struct DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B : public Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C
|
|
{
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CtouchpadButtonU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CoptionsButtonU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CshareButtonU3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CL1U3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CR1U3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CL2U3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CR2U3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CL3U3Ek__BackingField;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___U3CR3U3Ek__BackingField;
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 ___U3ChidDescriptorU3Ek__BackingField;
|
|
};
|
|
struct Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE : public Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A
|
|
{
|
|
TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* ___U3CprimaryTouchU3Ek__BackingField;
|
|
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E ___U3CtouchesU3Ek__BackingField;
|
|
};
|
|
struct List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448_StaticFields
|
|
{
|
|
InputEventPtrU5BU5D_tC8D2CB7018396F4C074F2202E79522E9B0979821* ___s_emptyArray;
|
|
};
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_StaticFields
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_emptyArray;
|
|
};
|
|
struct List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A_StaticFields
|
|
{
|
|
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* ___s_emptyArray;
|
|
};
|
|
struct List_1_t66029D02EA129D03A082E470EB98C85812301A0C_StaticFields
|
|
{
|
|
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* ___s_emptyArray;
|
|
};
|
|
struct List_1_t268ADAE63E623B42094720668F8DB571CF6085E6_StaticFields
|
|
{
|
|
HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955* ___s_emptyArray;
|
|
};
|
|
struct BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E_StaticFields
|
|
{
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* ___Null;
|
|
};
|
|
struct EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields
|
|
{
|
|
int32_t ___s_Enabled;
|
|
int32_t ___s_UpdateMode;
|
|
};
|
|
struct HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_StaticFields
|
|
{
|
|
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* ___s_SupportedHIDUsages;
|
|
};
|
|
struct InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields
|
|
{
|
|
RuntimeObject* ___s_Instance;
|
|
double ___s_CurrentTimeOffsetToRealtimeSinceStartup;
|
|
};
|
|
struct InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields
|
|
{
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InputResetMarker;
|
|
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* ___s_Manager;
|
|
InputRemoting_tCBC35AAA3A034ECED8F33C5BA5257F2EB2B05114* ___s_Remote;
|
|
};
|
|
struct InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields
|
|
{
|
|
uint32_t ___s_UpdateStepCount;
|
|
int32_t ___s_LatestUpdateType;
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324 ___s_PlayerUpdateStepCount;
|
|
};
|
|
struct NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7_StaticFields
|
|
{
|
|
NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* ___instance;
|
|
};
|
|
struct NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_StaticFields
|
|
{
|
|
NativeUpdateCallback_tC5CA5A9117B79251968A4DA3758552EFE1D37495* ___onUpdate;
|
|
Action_1_t7797D4D8783204B10C3D28B96B049C48276C3B1B* ___onBeforeUpdate;
|
|
Func_2_t880CA675AE5D39E081BEEF14DC092D82674DE4F2* ___onShouldRunUpdate;
|
|
Action_2_t6AAF2E215E74E16A4EEF0A0749A4A325D99F5BA6* ___s_OnDeviceDiscoveredCallback;
|
|
};
|
|
struct String_t_StaticFields
|
|
{
|
|
String_t* ___Empty;
|
|
};
|
|
struct U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields
|
|
{
|
|
U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* ___U3CU3E9;
|
|
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* ___U3CU3E9__80_0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___U3CU3E9__80_1;
|
|
};
|
|
struct U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_StaticFields
|
|
{
|
|
U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F* ___U3CU3E9;
|
|
Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188* ___U3CU3E9__38_0;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
|
{
|
|
String_t* ___TrueString;
|
|
String_t* ___FalseString;
|
|
};
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1;
|
|
};
|
|
struct InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields
|
|
{
|
|
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* ___s_ObserverState;
|
|
};
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
intptr_t ___Zero;
|
|
};
|
|
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields
|
|
{
|
|
float ___Epsilon;
|
|
};
|
|
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields
|
|
{
|
|
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___Null;
|
|
};
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector;
|
|
};
|
|
struct Exception_t_StaticFields
|
|
{
|
|
RuntimeObject* ___s_EDILock;
|
|
};
|
|
struct InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5_StaticFields
|
|
{
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatInvalid;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatBit;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatSBit;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatInt;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatUInt;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatShort;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatUShort;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatByte;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatSByte;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatLong;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatULong;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatFloat;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatDouble;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector2;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector3;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatQuaternion;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector2Short;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector3Short;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector2Byte;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatVector3Byte;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___FormatPose;
|
|
};
|
|
struct InputStateBuffers_t338A1714D01276EEEF5F8CD6AE81DFED939D5968_StaticFields
|
|
{
|
|
void* ___s_DefaultStateBuffer;
|
|
void* ___s_NoiseMaskBuffer;
|
|
void* ___s_ResetMaskBuffer;
|
|
DoubleBuffers_tC70880E0E4F69237E763403F28F65B807E94A9ED ___s_CurrentBuffers;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
|
|
{
|
|
int32_t ___OffsetOfInstanceIDInCPlusPlusObject;
|
|
};
|
|
struct Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields
|
|
{
|
|
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A ___s_GlobalState;
|
|
};
|
|
struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8_StaticFields
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buf_recycle;
|
|
RuntimeObject* ___buf_recycle_lock;
|
|
};
|
|
struct InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_StaticFields
|
|
{
|
|
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___s_DefaultVariant;
|
|
Collection_t6E9F85AD439CF26269683541C4DC58BA3B6756C5 ___s_Layouts;
|
|
Cache_tB837109647F577DCE3795AEE2E9E0E3F61F543AB ___s_CacheInstance;
|
|
int32_t ___s_CacheInstanceRef;
|
|
};
|
|
struct InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_StaticFields
|
|
{
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InputEvenTraceMarker;
|
|
int32_t ___kFileVersion;
|
|
};
|
|
struct Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C_StaticFields
|
|
{
|
|
Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* ___U3CcurrentU3Ek__BackingField;
|
|
int32_t ___s_GamepadCount;
|
|
GamepadU5BU5D_t907383551E67ACF51B8B4ECCC0E399DAE2AB3762* ___s_Gamepads;
|
|
};
|
|
struct HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_StaticFields
|
|
{
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_HIDParseDescriptorFallback;
|
|
};
|
|
struct InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210_StaticFields
|
|
{
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InputUpdateProfilerMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InputTryFindMatchingControllerMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InputAddDeviceMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InputRestoreDevicesAfterReloadMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InputRegisterCustomTypesMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InputOnBeforeUpdateMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InputOnAfterUpdateMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InputOnSettingsChangeMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InputOnDeviceSettingsChangeMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InputOnEventMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InputOnLayoutChangeMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InputOnDeviceChangeMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_InputOnActionsChangeMarker;
|
|
};
|
|
struct Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_StaticFields
|
|
{
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___U3CcurrentU3Ek__BackingField;
|
|
};
|
|
struct TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields
|
|
{
|
|
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* ___s_Instance;
|
|
};
|
|
struct ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_StaticFields
|
|
{
|
|
float ___s_GlobalDefaultButtonPressPoint;
|
|
float ___s_GlobalDefaultButtonReleaseThreshold;
|
|
};
|
|
struct DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_StaticFields
|
|
{
|
|
DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* ___U3CcurrentU3Ek__BackingField;
|
|
};
|
|
struct Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_StaticFields
|
|
{
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_TouchscreenUpdateMarker;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___k_TouchAllocateMarker;
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___U3CcurrentU3Ek__BackingField;
|
|
float ___s_TapTime;
|
|
float ___s_TapDelayTime;
|
|
float ___s_TapRadiusSquared;
|
|
};
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
struct HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED m_Items[1];
|
|
|
|
inline HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 m_Items[1];
|
|
|
|
inline HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) uint8_t m_Items[1];
|
|
|
|
inline uint8_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F m_Items[1];
|
|
|
|
inline HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 m_Items[1];
|
|
|
|
inline Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Finger), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___m_TouchRecord))->___m_Owner), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Finger), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___m_TouchRecord))->___m_Owner), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
struct FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* m_Items[1];
|
|
|
|
inline Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
|
|
|
|
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* m_Items[1];
|
|
|
|
inline InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* m_Items[1];
|
|
|
|
inline Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 m_Items[1];
|
|
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
inline int32_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* m_Items[1];
|
|
|
|
inline ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Delegate_t* m_Items[1];
|
|
|
|
inline Delegate_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
inline int32_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
inline int32_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 m_Items[1];
|
|
|
|
inline DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Layout), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_FullLayoutJson), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Layout), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_FullLayoutJson), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
struct HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F m_Items[1];
|
|
|
|
inline HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct InputEventPtrU5BU5D_tC8D2CB7018396F4C074F2202E79522E9B0979821 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 m_Items[1];
|
|
|
|
inline InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
|
|
IL2CPP_EXTERN_C void HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshal_pinvoke(const HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED& unmarshaled, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshal_pinvoke_back(const HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_pinvoke& marshaled, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED& unmarshaled);
|
|
IL2CPP_EXTERN_C void HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshal_pinvoke_cleanup(HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshal_com(const HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED& unmarshaled, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshal_com_back(const HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_com& marshaled, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED& unmarshaled);
|
|
IL2CPP_EXTERN_C void HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshal_com_cleanup(HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_pinvoke(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_pinvoke_back(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke& marshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled);
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_pinvoke_cleanup(FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_com(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_com_back(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com& marshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled);
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_com_cleanup(FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_pinvoke(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_pinvoke_back(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke& marshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled);
|
|
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_pinvoke_cleanup(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_com(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_com_back(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com& marshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled);
|
|
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_com_cleanup(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_back(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke& marshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled);
|
|
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_cleanup(IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_back(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com& marshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled);
|
|
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_cleanup(IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke_back(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke& marshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled);
|
|
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke_cleanup(U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com_back(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com& marshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled);
|
|
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com_cleanup(U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_back(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke& marshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled);
|
|
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_cleanup(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_back(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com& marshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled);
|
|
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_cleanup(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_pinvoke(const UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324& unmarshaled, UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_pinvoke_back(const UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_pinvoke& marshaled, UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324& unmarshaled);
|
|
IL2CPP_EXTERN_C void UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_pinvoke_cleanup(UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_pinvoke& marshaled);
|
|
IL2CPP_EXTERN_C void UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_com(const UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324& unmarshaled, UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_com& marshaled);
|
|
IL2CPP_EXTERN_C void UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_com_back(const UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_com& marshaled, UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324& unmarshaled);
|
|
IL2CPP_EXTERN_C void UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_com_cleanup(UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_com& marshaled);
|
|
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PooledObject_1_tAA91CAE93DC8A19E0A5B6C1D78C3AE149F635F8E CollectionPool_2_Get_mD05E8369E0368A31E7A19C51B275E504FBE7B581_gshared (RuntimeObject** ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PooledObject_1_System_IDisposable_Dispose_mBDBE6E4606DF5793230E351CA0B89611C13606FC_gshared (PooledObject_1_tAA91CAE93DC8A19E0A5B6C1D78C3AE149F635F8E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_gshared_inline (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_gshared (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 JsonUtility_FromJson_TisHIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_m312C04431DC84D71214A2C5CAC845D5B76D91E4E_gshared (String_t* ___0_json, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C_gshared (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60 List_1_GetEnumerator_mC605D61CAC954D4A3A8D348D5D221B814319A038_gshared (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEDB482ACA649331B5EF4524B9E1D4C3B9BCD1134_gshared (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_gshared_inline (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB9DC3D934804170CFD1F8B40AD171946368F5E8C_gshared (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_gshared_inline (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC_gshared (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822_gshared (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, int32_t ___0_index, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8_gshared (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m12163A5ACF7868965793C27BB4086FA446FE4082_gshared (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m2193302E2DBF37D55C25EE317E0BDE040BE5CB52_gshared (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_gshared_inline (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_gshared_inline (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 List_1_get_Item_mAA78D7E536ED334B3A2ACF6807CC5CFFD12A1F04_gshared (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m62F2D5DF7AD292BC7D658B73628876B1EFDE0EB2_gshared (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, int32_t ___0_index, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_gshared (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___0_defaultValue, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_mF8C569EAE11C005E295F2F7CFD63AF6107206290_gshared (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, int32_t ___0_index, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8 List_1_GetEnumerator_mEFED85B7C6AF40AEC5B34E6C11C3C18BF631B3B5_gshared (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE6025392536B1B57D5D39AD09482558157C4CBAA_gshared (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_gshared_inline (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m6FBB9F9F70B0D21E92C7D13E26DDC8EA5A70ACB3_gshared (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_gshared_inline (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_gshared_inline (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7 ReadOnlyArray_1_op_Implicit_m452C9949CC9DB6FEDA4109C319B34666CE36E3C2_gshared (HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* ReadOnlyArray_1_ToArray_m7C4848AF221AD3A11F95E50E61A49B4AA1FB58FE_gshared (ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyArray_1_get_Item_m20907EA946F72D55FC8BD8031EA4F9BF13AE164D_gshared (ReadOnlyArray_1_t40B8DDDCD6ACBA3B2C0AF1387BE23D68DAEF77B5* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerable_Contains_TisHIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F_mD2995E6FC4E949ABA06D2AA0A1F87BFF2F4BA018_gshared (RuntimeObject* ___0_source, HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlyArray_1_get_Count_m37AE229E2BFB74375A7BD545982B745F982762F8_gshared_inline (ReadOnlyArray_1_t40B8DDDCD6ACBA3B2C0AF1387BE23D68DAEF77B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_RegisterLayout_TisRuntimeObject_m8B0CF2E33066D31E034869BE401DD185E2F04011_gshared (String_t* ___0_name, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___1_matches, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_m6DEC13F96CE9CD74561DCCA7017E450079C96942_gshared (Action_2_t9C4E97D0565650F0AEF7C72077EB8A0F9326E40B* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t13B0EDB01F0A85A952803970AFD1073D96A46C94 ReadOnlyArray_1_GetEnumerator_mE43A032C7C67896D9F8377C6C1C863C22F3044B6_gshared (ReadOnlyArray_1_t40B8DDDCD6ACBA3B2C0AF1387BE23D68DAEF77B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m041721B53AC187277BACB4EA9C86E299322EB0AB_gshared (Enumerator_t13B0EDB01F0A85A952803970AFD1073D96A46C94* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_mC38F33A423715DE1D9EAD3EADE1C8C03C52E4465_gshared (Enumerator_t13B0EDB01F0A85A952803970AFD1073D96A46C94* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m95272BAC87E97D7B862DB72A8639565003BD244B_gshared (Enumerator_t13B0EDB01F0A85A952803970AFD1073D96A46C94* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888_gshared (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_1__ctor_mF238AB65ADBA9D960A9B86F6AA208AA315B42435_gshared (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3* ___0_control, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mFC28914555AB84FBEB1AC628C66364244967933B_gshared (Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_4__ctor_m2A54891CCBC7DDDF0FEC2524D81F59613A51DF93_gshared (Func_4_t71673974799A3C352F89909BA77E8B33929F2A32* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* InputControl_1_get_value_mBC9F8DCDF832854DCA08E35A824EBD8A76ABDE2E_gshared (InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 InputStateHistory_1_RecordStateChange_mD873C4A092DA5D5E86088B221B90A4B5B05F5840_gshared (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3* ___0_control, TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 ___1_value, double ___2_time, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisRuntimeObject_m3765984E32F53D8A5A25B14A6E8A71B9234740F4_gshared (CallbackArray_1_tB6F9AD05405749A2888C89224C8F5ECF4E1C0411* ___0_callbacks, RuntimeObject* ___1_argument, String_t* ___2_callbackName, RuntimeObject* ___3_context, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputStateHistory_1_GetEnumerator_m7589AE5E798BAFF50EF3C3BC3539FFDFF5DFCF59_gshared (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* Record_GetUnsafeExtraMemoryPtrUnchecked_m43B2E6AC3AF2307D2DDF2C92E90A629666277F66_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_gshared_inline (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Record_get_index_m8BF5DBF4C267EED76E3802B249F2856F29DAD8A6_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Record_get_time_m5976C10C2C3A2A2089D57F1DF9AE5557C10DF47E_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* Record_GetUnsafeExtraMemoryPtr_mF305A3D8857DFF297E9FB6573684E4B9BF82022C_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArray_1__ctor_m9C297EC68F90BE1CBFDC80B0D94420BF2B905455_gshared (ReadOnlyArray_1_t3D5F71F2FAC15E8E7413E1B4BDCCA92D49962E72* __this, TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArray_1__ctor_m2C5D5E2909635889EDB94C381385ED5D6128612F_gshared (ReadOnlyArray_1_t40B8DDDCD6ACBA3B2C0AF1387BE23D68DAEF77B5* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackArray_1_AddCallback_mB86EC6413C0AB2C12A88FA8141E3ACDA83DA2C6D_gshared (CallbackArray_1_t70C9B62D06582BEAC403C9259B541A2D8D4B4A1F* __this, RuntimeObject* ___0_dlg, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackArray_1_RemoveCallback_mDEEFD791C9654F4EE7C2586BD7DED83F74D897B2_gshared (CallbackArray_1_t70C9B62D06582BEAC403C9259B541A2D8D4B4A1F* __this, RuntimeObject* ___0_dlg, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Record_Equals_m17C216CDC45654F53F8191093F3404478DB16B69_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___0_other, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Record_GetHashCode_m94F8E34331A3B0253C5448B7E9B23BFE0F1B04A8_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InlinedArray_1_AppendWithCapacity_m9862A91090391A77B2DCC2428616248FC176C180_gshared (InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4* __this, RuntimeObject* ___0_value, int32_t ___1_capacityIncrement, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputArrayExtensions_IndexOfReference_TisRuntimeObject_m8D6AA5D90FA43E1196C230ECEB238EBDEFBFC677_gshared (InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4 ___0_array, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InlinedArray_1_RemoveAtWithCapacity_mE12D4976DF40F114BA2B56DE9EA9C66F248F466C_gshared (InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypedRestore__ctor_mA8D10118E8FDB2DDFBF5EC33A5A7183E01348EAE_gshared (TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SavedStructState_1__ctor_m3C152C71C4CF020B00FFFDB88B7A667A8192389B_gshared (SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B* __this, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* ___0_state, TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* ___1_restoreAction, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___2_staticDisposeCurrentState, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_EnsureCapacity_TisRuntimeObject_m66B6A8BB3DD016401DECD39D1D60BAC8E240AFCC_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** ___0_array, int32_t ___1_count, int32_t ___2_capacity, int32_t ___3_capacityIncrement, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_AppendWithCapacity_TisRuntimeObject_m4BE5EEC05AF1748E66CFC4850FE047BEF296D514_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** ___0_array, int32_t* ___1_count, RuntimeObject* ___2_value, int32_t ___3_capacityIncrement, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_EraseSliceWithCapacity_TisRuntimeObject_mA1F90515FDE3EBFDDF2F248B2D9DC502850EAB59_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** ___0_array, int32_t* ___1_length, int32_t ___2_index, int32_t ___3_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_1__ctor_m760ABD5FDD38AF6C3FF42B641B3FC8383E4A91DB_gshared (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___0_maxStateSizeInBytes, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_Clear_TisRuntimeObject_mFBB06420854F2087695DC1B4C87E69C2748D43A2_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mFE961AB914D8126DC425FAFC788195746A8CBA59_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Record__ctor_m1CACECB022FDAACE6482C208E6552F7614445895_gshared (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___0_owner, int32_t ___1_index, RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* ___2_header, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_InsertAtWithCapacity_TisTouch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_m98321242121000D55966FF534E3B042044932B60_gshared (TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354** ___0_array, int32_t* ___1_count, int32_t ___2_index, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 ___3_value, int32_t ___4_capacityIncrement, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GameObject_AddComponent_TisRuntimeObject_m69B93700FACCF372F5753371C6E8FB780800B824_gshared (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ArrayHelpers_ContainsReference_TisRuntimeObject_TisRuntimeObject_mFA2BAE67D85C1468C9A107A36CEE42BD665A2DFC_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_count, RuntimeObject* ___2_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_Append_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_mA5858F11A337989656D8E979F1262C06642475A4_gshared (Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA** ___0_array, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_Append_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m28BB0D48547AE7FA146E50EEFC61673CA9694DBD_gshared (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** ___0_array, int32_t ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_IndexOfReference_TisRuntimeObject_TisRuntimeObject_m58ECC31F75FD822671542E4F31BCFD292120D6C0_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, RuntimeObject* ___1_value, int32_t ___2_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_EraseAtWithCapacity_TisRuntimeObject_m423FCC1C4DBA092F51CD3372BCB85AE2FD0E5D86_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t* ___1_count, int32_t ___2_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_EraseAt_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_mB1BC8BA75E0736148AAEC3C83444128EE5BA0049_gshared (Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA** ___0_array, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_EraseAt_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6B80DBFF93497B94276E989C8357A7A72C454144_gshared (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** ___0_array, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 InputControl_1_ReadValueFromState_m90076063D4500290705DBD1D85DA8743D4652C37_gshared (InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66* __this, void* ___0_statePtr, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputControl_1_ReadValueFromState_m8653D1564BFE81C2D6C0AB381F9CD84492F350F7_gshared (InputControl_1_t6610D981ECAED7950370CC37B55465BBFDDD6A61* __this, void* ___0_statePtr, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float InputControl_1_ReadValueFromState_m1748B48FE53C7B329B8138F43857E231AC6FC24E_gshared (InputControl_1_t7A35A4AF63A7AA94678E000D4F3265A1FD84288A* __this, void* ___0_statePtr, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputSystem_AddDevice_TisRuntimeObject_m0C15C931B928FDC569EAA06A44EDC0192F909A4F_gshared (String_t* ___0_name, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mFC80A1D3B6BA1009B9779F59B49347FEEE827FB6_gshared (Action_2_tD987B97B18D27B9920365359C46BC12702AD4F7D* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayHelpers_Clear_TisRuntimeObject_mD246077595F4EBA6BA7300CCC202A02E600CC87E_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_QueueStateEvent_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_m75F650C67ACBF9096BDC8A3C1EC71482303F92EF_gshared (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 ___1_state, double ___2_time, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputControl_GetChildControl_TisRuntimeObject_m5E81C3A512C444426EB15097CCF01D73CF1C614C_gshared (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, String_t* ___0_path, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A_gshared (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* __this, DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E* ___0_command, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, int32_t ___1_allocator, int32_t ___2_options, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_nativeArray, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_IsA_TisActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444_m2F2591754A98F71A8E950E17F45153089F5B2D10_gshared (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_gshared (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_gshared_inline (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_nativeArray, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_gshared (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_CopyFrom_mCF4D43C37F14A2904C5BA14973DDE501D965DA89_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InlinedArray_1_get_Item_m36DBC031029BD3E52C31E50BE0B84DA3990A6021_gshared (InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327_gshared (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570 ReadOnlyArray_1_op_Implicit_mDC06E9C67A7376B81251B04CEC9AACE3428C82BE_gshared (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_LengthSafe_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m1A991C46566DF63B412B6FAC8DA4A910E6916923_gshared (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisInputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5_m0A49629FF4362F75BF20F043E1BA1E7D050C76F9_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Func_3_Invoke_m0F49563C5B847FD0AA5D523797CC38C4C1476D8F_gshared_inline (Func_3_t0072F82DFBE56A425CAA051639D6DF09CB126719* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayHelpers_Append_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m12D0540A13D944AB6449C772B158A7FF8E39A538_gshared (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A** ___0_array, DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CallbackArray_1_get_length_m81CB1E446FBEF126C2096B08E643D63ACDDBD0F1_gshared (CallbackArray_1_t70C9B62D06582BEAC403C9259B541A2D8D4B4A1F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m9DEBF1BF04DA506E770B06B906F6ED856417BC9A_gshared (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* ___0_callbacks, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___1_argument, String_t* ___2_callbackName, RuntimeObject* ___3_context, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InlinedArray_1_GetEnumerator_mD09AB17F5788E987BEAD70E80E269F3FB7E865C3_gshared (InlinedArray_1_t686EF64AD1CAE4599FCACB01447C59FA04174EF4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189 InlinedArray_1_get_Item_m1C8BF2A41804F8D2B398B234FE3B1E940D36DFF1_gshared (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m5A886C4B3E54DEA04D456E49D7FB92A4545FCD8F_gshared_inline (KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InlinedArray_1_RemoveAtWithCapacity_m4D058322BEC61FA58F04CE9A837A2E464759415E_gshared (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m3C86D5D8BB0D1118068E83ED43D64F4E64E7C221_gshared (KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189* __this, int32_t ___0_key, int32_t ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InlinedArray_1_set_Item_m6A196904387C38864370BABA0CBACC0EEF6BB786_gshared (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43* __this, int32_t ___0_index, KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189 ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InlinedArray_1_AppendWithCapacity_mDB0D8ADCFF5D374E15017980D7073D63B8E8C48F_gshared (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43* __this, KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189 ___0_value, int32_t ___1_capacityIncrement, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m6CF56031007CD05AA70A2FDA98FB9652FD3C0DF5_gshared (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m2EE80016B94F10A7E9150D8ABB6C5668609CBAB3_gshared_inline (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_m3066D7B2DF7828CC841C0313A7664013366E7F33_gshared (Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mEB9A929B41F7294B9F91D91FFCEB73C358478813_gshared (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* __this, Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188* ___0_comparison, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_gshared_inline (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m30D56EDF2807EF309EEF182BA63A3F0EF0B08A15_gshared_inline (Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 List_1_get_Item_m230131CE40A0013D25B1FB05FDDB98CB898BB718_gshared (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m83DA000FF3605DAD9160D02FB36863DF77DB468A_gshared_inline (KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mB518D664C1FF6E6E0E5886154563FF1AD31B74D3_gshared (Predicate_1_t81E65ECFCC613C16F7408ECA5D3D94536697174D* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyArray_1_IndexOf_mFE4262FD29B7CC10555B765F22C7D263C0BC97AB_gshared (ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570* __this, Predicate_1_t81E65ECFCC613C16F7408ECA5D3D94536697174D* ___0_predicate, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 ReadOnlyArray_1_get_Item_mDFB5E4BE282F80EE3CF856F0DD06DD5BD72B8B2A_gshared (ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_IsA_TisTextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E_m01CE0B6701368BD1BFDB10DE3162AF9A3D413B8A_gshared (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m8EDF953DA7FF0E33AE19FB51BD7DBDB7C495CFE0_gshared (Action_1_tC926860F20D428DA3E93D6FBA36420E904DD903B* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_mE27CCE9BF36CDA5E1C92CEBAECF98A3D57951455_gshared (Func_2_t1C8F983F9A1AA802D45E89037E2AA7ACD1094821* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mA8C3AC97D1F076EA5D1D0C10CEE6BD3E94711501_gshared (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_gshared_inline (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* __this, bool ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_mA2C48CD761AC55B36110F6DCA27D73A9274391E6_gshared (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_mDCC9DBFEDF516E8DC0C11B342A27CA9BB9200068_gshared (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m756AA652ADCF750A88AE140E9AD3FED0D6394BF6_gshared (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m378B392086AAB6F400944FA9839516326B3F7BB8_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m4C69A872DFBE5B23AF8130D60EE50C1D33E6D1A1_gshared (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_item, const RuntimeMethod* method) ;
|
|
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JsonUtility_ToJson_m53A1FEE0D388CF3A629E093C04B5E1A6D5463B53 (RuntimeObject* ___0_obj, bool ___1_prettyPrint, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HIDDeviceDescriptor_ToJson_mF1F8181F21DFC7786988C6B5B24592ED60C97C68 (HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline (String_t* ___0_text, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA (PredictiveParser_t33E75D237A7F855FDFDD50AA2DDDBBB65DE94248* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, Il2CppChar ___1_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PredictiveParser_AcceptString_m786D5F348A934235EFADF3946E405D24E0A22BC1 (PredictiveParser_t33E75D237A7F855FDFDD50AA2DDDBBB65DE94248* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_input, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* ___1_output, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6 (PredictiveParser_t33E75D237A7F855FDFDD50AA2DDDBBB65DE94248* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002 (PredictiveParser_t33E75D237A7F855FDFDD50AA2DDDBBB65DE94248* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, Il2CppChar ___1_c, const RuntimeMethod* method) ;
|
|
inline String_t* ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, const RuntimeMethod*))ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
|
|
inline PooledObject_1_t3EE851FC31BB36C74442BC11F197850E2088685C CollectionPool_2_Get_mE6CF40020536BE09DC00422B38D38CC79B8CB19A (List_1_t66029D02EA129D03A082E470EB98C85812301A0C** ___0_value, const RuntimeMethod* method)
|
|
{
|
|
return (( PooledObject_1_t3EE851FC31BB36C74442BC11F197850E2088685C (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C**, const RuntimeMethod*))CollectionPool_2_Get_mD05E8369E0368A31E7A19C51B275E504FBE7B581_gshared)(___0_value, method);
|
|
}
|
|
inline void PooledObject_1_System_IDisposable_Dispose_m5642236CE31A998871D30083D40807623593A815 (PooledObject_1_t3EE851FC31BB36C74442BC11F197850E2088685C* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PooledObject_1_t3EE851FC31BB36C74442BC11F197850E2088685C*, const RuntimeMethod*))PooledObject_1_System_IDisposable_Dispose_mBDBE6E4606DF5793230E351CA0B89611C13606FC_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB (PredictiveParser_t33E75D237A7F855FDFDD50AA2DDDBBB65DE94248* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PredictiveParser_AcceptInt_m4C94C20DE615EA781A1554037E625DCD5CD77986 (PredictiveParser_t33E75D237A7F855FDFDD50AA2DDDBBB65DE94248* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_str, const RuntimeMethod* method) ;
|
|
inline void List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_inline (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED, const RuntimeMethod*))List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, const RuntimeMethod*))List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_gshared)(__this, method);
|
|
}
|
|
inline HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 JsonUtility_FromJson_TisHIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_m312C04431DC84D71214A2C5CAC845D5B76D91E4E (String_t* ___0_json, const RuntimeMethod* method)
|
|
{
|
|
return (( HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 (*) (String_t*, const RuntimeMethod*))JsonUtility_FromJson_TisHIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_m312C04431DC84D71214A2C5CAC845D5B76D91E4E_gshared)(___0_json, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDDeviceDescriptorBuilder__ctor_mB72574F6CACA0E638DAA7437168EABD2F32B9C07 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___0_usagePage, int32_t ___1_usage, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDDeviceDescriptorBuilder__ctor_mA089E89EDBAA54275A999D4BEC12B0A47562D9B4 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___0_usage, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_StartReport_mA82F406CEAB8AA31436EC6041A88E9F9D21A4438 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___0_reportType, int32_t ___1_reportId, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, const RuntimeMethod*))List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C_gshared)(__this, method);
|
|
}
|
|
inline Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60 List_1_GetEnumerator_mC605D61CAC954D4A3A8D348D5D221B814319A038 (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60 (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, const RuntimeMethod*))List_1_GetEnumerator_mC605D61CAC954D4A3A8D348D5D221B814319A038_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_mEDB482ACA649331B5EF4524B9E1D4C3B9BCD1134 (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60*, const RuntimeMethod*))Enumerator_Dispose_mEDB482ACA649331B5EF4524B9E1D4C3B9BCD1134_gshared)(__this, method);
|
|
}
|
|
inline HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_inline (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED (*) (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60*, const RuntimeMethod*))Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987 (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
inline bool Enumerator_MoveNext_mB9DC3D934804170CFD1F8B40AD171946368F5E8C (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60*, const RuntimeMethod*))Enumerator_MoveNext_mB9DC3D934804170CFD1F8B40AD171946368F5E8C_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_AddElement_mD994613C265EE2137E086C3BD8A028E81763647E (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___0_usagePage, int32_t ___1_usage, int32_t ___2_sizeInBits, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_AddElement_mE95BE338E6B215AA1CA6B97AAD9A135A6A85B417 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___0_usage, int32_t ___1_sizeInBits, const RuntimeMethod* method) ;
|
|
inline int32_t List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_inline (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, const RuntimeMethod*))List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_gshared_inline)(__this, method);
|
|
}
|
|
inline HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, int32_t, const RuntimeMethod*))List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822 (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, int32_t ___0_index, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, int32_t, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED, const RuntimeMethod*))List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822_gshared)(__this, ___0_index, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_WithPhysicalMinMax_m58B0FD4DA13242CD7B1D7F67FFB664E344A0270A (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___0_min, int32_t ___1_max, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_WithLogicalMinMax_m3B81BFABC8C577FFF03F61E1B205DF09B921B5C1 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___0_min, int32_t ___1_max, const RuntimeMethod* method) ;
|
|
inline HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8 (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, const RuntimeMethod*))List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 HIDDeviceDescriptorBuilder_Finish_m552FCC29177FEA550ED85A2AFA420F1A338F561B (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D* HIDLayoutBuilder_Build_mA8F12656656BF3BC1D6D6C51B87E030309C9D8A9 (HIDLayoutBuilder_t1B1FA825DFA02D93183E7C1B3C416D4A43D56553* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HIDParser_ParseReportDescriptor_mEDBCC4C1B27054EB99A738735C1F41CD6472E62A (uint8_t* ___0_bufferPtr, int32_t ___1_bufferLength, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* ___2_deviceDescriptor, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_m12163A5ACF7868965793C27BB4086FA446FE4082 (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6*, const RuntimeMethod*))List_1__ctor_m12163A5ACF7868965793C27BB4086FA446FE4082_gshared)(__this, method);
|
|
}
|
|
inline void List_1__ctor_m2193302E2DBF37D55C25EE317E0BDE040BE5CB52 (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, const RuntimeMethod*))List_1__ctor_m2193302E2DBF37D55C25EE317E0BDE040BE5CB52_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_m8339D1A685E8D77CAC9D3260C06B38B5C7CA7742 (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5 (int32_t ___0_itemSize, uint8_t* ___1_currentPtr, uint8_t* ___2_endPtr, const RuntimeMethod* method) ;
|
|
inline void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703 (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, int32_t, const RuntimeMethod*))Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared)(__this, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDItemStateLocal_SetUsage_mF18CA9692FAAB72115B8E30B671F75642F0CEF26 (HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
inline int32_t List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_inline (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, const RuntimeMethod*))List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateGlobal_GetUsagePage_m2730AFF3A621069D5CA7B93423F53AF9145D5B92 (HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* __this, int32_t ___0_index, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* ___1_localItemState, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateLocal_GetUsage_m12B69C95479759524D12DBC0EED1737B2A758DBA (HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
inline void List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_inline (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7, const RuntimeMethod*))List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDItemStateLocal_Reset_mA29E5C744E007900882FDF49B0DB660D6CA666C5 (HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* ___0_state, const RuntimeMethod* method) ;
|
|
inline HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 List_1_get_Item_mAA78D7E536ED334B3A2ACF6807CC5CFFD12A1F04 (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, int32_t, const RuntimeMethod*))List_1_get_Item_mAA78D7E536ED334B3A2ACF6807CC5CFFD12A1F04_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void List_1_set_Item_m62F2D5DF7AD292BC7D658B73628876B1EFDE0EB2 (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, int32_t ___0_index, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, int32_t, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7, const RuntimeMethod*))List_1_set_Item_m62F2D5DF7AD292BC7D658B73628876B1EFDE0EB2_gshared)(__this, ___0_index, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDReportData_FindOrAddReport_m472C5617A637FB2BE6BC85591E0696057BEA815E (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___0_reportId, int32_t ___1_reportType, List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* ___2_reports, const RuntimeMethod* method) ;
|
|
inline HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434 (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F (*) (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6*, int32_t, const RuntimeMethod*))List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, const RuntimeMethod*))Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline)(__this, method);
|
|
}
|
|
inline int32_t Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9 (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___0_defaultValue, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, int32_t, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_gshared)(__this, ___0_defaultValue, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateGlobal_GetPhysicalMin_m024C068044E6BCAF50A7B916DEE32027CBCBFE0A (HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateGlobal_GetPhysicalMax_mC33E0323DB7C0817C2951AD435D56E151D705490 (HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* __this, const RuntimeMethod* method) ;
|
|
inline void List_1_set_Item_mF8C569EAE11C005E295F2F7CFD63AF6107206290 (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, int32_t ___0_index, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6*, int32_t, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F, const RuntimeMethod*))List_1_set_Item_mF8C569EAE11C005E295F2F7CFD63AF6107206290_gshared)(__this, ___0_index, ___1_value, method);
|
|
}
|
|
inline Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8 List_1_GetEnumerator_mEFED85B7C6AF40AEC5B34E6C11C3C18BF631B3B5 (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8 (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, const RuntimeMethod*))List_1_GetEnumerator_mEFED85B7C6AF40AEC5B34E6C11C3C18BF631B3B5_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_mE6025392536B1B57D5D39AD09482558157C4CBAA (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8*, const RuntimeMethod*))Enumerator_Dispose_mE6025392536B1B57D5D39AD09482558157C4CBAA_gshared)(__this, method);
|
|
}
|
|
inline HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_inline (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 (*) (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8*, const RuntimeMethod*))Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_gshared_inline)(__this, method);
|
|
}
|
|
inline bool Enumerator_MoveNext_m6FBB9F9F70B0D21E92C7D13E26DDC8EA5A70ACB3 (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8*, const RuntimeMethod*))Enumerator_MoveNext_m6FBB9F9F70B0D21E92C7D13E26DDC8EA5A70ACB3_gshared)(__this, method);
|
|
}
|
|
inline int32_t Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, const RuntimeMethod*))Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_gshared)(__this, method);
|
|
}
|
|
inline int32_t List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_inline (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6*, const RuntimeMethod*))List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_gshared_inline)(__this, method);
|
|
}
|
|
inline void List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_inline (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6*, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F, const RuntimeMethod*))List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_gshared_inline)(__this, method);
|
|
}
|
|
inline void List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_gshared)(__this, method);
|
|
}
|
|
inline void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, const RuntimeMethod*))List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline)(__this, method);
|
|
}
|
|
inline int32_t List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7 ReadOnlyArray_1_op_Implicit_m452C9949CC9DB6FEDA4109C319B34666CE36E3C2 (HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
return (( ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7 (*) (HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD*, const RuntimeMethod*))ReadOnlyArray_1_op_Implicit_m452C9949CC9DB6FEDA4109C319B34666CE36E3C2_gshared)(___0_array, method);
|
|
}
|
|
inline HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* ReadOnlyArray_1_ToArray_m7C4848AF221AD3A11F95E50E61A49B4AA1FB58FE (ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* (*) (ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7*, const RuntimeMethod*))ReadOnlyArray_1_ToArray_m7C4848AF221AD3A11F95E50E61A49B4AA1FB58FE_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_AddAvailableDevicesThatAreNowRecognized_mE0F489C5F28E922D0E4BCBBD115C57037E47BAD3 (InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA InputSystem_get_devices_mBE599285E43211ACE15248654A3E3D7DB42C85CA (const RuntimeMethod* method) ;
|
|
inline InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ReadOnlyArray_1_get_Item_mCB4626E80069288BC1EEF0F558B1B806F59DAE43 (ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* (*) (ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA*, int32_t, const RuntimeMethod*))ReadOnlyArray_1_get_Item_m20907EA946F72D55FC8BD8031EA4F9BF13AE164D_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 HID_get_hidDescriptor_mC184D46A5FBDBA93CEA647FE529637230B01928D (HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDPageUsage__ctor_m6371674E595E66213116FCAC5B07337261F69783 (HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* __this, int32_t ___0_page, int32_t ___1_usage, const RuntimeMethod* method) ;
|
|
inline bool Enumerable_Contains_TisHIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F_mD2995E6FC4E949ABA06D2AA0A1F87BFF2F4BA018 (RuntimeObject* ___0_source, HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (RuntimeObject*, HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F, const RuntimeMethod*))Enumerable_Contains_TisHIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F_mD2995E6FC4E949ABA06D2AA0A1F87BFF2F4BA018_gshared)(___0_source, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputControl_get_layout_mE6054F87BB94A1F1D06355E137A1840B2EFF7971 (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_RemoveLayout_mE8FB9C1D545135A2138A8E9565A9AAF9D960D7E0 (String_t* ___0_name, const RuntimeMethod* method) ;
|
|
inline int32_t ReadOnlyArray_1_get_Count_mB20295F7CC546835AD75D4880A2A81DABB6BE29C_inline (ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA*, const RuntimeMethod*))ReadOnlyArray_1_get_Count_m37AE229E2BFB74375A7BD545982B745F982762F8_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDPageUsage__ctor_mFFC7DE365DEC0C75BC6E9155D2BDECEC6EAAE96B (HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* __this, int32_t ___0_usage, const RuntimeMethod* method) ;
|
|
inline void InputSystem_RegisterLayout_TisHID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_m2382634AAE2124CEA4375912F34520030C29D811 (String_t* ___0_name, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___1_matches, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m8B0CF2E33066D31E034869BE401DD185E2F04011_gshared)(___0_name, ___1_matches, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceFindControlLayoutDelegate__ctor_mFF49E8C46111B03A6B9AEBDA66C309EF6FACFB78 (InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_add_onFindLayoutForDevice_m45EFFF1289C40BBA4B9AED83192E6EF8994FFB54 (InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E* ___0_value, const RuntimeMethod* method) ;
|
|
inline void Action_2__ctor_m23A4911D82F290811EDC6BFC315C339857526804 (Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_2__ctor_m6DEC13F96CE9CD74561DCCA7017E450079C96942_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_add_onDeviceChange_mC1BAF8DE08B2B3F6D0A98D80AE1E4FF5531C60FA (Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_add_onBeforeUpdate_m022480417EA69F0488F81F112B2D9BED5D65AC5C (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_add_onSettingsChange_mB957DF29389DFD5D6C2652BDD125CD8A08986F5D (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_SetUpState_m00F33D1A4004E8E4396ADD0CA5658676E3FCB9A9 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnhancedTouchSupport_get_enabled_m009CA5462D8D8C7DF91F130DF7AE699ACF94A283 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_remove_onDeviceChange_mD08F75C263C2D687B2E6E68E86105829075BF717 (Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_remove_onBeforeUpdate_m4BD541DC1AB9FC6C87FB71B35A39CC75223E530C (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_remove_onSettingsChange_m9B3D8D8A87A653D5DFBA466EF723701B90C238C0 (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_TearDownState_m6E915F3756E760E96A447D693F70E98ABA64BCAF (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_Destroy_mA11DBC6D12D70F40AA14283E65322FAFC602572B (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF* InputSystem_get_settings_m8E3E9C0907904CBDBAE96354142AB0A87C7A3B74 (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputSettings_get_updateMode_mD37EABFC0678912846EABBC3CF31AC82E4ACE79E_inline (InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF* __this, const RuntimeMethod* method) ;
|
|
inline Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C (ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B (*) (ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA*, const RuntimeMethod*))ReadOnlyArray_1_GetEnumerator_mE43A032C7C67896D9F8377C6C1C863C22F3044B6_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB (Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B*, const RuntimeMethod*))Enumerator_Dispose_m041721B53AC187277BACB4EA9C86E299322EB0AB_gshared)(__this, method);
|
|
}
|
|
inline InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945 (Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* (*) (Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B*, const RuntimeMethod*))Enumerator_get_Current_mC38F33A423715DE1D9EAD3EADE1C8C03C52E4465_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_OnDeviceChange_m6F0D816AB57DDD8E83C650DB19CA6DF0A2025BD9 (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, int32_t ___1_change, const RuntimeMethod* method) ;
|
|
inline bool Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC (Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B*, const RuntimeMethod*))Enumerator_MoveNext_m95272BAC87E97D7B862DB72A8639565003BD244B_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_AddTouchscreen_m68D08927121523CB720C4FABAF3310678175A4CE (Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_screen, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_RemoveTouchscreen_mFB8FC4091A5CA413B278CE1FE24AAF452F43162B (Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_screen, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Finger_get_currentTouch_m53721DA3C8AB5C0D600499C33CCD5854E757890D (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Finger_get_lastTouch_mE5E27445009AB9A9AD2B33496A4BDBE8016771A8 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_screenPosition_mAEBB428F1E62308A2C3E32A56CBEFCA9F7530B03 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputStateHistory_get_Count_m23DF78272A6C97F6C8782A953482772CDF6FFA81_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
|
|
inline Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888 (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 (*) (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*, int32_t, const RuntimeMethod*))InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___0_finger, Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___1_touchRecord, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_isInProgress_mBAB5B9955091386836522092465FD4692100F670 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Touch_get_updateStepCount_m9550F17AC3135450BB378D0A44A7FD4762EFD01D (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchHistory__ctor_m3416A30524B233DED1F8C753398436191ED44814 (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___0_finger, InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___1_history, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline (Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* __this, const RuntimeMethod* method) ;
|
|
inline TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C (ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* (*) (ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E*, int32_t, const RuntimeMethod*))ReadOnlyArray_1_get_Item_m20907EA946F72D55FC8BD8031EA4F9BF13AE164D_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void InputStateHistory_1__ctor_mF238AB65ADBA9D960A9B86F6AA208AA315B42435 (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3* ___0_control, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*, InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3*, const RuntimeMethod*))InputStateHistory_1__ctor_mF238AB65ADBA9D960A9B86F6AA208AA315B42435_gshared)(__this, ___0_control, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_maxHistoryLengthPerFinger_m0F3E7DF315BB6D650292E18A3C21DDD1522E3500 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_set_historyDepth_mE520A08E8510340C919BA638230AFCCB1C8BA34D (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
inline int32_t UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_gshared_inline)(method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_set_extraMemoryPerRecord_m6907893F41CB2EB06B4C04B2E8B35E0E5E800786 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
inline void Action_1__ctor_mFC28914555AB84FBEB1AC628C66364244967933B (Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_1__ctor_mFC28914555AB84FBEB1AC628C66364244967933B_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputStateHistory_set_onRecordAdded_m6F35EA7B2352BE8359FD22FE803E6AAC1CD2E93A_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7* ___0_value, const RuntimeMethod* method) ;
|
|
inline void Func_4__ctor_m6556C926BADAE76C28D39818A7980EC2CF196024 (Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_4__ctor_m2A54891CCBC7DDDF0FEC2524D81F59613A51DF93_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputStateHistory_set_onShouldRecordStateChange_m4553C7A82A01BE25B5F1D0D2567B70FCE375F30E_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_set_updateMask_m5059363750CB5899C77D67BD05419563F703A3F7 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_StartRecording_mF4D22DFFB38256D8C147A098282110A961D7030C (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchControl_get_isInProgress_m453C4D3C5AD0AEE956EDFC6B54E452C3D61100F0 (TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* __this, const RuntimeMethod* method) ;
|
|
inline TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* InputControl_1_get_value_mBC9F8DCDF832854DCA08E35A824EBD8A76ABDE2E (InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* (*) (InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3*, const RuntimeMethod*))InputControl_1_get_value_mBC9F8DCDF832854DCA08E35A824EBD8A76ABDE2E_gshared)(__this, method);
|
|
}
|
|
inline Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 InputStateHistory_1_RecordStateChange_mD873C4A092DA5D5E86088B221B90A4B5B05F5840 (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3* ___0_control, TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 ___1_value, double ___2_time, const RuntimeMethod* method)
|
|
{
|
|
return (( Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 (*) (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*, InputControl_1_t8328183BE585255AE6A8A1F8D5C9DEEDE891A3B3*, TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97, double, const RuntimeMethod*))InputStateHistory_1_RecordStateChange_mD873C4A092DA5D5E86088B221B90A4B5B05F5840_gshared)(__this, ___0_control, ___1_value, ___2_time, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline (int32_t ___0_i, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FourCC_op_Inequality_m8E764B9EF56D488E40480A3E69230EF623C7B92B_inline (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_left, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___1_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* InputControl_get_currentStatePtr_m77D2900EEE4AAB505C98292AF8538DDCF44F8C3C (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 InputControl_get_stateBlock_mCAE31879EDC6621B35B368B4916219D30EAA0B0B_inline (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_byteOffset_m6EADE5C9C8B346D38E543E38777ED67ED2AEA0AC_inline (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isTapRelease_m2330F3A5BFF42425B21423B2257619666A05CE7D (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Record_get_recordIndex_m58EE017D7611A35971E68B5B5A4A7802F79920A1 (Record_tF7FF07DC502355356B48CE78337FB16B196E2EE0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* InputStateHistory_GetRecordUnchecked_m569EB10E4D93B81BEA6699746C15C720F48E42F6 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* RecordHeader_get_statePtrWithoutControlIndex_m06FC191CB4801F442A0B972DA23B48ECE629922C (RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputStateHistory_get_bytesPerRecord_mAF516CE1E45E3EBA46EDFFF2923908D6B672D114 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputStateHistory_get_historyDepth_mBAFA4592E170099C0E8BB360B148A854517AA561_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Subtraction_m44475FCDAD2DA2F98D78A6625EC2DCDFE8803837_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_a, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_beganInSameFrame_m46F1C71775E825310242C59E608D5F20908A8D39 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
inline void DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m08B72E0E097917AA5CEBAD048899493F5780A421 (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* ___0_callbacks, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___1_argument, String_t* ___2_callbackName, RuntimeObject* ___3_context, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B*, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A*, String_t*, RuntimeObject*, const RuntimeMethod*))DelegateHelpers_InvokeCallbacksSafe_TisRuntimeObject_m3765984E32F53D8A5A25B14A6E8A71B9234740F4_gshared)(___0_callbacks, ___1_argument, ___2_callbackName, ___3_context, method);
|
|
}
|
|
inline RuntimeObject* InputStateHistory_1_GetEnumerator_m7589AE5E798BAFF50EF3C3BC3539FFDFF5DFCF59 (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*, const RuntimeMethod*))InputStateHistory_1_GetEnumerator_m7589AE5E798BAFF50EF3C3BC3539FFDFF5DFCF59_gshared)(__this, method);
|
|
}
|
|
inline void* Record_GetUnsafeExtraMemoryPtrUnchecked_m43B2E6AC3AF2307D2DDF2C92E90A629666277F66 (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( void* (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_GetUnsafeExtraMemoryPtrUnchecked_m43B2E6AC3AF2307D2DDF2C92E90A629666277F66_gshared)(__this, method);
|
|
}
|
|
inline InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_inline (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Touch_get_uniqueId_m2B7B006E32B62D82346541BCBDACE83EC98D4AF0 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Finger_FindTouch_m1A910BF69B21B5D02A79698B5590C2706FE601B3 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, uint32_t ___0_uniqueId, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_touchId_m497B1531A3C206C36EBDA56C54CCF91D90AB3F8F (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
inline int32_t Record_get_index_m8BF5DBF4C267EED76E3802B249F2856F29DAD8A6 (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_get_index_m8BF5DBF4C267EED76E3802B249F2856F29DAD8A6_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
inline Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F_gshared)(__this, method);
|
|
}
|
|
inline void* Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069 (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( void* (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069_gshared)(__this, method);
|
|
}
|
|
inline bool Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C_gshared)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420_inline (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_began_m592AA9F7AE5ED0AA23C971BD90703F1BBFD778C6 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_inProgress_m6CF6BD1C7AFE8099AD35393829264FDE0C723CAA (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_ended_m96B6BBDF371E26C6AE4B89CB7F89861D6B0C462F (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Touch_get_pressure_mDA228CAA389D14F6139507A304A97FE07EAE9DD3 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_radius_m8FCEEC69D77C94A4D8CBA662E5514AD7D894E8F4 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Touch_get_startTime_m9778C4C818DD69BAC47D10B7567233E5316264CB (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
inline double Record_get_time_m5976C10C2C3A2A2089D57F1DF9AE5557C10DF47E (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( double (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_get_time_m5976C10C2C3A2A2089D57F1DF9AE5557C10DF47E_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Touch_get_time_m1E3EA9FB3DF10246B7BBF100663BAA3030714F17 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* Finger_get_screen_mBA2D1364604CB55F7386EFB844B12B7CFA7EE744_inline (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* Touch_get_screen_m88071A10D5E186573E2694E47DD660AC4FAD2E00 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_startScreenPosition_mAF62C4C8C812B9E36855A6CB63B8493F8ED3E0C7 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_delta_m845008E2AF42561313DA002985D85150329B9BCC (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_tapCount_m06A6261A941A678FAA29419D7B8F07B16EF07F75 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isTap_m6C2D3CC78A3AA9705CBFD2A9E817FCFD8AB25EFB (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_isTap_m48E7409F15259BE6D04C66ADDA71F6037E4AD4B3 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_displayIndex_m75C95051A1B870D8E0EF195461A06775385B2884 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* Touch_get_extraData_mF845BF57832677EEEB41E5BF0E0F732D4D11D686 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
inline void* Record_GetUnsafeExtraMemoryPtr_mF305A3D8857DFF297E9FB6573684E4B9BF82022C (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( void* (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_GetUnsafeExtraMemoryPtr_mF305A3D8857DFF297E9FB6573684E4B9BF82022C_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 Finger_GetTouchHistory_m8A13B55D4B1B1B77F1262B46F73A603A33E5D80C (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 ___0_touch, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 Touch_get_history_m1B049B5EB482493F9CFE5B260DACEAE9B0119BB6 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_UpdateActiveTouches_m48D632ECA4B568270B458D9CED54AC591FBFBF43 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, const RuntimeMethod* method) ;
|
|
inline void ReadOnlyArray_1__ctor_m9C297EC68F90BE1CBFDC80B0D94420BF2B905455 (ReadOnlyArray_1_t3D5F71F2FAC15E8E7413E1B4BDCCA92D49962E72* __this, TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ReadOnlyArray_1_t3D5F71F2FAC15E8E7413E1B4BDCCA92D49962E72*, TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354*, int32_t, int32_t, const RuntimeMethod*))ReadOnlyArray_1__ctor_m9C297EC68F90BE1CBFDC80B0D94420BF2B905455_gshared)(__this, ___0_array, ___1_index, ___2_length, method);
|
|
}
|
|
inline void ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F (ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36* __this, FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36*, FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F*, int32_t, int32_t, const RuntimeMethod*))ReadOnlyArray_1__ctor_m2C5D5E2909635889EDB94C381385ED5D6128612F_gshared)(__this, ___0_array, ___1_index, ___2_length, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_UpdateActiveFingers_m21F725BF5EC6E4953C44FFBA63F4C7ABFA0FBE49 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, const RuntimeMethod* method) ;
|
|
inline void CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22 (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* __this, Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___0_dlg, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B*, Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B*, const RuntimeMethod*))CallbackArray_1_AddCallback_mB86EC6413C0AB2C12A88FA8141E3ACDA83DA2C6D_gshared)(__this, ___0_dlg, method);
|
|
}
|
|
inline void CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87 (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* __this, Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___0_dlg, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B*, Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B*, const RuntimeMethod*))CallbackArray_1_RemoveCallback_mDEEFD791C9654F4EE7C2586BD7DED83F74D897B2_gshared)(__this, ___0_dlg, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Finger_get_index_mB409A9B5711767D3A6046AEAA4931A0B3633934C_inline (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m918500C1EFB475181349A79989BB79BB36102894 (String_t* ___0_format, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_args, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Touch_ToString_m641EEB738A7722EE7A2F90630BB3A5A1880F3B2F (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_Equals_m434DF93FDA204D5C06E889A9CB53BC2E5D39ABF7 (RuntimeObject* ___0_objA, RuntimeObject* ___1_objB, const RuntimeMethod* method) ;
|
|
inline bool Record_Equals_m17C216CDC45654F53F8191093F3404478DB16B69 (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4, const RuntimeMethod*))Record_Equals_m17C216CDC45654F53F8191093F3404478DB16B69_gshared)(__this, ___0_other, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_Equals_m5A9195C1D656529EFF984AD9060ECA7257ACFDC4 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 ___0_other, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_Equals_mA91A1937A740538D62AF4998D332AAB464B47E1E (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
inline int32_t Record_GetHashCode_m94F8E34331A3B0253C5448B7E9B23BFE0F1B04A8 (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, const RuntimeMethod*))Record_GetHashCode_m94F8E34331A3B0253C5448B7E9B23BFE0F1B04A8_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_GetHashCode_m73B534C7CAA38FE313674A0133B66431E7DF233A (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method) ;
|
|
inline int32_t InlinedArray_1_AppendWithCapacity_m4D609EB991E007436EB5BFA3784373529E098771 (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_value, int32_t ___1_capacityIncrement, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3*, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*, int32_t, const RuntimeMethod*))InlinedArray_1_AppendWithCapacity_m9862A91090391A77B2DCC2428616248FC176C180_gshared)(__this, ___0_value, ___1_capacityIncrement, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_AddFingers_m6A1B4053B31CEFE25B8F1DA4CE10312134F15888 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_screen, const RuntimeMethod* method) ;
|
|
inline int32_t InputArrayExtensions_IndexOfReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m33ABEE0C487DC3D77554DABBA802DA668DBB4D18 (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 ___0_array, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*, const RuntimeMethod*))InputArrayExtensions_IndexOfReference_TisRuntimeObject_m8D6AA5D90FA43E1196C230ECEB238EBDEFBFC677_gshared)(___0_array, ___1_value, method);
|
|
}
|
|
inline void InlinedArray_1_RemoveAtWithCapacity_mB93190E8A814A079EA1D711D1CE53DA0953D325D (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3*, int32_t, const RuntimeMethod*))InlinedArray_1_RemoveAtWithCapacity_mE12D4976DF40F114BA2B56DE9EA9C66F248F466C_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_RemoveFingers_m04B1A6EE0792D7E9BF46E26950D2B15931BE8F99 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_screen, const RuntimeMethod* method) ;
|
|
inline void TypedRestore__ctor_mA8D10118E8FDB2DDFBF5EC33A5A7183E01348EAE (TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021*, RuntimeObject*, intptr_t, const RuntimeMethod*))TypedRestore__ctor_mA8D10118E8FDB2DDFBF5EC33A5A7183E01348EAE_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void SavedStructState_1__ctor_m3C152C71C4CF020B00FFFDB88B7A667A8192389B (SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B* __this, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* ___0_state, TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* ___1_restoreAction, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___2_staticDisposeCurrentState, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B*, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A*, TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))SavedStructState_1__ctor_m3C152C71C4CF020B00FFFDB88B7A667A8192389B_gshared)(__this, ___0_state, ___1_restoreAction, ___2_staticDisposeCurrentState, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A Touch_CreateGlobalState_mE34FA561BE9E79EC7FDD8E60DF092FC90C678C02 (const RuntimeMethod* method) ;
|
|
inline int32_t ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_inline (ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E*, const RuntimeMethod*))ReadOnlyArray_1_get_Count_m37AE229E2BFB74375A7BD545982B745F982762F8_gshared_inline)(__this, method);
|
|
}
|
|
inline void ArrayHelpers_EnsureCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mF8379BFCD36AC20A6B37E3145EA3F3B403301DC6 (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F** ___0_array, int32_t ___1_count, int32_t ___2_capacity, int32_t ___3_capacityIncrement, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F**, int32_t, int32_t, int32_t, const RuntimeMethod*))ArrayHelpers_EnsureCapacity_TisRuntimeObject_m66B6A8BB3DD016401DECD39D1D60BAC8E240AFCC_gshared)(___0_array, ___1_count, ___2_capacity, ___3_capacityIncrement, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Finger__ctor_m9D9ED2014F12F2FA245E5C04043F02D16B296505 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_screen, int32_t ___1_index, int32_t ___2_updateMask, const RuntimeMethod* method) ;
|
|
inline int32_t ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mB1214C732EDE19508DB2D6FFC732BA6C36725CCF (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F** ___0_array, int32_t* ___1_count, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___2_value, int32_t ___3_capacityIncrement, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F**, int32_t*, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A*, int32_t, const RuntimeMethod*))ArrayHelpers_AppendWithCapacity_TisRuntimeObject_m4BE5EEC05AF1748E66CFC4850FE047BEF296D514_gshared)(___0_array, ___1_count, ___2_value, ___3_capacityIncrement, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_Dispose_m7DD7D063D0D205BB33BBCBA682F7BB98884CCE15 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
|
|
inline void ArrayHelpers_EraseSliceWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m9AA46EEAF8D235726A766F9CBDE46A3587732F54 (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F** ___0_array, int32_t* ___1_length, int32_t ___2_index, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F**, int32_t*, int32_t, int32_t, const RuntimeMethod*))ArrayHelpers_EraseSliceWithCapacity_TisRuntimeObject_mA1F90515FDE3EBFDDF2F248B2D9DC502850EAB59_gshared)(___0_array, ___1_length, ___2_index, ___3_count, method);
|
|
}
|
|
inline void InputStateHistory_1__ctor_m760ABD5FDD38AF6C3FF42B641B3FC8383E4A91DB (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* __this, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___0_maxStateSizeInBytes, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28, const RuntimeMethod*))InputStateHistory_1__ctor_m760ABD5FDD38AF6C3FF42B641B3FC8383E4A91DB_gshared)(__this, ___0_maxStateSizeInBytes, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputStateHistory_Clear_m7B9A241840171E7224D0A01969F36CF294D227F3 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
|
|
inline void ArrayHelpers_Clear_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_m145582A0849DC8B8158800E6C42F8C0715633546 (InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17*, const RuntimeMethod*))ArrayHelpers_Clear_TisRuntimeObject_mFBB06420854F2087695DC1B4C87E69C2748D43A2_gshared)(___0_array, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputStateHistory_UserIndexToRecordIndex_m81D4D6EE19ED80607BAAA31F3159168AC3B5B678 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputStateHistory_get_extraMemoryPerRecord_m4E4C9D89BC37B9CD7E6AFFD58D95A9030F92E653_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputExtensions_IsEndedOrCanceled_m00A006256F424472010DDC115CBAEFC4F9A024CA (int32_t ___0_phase, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_phase_mCC48A355F50B41E745BDCE383BD083A69BD8644A (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* InputStateHistory_AllocateRecord_mAD0E7626ECD9E937BBD46B8E84DEE7E247A8B707 (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, int32_t* ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* RecordHeader_get_statePtrWithControlIndex_m68BBA8402AF00318B40229E5121F9C5132A3B655 (RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_tA1DF7A256AD2BF17FB155224CB2611ED215EFCD3 InputStateHistory_get_controls_m2B1056A5B21F2A8CFAAEE9136E24D27C4BFF31CC (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
|
|
inline InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ReadOnlyArray_1_get_Item_mF7217A9697E8EAA3A574FCDCB611597EC9C1836A (ReadOnlyArray_1_tA1DF7A256AD2BF17FB155224CB2611ED215EFCD3* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* (*) (ReadOnlyArray_1_tA1DF7A256AD2BF17FB155224CB2611ED215EFCD3*, int32_t, const RuntimeMethod*))ReadOnlyArray_1_get_Item_m20907EA946F72D55FC8BD8031EA4F9BF13AE164D_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline int32_t ArrayHelpers_AppendWithCapacity_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_mD1EB70229BA4FCE7BB48A627BDB2246259B0B02A (InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17** ___0_array, int32_t* ___1_count, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___2_value, int32_t ___3_capacityIncrement, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17**, int32_t*, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E*, int32_t, const RuntimeMethod*))ArrayHelpers_AppendWithCapacity_TisRuntimeObject_m4BE5EEC05AF1748E66CFC4850FE047BEF296D514_gshared)(___0_array, ___1_count, ___2_value, ___3_capacityIncrement, method);
|
|
}
|
|
inline int32_t UnsafeUtility_SizeOf_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mFE961AB914D8126DC425FAFC788195746A8CBA59_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mFE961AB914D8126DC425FAFC788195746A8CBA59_gshared_inline)(method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_MemCpy_m5CEA91ACDADC522E584AE3A2AB2B0B74393A9177 (void* ___0_destination, void* ___1_source, int64_t ___2_size, const RuntimeMethod* method) ;
|
|
inline void Record__ctor_m1CACECB022FDAACE6482C208E6552F7614445895 (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___0_owner, int32_t ___1_index, RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* ___2_header, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*, InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*, int32_t, RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*, const RuntimeMethod*))Record__ctor_m1CACECB022FDAACE6482C208E6552F7614445895_gshared)(__this, ___0_owner, ___1_index, ___2_header, method);
|
|
}
|
|
inline void ArrayHelpers_InsertAtWithCapacity_TisTouch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_m98321242121000D55966FF534E3B042044932B60 (TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354** ___0_array, int32_t* ___1_count, int32_t ___2_index, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 ___3_value, int32_t ___4_capacityIncrement, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354**, int32_t*, int32_t, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70, int32_t, const RuntimeMethod*))ArrayHelpers_InsertAtWithCapacity_TisTouch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_m98321242121000D55966FF534E3B042044932B60_gshared)(___0_array, ___1_count, ___2_index, ___3_value, ___4_capacityIncrement, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mE31C1F868AE383042EB223A7961315337C794275 (U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateHistory_get_version_m89DDB085F1210A84797C85822792F5FBF73C25F0_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m74864CB6B9CA6B01970FD5A8A88A9F68A00C6D72 (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 ___0_owner, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TouchHistory_GetEnumerator_mA49607C32F33B1D33F460C0E3882161F18001B7E (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TouchHistory_System_Collections_IEnumerable_GetEnumerator_m4337DC86FF76C3ACE3E301937F383D911A8D20C5 (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277_inline (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038 (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, String_t* ___1_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 TouchHistory_get_Item_m2CF5BFE3F5263F361E7CBFD083E7449DA4F42BBF (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Enumerator_get_Current_m063D55945EB78459BBDCE1AF96021395F5E873A6 (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* TouchSimulation_get_instance_m34792E651AC9A88122F92EF633537A69B570739C_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_x, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject__ctor_m7D0340DE160786E6EFA8DABD39EC3B694DA30AAD (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_set_hideFlags_mACB8BFC903FB3B01BBD427753E791BF28B5E33D4 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
inline TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* GameObject_AddComponent_TisTouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_m3332B854D47D58542E9A5D19442054BDFC92FD85 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))GameObject_AddComponent_TisRuntimeObject_m69B93700FACCF372F5753371C6E8FB780800B824_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Behaviour_set_enabled_mF1DCFE60EB09E0529FE9476CA804A3AA2D72B16A (Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_x, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_Disable_m321E8840F88BE92343D64A728694FFA942EEC69E (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Destroy_mE97D0A766419A81296E8D4E5C23D01D3FE91ACBB (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_obj, const RuntimeMethod* method) ;
|
|
inline bool ArrayHelpers_ContainsReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_mF487A3E7CDC1C0B29B2BB3178D9CB4398D6A37D7 (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* ___0_array, int32_t ___1_count, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___2_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5*, int32_t, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*, const RuntimeMethod*))ArrayHelpers_ContainsReference_TisRuntimeObject_TisRuntimeObject_mFA2BAE67D85C1468C9A107A36CEE42BD665A2DFC_gshared)(___0_array, ___1_count, ___2_value, method);
|
|
}
|
|
inline int32_t ArrayHelpers_AppendWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m4A3CE75746FB1AFC8283C6E8B76E923666A07961 (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5** ___0_array, int32_t* ___1_count, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___2_value, int32_t ___3_capacityIncrement, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5**, int32_t*, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*, int32_t, const RuntimeMethod*))ArrayHelpers_AppendWithCapacity_TisRuntimeObject_m4BE5EEC05AF1748E66CFC4850FE047BEF296D514_gshared)(___0_array, ___1_count, ___2_value, ___3_capacityIncrement, method);
|
|
}
|
|
inline int32_t ArrayHelpers_Append_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_mA5858F11A337989656D8E979F1262C06642475A4 (Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA** ___0_array, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA**, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, const RuntimeMethod*))ArrayHelpers_Append_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_mA5858F11A337989656D8E979F1262C06642475A4_gshared)(___0_array, ___1_value, method);
|
|
}
|
|
inline int32_t ArrayHelpers_Append_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m28BB0D48547AE7FA146E50EEFC61673CA9694DBD (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** ___0_array, int32_t ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C**, int32_t, const RuntimeMethod*))ArrayHelpers_Append_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m28BB0D48547AE7FA146E50EEFC61673CA9694DBD_gshared)(___0_array, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_DisableDevice_m19E310307F986FDBCC83048107E4BDC25F9FD26B (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, bool ___1_keepSendingEvents, const RuntimeMethod* method) ;
|
|
inline int32_t ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_mAF4E5E77C2382FF511F4C4F6C5A3ABFB6182785C (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* ___0_array, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___1_value, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5*, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*, int32_t, const RuntimeMethod*))ArrayHelpers_IndexOfReference_TisRuntimeObject_TisRuntimeObject_m58ECC31F75FD822671542E4F31BCFD292120D6C0_gshared)(___0_array, ___1_value, ___2_count, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* InputControl_get_device_mAB3E013F566CF3407B8C36BC781EBD751DFAB324_inline (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_UpdateTouch_mFC046EBC56223C3DAED35D7BB52C39C1B11450CE (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, int32_t ___0_touchIndex, int32_t ___1_pointerIndex, int32_t ___2_phase, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___3_eventPtr, const RuntimeMethod* method) ;
|
|
inline void ArrayHelpers_EraseAtWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m0C0B81FF19D0A1AB73D89611640C2DA671D3389E (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* ___0_array, int32_t* ___1_count, int32_t ___2_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5*, int32_t*, int32_t, const RuntimeMethod*))ArrayHelpers_EraseAtWithCapacity_TisRuntimeObject_m423FCC1C4DBA092F51CD3372BCB85AE2FD0E5D86_gshared)(___0_array, ___1_count, ___2_index, method);
|
|
}
|
|
inline void ArrayHelpers_EraseAt_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_mB1BC8BA75E0736148AAEC3C83444128EE5BA0049 (Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA** ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA**, int32_t, const RuntimeMethod*))ArrayHelpers_EraseAt_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_mB1BC8BA75E0736148AAEC3C83444128EE5BA0049_gshared)(___0_array, ___1_index, method);
|
|
}
|
|
inline void ArrayHelpers_EraseAt_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6B80DBFF93497B94276E989C8357A7A72C454144 (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C**, int32_t, const RuntimeMethod*))ArrayHelpers_EraseAt_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6B80DBFF93497B94276E989C8357A7A72C454144_gshared)(___0_array, ___1_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputDevice_get_added_m27CF78B0777E142AAF9139ABFD88F67BBAABA15C (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_EnableDevice_mED1442951B67B1B8742C29CE7F3ED2828B3B44F7 (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, const RuntimeMethod* method) ;
|
|
inline int32_t ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisInputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B_m7255E2EDA1E06E6C8F99AF1564A17FCA40A970BB (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* ___0_array, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___1_value, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5*, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, int32_t, const RuntimeMethod*))ArrayHelpers_IndexOfReference_TisRuntimeObject_TisRuntimeObject_m58ECC31F75FD822671542E4F31BCFD292120D6C0_gshared)(___0_array, ___1_value, ___2_count, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* Pointer_get_position_m4286004169788483EEDA6AF833CEFDB04FEDF3D8_inline (Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* InputControlExtensions_GetStatePtrFromStateEventUnchecked_m8076A50F95247F90A0C8C06EF4D74C8F0F73AAA6 (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___0_control, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___1_eventPtr, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___2_eventType, const RuntimeMethod* method) ;
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 InputControl_1_ReadValueFromState_m90076063D4500290705DBD1D85DA8743D4652C37 (InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66* __this, void* ___0_statePtr, const RuntimeMethod* method)
|
|
{
|
|
return (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (InputControl_1_tC164085710F2FAA9161295C9B7FE273AF893CF66*, void*, const RuntimeMethod*))InputControl_1_ReadValueFromState_m90076063D4500290705DBD1D85DA8743D4652C37_gshared)(__this, ___0_statePtr, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB* Pointer_get_displayIndex_mD4258A9C397671E55D04352B04A2E7AB56C11AB5_inline (Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* __this, const RuntimeMethod* method) ;
|
|
inline int32_t InputControl_1_ReadValueFromState_m8653D1564BFE81C2D6C0AB381F9CD84492F350F7 (InputControl_1_t6610D981ECAED7950370CC37B55465BBFDDD6A61* __this, void* ___0_statePtr, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (InputControl_1_t6610D981ECAED7950370CC37B55465BBFDDD6A61*, void*, const RuntimeMethod*))InputControl_1_ReadValueFromState_m8653D1564BFE81C2D6C0AB381F9CD84492F350F7_gshared)(__this, ___0_statePtr, method);
|
|
}
|
|
inline float InputControl_1_ReadValueFromState_m1748B48FE53C7B329B8138F43857E231AC6FC24E (InputControl_1_t7A35A4AF63A7AA94678E000D4F3265A1FD84288A* __this, void* ___0_statePtr, const RuntimeMethod* method)
|
|
{
|
|
return (( float (*) (InputControl_1_t7A35A4AF63A7AA94678E000D4F3265A1FD84288A*, void*, const RuntimeMethod*))InputControl_1_ReadValueFromState_m1748B48FE53C7B329B8138F43857E231AC6FC24E_gshared)(__this, ___0_statePtr, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventControlCollection_t63B58F806FC82F1D8E18E88557E8FCC26388F3BE InputControlExtensions_EnumerateControls_m9D7E9EAACBDCB1D105D829B9E9FFD2B3E8CF7BC0 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_eventPtr, int32_t ___1_flags, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___2_device, float ___3_magnitudeThreshold, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB InputEventControlCollection_GetEnumerator_m04011F47500AE715F1268E93152514FBE4209869 (InputEventControlCollection_t63B58F806FC82F1D8E18E88557E8FCC26388F3BE* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventControlEnumerator_Dispose_mE7168656062DFF53F7C09478087ADAA636EA2FAB (InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* InputEventControlEnumerator_get_Current_mD0540A0B5BE8EC847B80D28B66BA8389A1AF17BB_inline (InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputControl_get_isButton_m4634F4F40450AA969DA851B73E2A2226239F3BEF (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method) ;
|
|
inline int32_t ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_mCF9137BEBBCF508C0D1E21C926C31E9A44FABA97 (ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* ___0_array, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___1_value, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7*, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E*, int32_t, const RuntimeMethod*))ArrayHelpers_IndexOfReference_TisRuntimeObject_TisRuntimeObject_m58ECC31F75FD822671542E4F31BCFD292120D6C0_gshared)(___0_array, ___1_value, ___2_count, method);
|
|
}
|
|
inline int32_t ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_mB09BF2856995673BC9969B5E877CC8A9B8BCD443 (ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* ___0_array, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___1_value, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7*, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF*, int32_t, const RuntimeMethod*))ArrayHelpers_IndexOfReference_TisRuntimeObject_TisRuntimeObject_m58ECC31F75FD822671542E4F31BCFD292120D6C0_gshared)(___0_array, ___1_value, ___2_count, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventControlEnumerator_MoveNext_m0A9182DFD78818A01CC3B038519B8B9ACCC55107 (InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_handled_m855A75D4B98470B0A814FB8627608595FC9E9EF0 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_AddPointer_mAF311DF959277CE67860C36E4650A3EE734194C1 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___0_pointer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_RemovePointer_m787BDB97748ADD4B28C3AFB85304B6A938889B42 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___0_pointer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_AddDevice_m376584E1F76AFF2176913A885355E4F317E7323A (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* InputSystem_GetDevice_m88ED9934452B1049D926A08063E287DB0E60AFF1 (String_t* ___0_nameOrLayout, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TouchSimulation_set_simulatedTouchscreen_m59218EBAFC13C1FF0019F59F12378749620C9EEF_inline (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_value, const RuntimeMethod* method) ;
|
|
inline Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* InputSystem_AddDevice_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_mD79344B098B9A9FB343FF886B1570591ABE366F5 (String_t* ___0_name, const RuntimeMethod* method)
|
|
{
|
|
return (( Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* (*) (String_t*, const RuntimeMethod*))InputSystem_AddDevice_TisRuntimeObject_m0C15C931B928FDC569EAA06A44EDC0192F909A4F_gshared)(___0_name, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_OnDeviceChange_mBBFFE124D77C484CF2AFC391E9A53C408F4689B7 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, int32_t ___1_change, const RuntimeMethod* method) ;
|
|
inline void Action_2__ctor_m43B5BA62418FAB32773B12CEFF46A46855BF5B10 (Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_2__ctor_mFC80A1D3B6BA1009B9779F59B49347FEEE827FB6_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D InputSystem_get_onEvent_mADCC1DBC03BC468ABF3AF7FB9BF2A0D9E1740510 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D InputEventListener_op_Addition_mE4193B2988A4BA5E50D618112E188CEFAB5B6AFC (InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D ___0__, Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___1_callback, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_set_onEvent_m8FD1599425D2F0408F6001E4D1663D53105D7F21 (InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_RemoveDevice_mBA895DEE9FCFC53AC9040DE72860D95ABFB5E858 (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, const RuntimeMethod* method) ;
|
|
inline void ArrayHelpers_Clear_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m161A17E48623F7125BC715564D82E7095F4400F1 (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* ___0_array, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5*, int32_t, const RuntimeMethod*))ArrayHelpers_Clear_TisRuntimeObject_mD246077595F4EBA6BA7300CCC202A02E600CC87E_gshared)(___0_array, ___1_count, method);
|
|
}
|
|
inline void ArrayHelpers_Clear_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_mBDC379B2F0C95AC42366BF126E7830F8AADBE0EC (ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7*, const RuntimeMethod*))ArrayHelpers_Clear_TisRuntimeObject_mFBB06420854F2087695DC1B4C87E69C2748D43A2_gshared)(___0_array, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D InputEventListener_op_Subtraction_m1F22563B9F83525FF3046236D787006F931913FA (InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D ___0__, Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___1_callback, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputState_get_currentTime_m9C0661AF1D774AF749A9B9207EEB6090D77AA364 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEventPtr_get_time_mD2C90C66C334E767E2F9B5B9A3711B500027B185 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
inline void InputSystem_QueueStateEvent_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_m75F650C67ACBF9096BDC8A3C1EC71482303F92EF (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 ___1_state, double ___2_time, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97, double, const RuntimeMethod*))InputSystem_QueueStateEvent_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_m75F650C67ACBF9096BDC8A3C1EC71482303F92EF_gshared)(___0_device, ___1_state, ___2_time, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E (MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gamepad_MakeCurrent_m78B45631A8F9D2189CDABC3E67C1E849166748BA (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_current_m93FA2FA12D03CECB36DB8B0305B863BC19FAA2B7_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gamepad_OnRemoved_m3B43B26E9BA2751108CFAEAFD9581F2C674EF6AF (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* DualShockGamepad_get_current_m14AB6A8C82AC70EDE7B1FF5E1FEAEC501F0CE325_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gamepad_FinishSetup_m8D639C19146BC2138F31DCEA1B03BC0B4390DAC7 (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
|
|
inline ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* InputControl_GetChildControl_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m37B3269440E54D5C867480E334993426D47F9044 (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, String_t* ___0_path, const RuntimeMethod* method)
|
|
{
|
|
return (( ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* (*) (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E*, String_t*, const RuntimeMethod*))InputControl_GetChildControl_TisRuntimeObject_m5E81C3A512C444426EB15097CCF01D73CF1C614C_gshared)(__this, ___0_path, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_touchpadButton_m85056E5E5A92D34208235FB409393690A472601D_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_startButton_m29450F01D3AC6A6377DD6820C1E8A19E3FB257B1_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_optionsButton_m1FE2766F3657D92F605EB85A030FE7C89D0DD580_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_selectButton_mE20183D2C1EBD7B7EF87EE29C24E56F1731E85BE_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_shareButton_mE3EF1DF6E0E1B8EFF21AC7DD493CC0494AEC6155_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_leftShoulder_m2522E913D1A9361FE16FE01D717BF49D3B1632AE_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_L1_m53A630A39C6EA91CD8A806D739D51782A7062D8E_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_rightShoulder_m221A61E28BDBABD1B1E51A0E325D9A55BB5E347A_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_R1_m578DFA09EC86DB70693B666AC53AE39E97C6F22C_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_leftTrigger_mE19F2FCA9A7F195107FA0C14293732C0F3075A38_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_L2_m944079645ACBBB274527C169EE5670D1ED142616_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_rightTrigger_mD1587CDED475B78A56BE8B6FC493EDA08AE6F3A6_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_R2_mCCFF64B80DC2E5DA8920AB9B9A9CEB61AB8C0079_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_leftStickButton_mEACF0F726788DA012905DCD7A44AA88DF91593ED_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_L3_mD8C16E42401A03362170FB255D0F2E0A70F36531_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_rightStickButton_m9A8377135FDA7EA2EA6219A715092F0E62ADBC55_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_R3_mF4834C8E3EB76B2C7C91F874D6022770604A5CDC_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_capabilities_mEBF36ED5663709FCA039D1AEA87F6B6C404E76CD_inline (InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_interfaceName_m087CF7E83BAF1E6C6375B3F16A9FAA3A71717D07_inline (InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 HIDDeviceDescriptor_FromJson_mEEA8B6998BD6C495ECD4B184C678106ACDFC0A73 (String_t* ___0_json, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_hidDescriptor_m1F5D94BCCA35B4EACABD048AA7E097E24EC6233B_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Gamepad__ctor_m91DEC6DDDA705B1A49C7964389CA1880CBFD9748 (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method) ;
|
|
inline void InputSystem_RegisterLayout_TisDualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_m617DEC2AD87CDA6CA84F62125F4B1041BDC62777 (String_t* ___0_name, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___1_matches, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (String_t*, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C, const RuntimeMethod*))InputSystem_RegisterLayout_TisRuntimeObject_m8B0CF2E33066D31E034869BE401DD185E2F04011_gshared)(___0_name, ___1_matches, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SampleFrequencyCalculator_set_targetFrequency_m5C9C189395BF81AF093FC0B3AA3B4B3451F83796_inline (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SampleFrequencyCalculator_set_frequency_m57646D030EE810C64AB8E041112CEF1E1170ECB9_inline (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SampleFrequencyCalculator__ctor_mFC0C981C7D16F99D4BE8629692EA42AFB360E9E5 (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, float ___0_targetFrequency, double ___1_realtimeSinceStartup, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float SampleFrequencyCalculator_get_targetFrequency_mBFFBC93F691EFBFD6F2F655DD6A88B8A3B6BA013_inline (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float SampleFrequencyCalculator_get_frequency_mBADC20906701E18082B8E0EB05164ECB56CF23D9_inline (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventPtr_op_Implicit_mDCFA11963BDC8B0D5C92A516EBE7F9C7A0B15191 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_op_Inequality_m4C6AF343B2428722DAD6B7BFCD1FF40BEC63AC53 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_left, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___1_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SampleFrequencyCalculator_ProcessSample_mCA606CB6D52E3D92C33D19C91BDC42F980368573 (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_eventPtr, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Time_get_realtimeSinceStartupAsDouble_m0CACE59E6CF8330D285551AE87951FF6749975B0 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SampleFrequencyCalculator_Update_m2E66874BDF7633F10EEA268384BD9AFD40625F7C (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, double ___0_realtimeSinceStartup, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SampleFrequencyCalculator_Update_mAE08DDD5611304CE2F17D828A9E7BDEE19A61AE8 (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualMotorRumble_set_lowFrequencyMotorSpeed_m9872E9EFA5CD0E26E2E9F55E759D5B17FD0BC843_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualMotorRumble_set_highFrequencyMotorSpeed_mBE076CAE63721822E1B23B6CBB52836CBEAF3107_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline (float ___0_a, float ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DualMotorRumble_get_isRumbling_m90556798E2C7AEC56E8AA6AA434095916F1127AC (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E DualMotorRumbleCommand_Create_m92353364BF75EDF5FBE7AF9ED0F136F4E74538A6 (float ___0_lowFrequency, float ___1_highFrequency, const RuntimeMethod* method) ;
|
|
inline int64_t InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* __this, DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E* ___0_command, const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E*, const RuntimeMethod*))InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A_gshared)(__this, ___0_command, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_PauseHaptics_m3BE8E2167226A3C37799E19743D4F8DAD232E31A (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, float ___1_lowFrequency, float ___2_highFrequency, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_ResumeHaptics_mECD40150D2AAB95F7FA25BC7BD146E0C28B76E56 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_ResetHaptics_m0589143821BBBA3DEA22D4F88027063057FBADA5 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp_mEB9AEA827D27D20FCC787F7375156AF46BB12BBF_inline (float ___0_value, float ___1_min, float ___2_max, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED* __this, Il2CppChar ___0_a, Il2CppChar ___1_b, Il2CppChar ___2_c, Il2CppChar ___3_d, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DisableDeviceCommand_get_Type_m279789BEABF7A0BA1FBCE49C29E7CCD3B935C0AF (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DisableDeviceCommand_get_typeStatic_m41138589716445D66360A9FB80B7B5BB451F4E74 (DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_type, int32_t ___1_sizeInBytes, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableDeviceCommand_get_Type_m3DFF7F0720AAB0A46EB8AE6FDF58E488B7F98CD2 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableDeviceCommand_get_typeStatic_m54D173AC3F000FB3483D520998D28FFFA9F25599 (EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnableIMECompositionCommand_get_imeEnabled_mD0CCBB77A6E533FDF6DE036CBA010D0CA0E9A3DA (EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableIMECompositionCommand_get_Type_m0E7ACE45765FA864C8349CE9AD47419B24A70E4A (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableIMECompositionCommand_get_typeStatic_m6F293C39B7AC6A01CCD65F74029AFB07189A588A (EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InitiateUserAccountPairingCommand_get_Type_m805213E28C12AA64A1F8F57CAA590E4FFB7BFC41 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InitiateUserAccountPairingCommand_get_typeStatic_m7A6A7BEE8AC36FB548934F7D6E8DDE333D9BEC50 (InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputDeviceCommand_get_payloadSizeInBytes_m65597C869B0A3AF1D1B928605A06216AB6897D11 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* InputDeviceCommand_get_payloadPtr_mCE339E6458B03F15067C3ADE7D22EEBAE4D29982 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, const RuntimeMethod* method) ;
|
|
inline void NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, int32_t ___0_length, int32_t ___1_allocator, int32_t ___2_options, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, int32_t, int32_t, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_gshared)(__this, ___0_length, ___1_allocator, ___2_options, method);
|
|
}
|
|
inline void* NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_nativeArray, const RuntimeMethod* method)
|
|
{
|
|
return (( void* (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF, const RuntimeMethod*))NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2_gshared)(___0_nativeArray, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputDeviceCommand_get_typeStatic_m50C7C954EE7CA7B20757F2874C08D0FFF675ACE4 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryCanRunInBackground_get_Type_m63C4E82B05DB1FE6BB0DAB47C2DF931FEBA735D0 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryCanRunInBackground_get_typeStatic_m18F466F00C744F3136183AD33D6E562F161A594D (QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryDimensionsCommand_get_Type_mB8D7CB73A6F3D66517290078A530808988C9A3A8 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryDimensionsCommand_get_typeStatic_mDCF9B62F3BF35868211DAC4674B20B649F199141 (QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryEnabledStateCommand_get_Type_m5A6F1768EA6D487A118F2861AE4ED9485F62ABD5 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryEnabledStateCommand_get_typeStatic_m4CE8116E064CBD6A470B8F043F1869E362216744 (QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline (intptr_t* __this, void* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringHelpers_ReadStringFromBuffer_m2D73BEC46047561991586041C6195B9CC776DA0D (intptr_t ___0_buffer, int32_t ___1_bufferSize, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryKeyboardLayoutCommand_ReadLayoutName_m69F50E3BC9B964A8EE56924846F0292AD4330FDE (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringHelpers_WriteStringToBuffer_m3224AFFDC9D2D04E9112B8812CDEEC6FE363D66F (String_t* ___0_text, intptr_t ___1_buffer, int32_t ___2_bufferSizeInCharacters, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryKeyboardLayoutCommand_WriteLayoutName_mBB1067A2E35ED994C8AAF1E8C250FADBAA4AD6AE (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* __this, String_t* ___0_name, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyboardLayoutCommand_get_Type_mD6B795EB9B588A1F1A3D3147A3D2CF67EFE37857 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyboardLayoutCommand_get_typeStatic_mF9D6B9C2C598C7AA595CFC38B830112CF6389C0F (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryKeyNameCommand_ReadKeyName_mE3442B7FD9CC5B3889A5908F2F87F215FF70A61E (QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyNameCommand_get_Type_mF39C67F95A7EE638AEA573691AABEF1B38F7E089 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyNameCommand_get_typeStatic_mF2D528451EEEC0E93933CF425037F4851EC1ECB3 (QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryPairedUserAccountCommand_get_id_mB52BF2DC2C2B3C63661056A1F9AAB47C0E7CDFCB (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, String_t* ___1_paramName, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryPairedUserAccountCommand_set_id_mCA44A798D70E7F0EB7BA347652F4341221A5BDAE (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryPairedUserAccountCommand_get_name_m405A615F44272337724373D19F46B1258C18C856 (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryPairedUserAccountCommand_set_name_m4C8CBE6D10186933B46DB10B494E21213805B37A (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryPairedUserAccountCommand_get_Type_m44803FA194663CC41EEE3C7EF7498C07992AFED5 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryPairedUserAccountCommand_get_typeStatic_mD6966C188315C0D8C6AF75D21C3FA053ED4EF3CC (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QuerySamplingFrequencyCommand_get_Type_mA94B1820A73693A4F09714A60DCE94FD47727984 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QuerySamplingFrequencyCommand_get_typeStatic_mC6E13673C19A972E625C2B37AD3881354663F096 (QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryUserIdCommand_ReadId_m3BB974A34A9905F046569754836F889575C349AF (QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryUserIdCommand_get_Type_mDC11398A8251D3A0A5C51FFEEBF3537FC8771964 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryUserIdCommand_get_typeStatic_mC5794F2A38D12A8E38BD4EF3B30B6604AE183793 (QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestResetCommand_get_Type_mBFCCB98A93084DE3F0D4D1C63EF39D994639862B (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestResetCommand_get_typeStatic_m682DBD857C38B26B39B9679C35C98A2AE5B3C0DC (RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestSyncCommand_get_Type_mED04D668D73150BA972012E47FFC6E4E91C2E7D7 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestSyncCommand_get_typeStatic_m27687F65BCDB472A0D9BE03B1D60C602913172A2 (RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 SetIMECursorPositionCommand_get_position_m50765F077E0164B5205064B7A1B141F2C81C085C_inline (SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetIMECursorPositionCommand_get_Type_mB8A471D0593D8F1497D2280D4271B5A2B56783CC (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetIMECursorPositionCommand_get_typeStatic_m99FCCDF1E9DA6575073F31F84C0B670340281D02 (SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetSamplingFrequencyCommand_get_Type_m31A3BC9DC7519D60876AD367992CAF8642960739 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetSamplingFrequencyCommand_get_typeStatic_mD878C128408D8125024D0C962C3AE58BBF44780A (SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED WarpMousePositionCommand_get_Type_m96B4AE75DD0E2509966E4C723E5B3C5CA6F3135A (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED WarpMousePositionCommand_get_typeStatic_m7C173947D66A532E7F49ED7B48898BEB1529E56A (WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GamepadState_get_Format_m10C6A4E403B15DB3F5EC44F8D825D00FC19F3A2B (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GamepadState_get_format_mF617D1EE8D57686B6BAEAA2AF8BF1F6BDAC5E1CF (GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GamepadState__ctor_mD69F20EFA852648DFB4A97AC8B91692FBA793373 (GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* __this, GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* ___0_buttons, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1 GamepadState_WithButton_m61BE4689DE621A285913BC0BD69D0560DBBD91DF (GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* __this, int32_t ___0_button, bool ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DualMotorRumbleCommand_get_Type_mAD127730406B6F876EDEB19A8761419054E40ED7 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DualMotorRumbleCommand_get_typeStatic_mEDF2C976B44C2BB0C0C0271CC56391992AF37C2D (DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED JoystickState_get_kFormat_mB35BC874893BA099ACA62F6A7B49994988DA221A (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED JoystickState_get_format_mEDDE745E9821149E8287DA5EA621814B832088E2 (JoystickState_t03D95BB2BA3497FA34F7F2C395126FE079DBAD23* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState__ctor_m154082608F16AC4438753E4814D9BA61AA3EB2D2 (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, bool ___0_IMESelected, KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* ___1_pressedKeys, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState__ctor_m06346BD84C3DE0C9392359B3ABC584E7B0ED9E0C (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* ___0_pressedKeys, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_MemClear_m6C4377117084A11A667A567BC2F5E606A632A7C1 (void* ___0_destination, int64_t ___1_size, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryHelpers_WriteSingleBit_m6FB3C85EBB9DDA18339E225887E933F17A7408EB (void* ___0_ptr, uint32_t ___1_bitOffset, bool ___2_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState_Set_m0F5B5B6EC7F702F695F0F03B71E19EF450EC3D9C (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, int32_t ___0_key, bool ___1_state, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemoryHelpers_ReadSingleBit_m2195F4D85BE5077C89B8C6DBA2C5A2D25F83CD57 (void* ___0_ptr, uint32_t ___1_bitOffset, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool KeyboardState_Get_mD77C19D6F340B7A06BB9C33058A7F8BD65BDBB44 (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, int32_t ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState_Press_mB5882428AD8FD1CCD5A238215551DFEC3BA577A0 (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, int32_t ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState_Release_m779EAACE3BB019436503948C3DEBAB7F7B7BCE1A (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, int32_t ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED KeyboardState_get_Format_mE0B5DE1F97B5462ACD54D45ABD419E7B5C6B824C (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED KeyboardState_get_format_mD8CB0AA30DC616A09DC3152ED0342B2945DC43C9 (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1 MouseState_WithButton_m97B000A09778AED62A2DB09058C31318CFDA479E (MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1* __this, int32_t ___0_button, bool ___1_state, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED MouseState_get_Format_mF26144ED65F47F6A3DE5E19D5C8A21F5D1A840AE (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED MouseState_get_format_m4E1CACEDD70E431F2B4F122FBF9790D61523E160 (MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144 PenState_WithButton_mE073BEA72B2BF7B87BC1E31B171A71207A876652 (PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144* __this, int32_t ___0_button, bool ___1_state, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PenState_get_Format_m9259B29BFA0F5EE072663FDEC63C32B852B128E8 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PenState_get_format_m8B58953CF86A69E6AEAD9670C02822A400FB2DCF (PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PointerState_get_kFormat_m6C5521A8BDE6EB0B106686BB3E1571C96E9B2741 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PointerState_get_format_mC5180FCEAE996C3D5E43E1A77174886E49F4EBEA (PointerState_t3BD79772D06D5CC227EBE757B27F8262EB46A919* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AccelerometerState_get_kFormat_mA36F0610529BA98558BEFEEA1CEB010A667C7664 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AccelerometerState_get_format_m8417A35B21D4D21382BAA3E099EB81FA6A681290 (AccelerometerState_tBC7006B5431DF59DC2A9AF2E08FD06674EA8372A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GyroscopeState_get_kFormat_m4EA13F15BEBBC929DB6AFAFE2DB12D6DC1E51E0D (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GyroscopeState_get_format_m04C008EEC0A8E98488D68D7DB508D03F4D40CB6D (GyroscopeState_t6C1BC700557D943111882E3634CA7411EE531B87* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GravityState_get_kFormat_mA940D0FAD178A87388C4A75F88D3DB41B2842662 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GravityState_get_format_mACAC4174A37C72A4229268A765EA95B60CD1EE1D (GravityState_tD607A716F9E0D00477CECC5C019929633E66ACFF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AttitudeState_get_kFormat_m2CF2884AE8CBAC5F08B7A4229B4190CC48D04552 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AttitudeState_get_format_mE181225DD179C3C77FBE1996F22C2B858C2620A8 (AttitudeState_tE01F02CAD17A08F2D35660E017437AC72BC45745* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED LinearAccelerationState_get_kFormat_mBE3CCC46BAEA98A317E165C1F0E8DA3E1FAB1775 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED LinearAccelerationState_get_format_m082958E987DDE7BCF30BEB84C1A2C8F2EB0D2A8A (LinearAccelerationState_tD14025B444097A9A3CA0B3ADBA153C775A316F24* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isNoneEndedOrCanceled_mC2000BF710D7EDFC3590D18253215FCA67E3F464 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isInProgress_mF14BA2786F207B08DA487C4FD9F010F85107D902 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isPrimaryTouch_mC8E83D45028722D5456CB65A19C9DBB2B1DC8615 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isPrimaryTouch_m6BB43521B2EDD8EFD435C5890590A51DE183AAA6 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isOrphanedPrimaryTouch_m692F6F3BB4886A4ADC7578416BDA2CF43190CEF5 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isOrphanedPrimaryTouch_m2610EBB9B4DB8D920EC53D3785CD88C1537957D7 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isIndirectTouch_m5059A78582DBB4534309A43F49BD7DDC86DCB912 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isIndirectTouch_m76D60019EA3E6AE3D32D41D7918E2F4D874D1CF4 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isTapPress_m76B3B03716530BC461CCDEE942D80B797A82D1FE (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isTapPress_m42BC799213916CA303DCE59FFCF3F39DF43F5642 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isTap_m31B4AEE4DC8A6CE2174728244C0A1D1539D30B15 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isTapRelease_m8CECE48CDFD6955A73D24CB052BF1BD8E506E178 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchState_get_Format_mE473D3097A050EF38348C8E25E6C5A19D0C034C0 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchState_get_format_m27F8D5F420FE4D7F11C4676B5FD94FAF08586AE5 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TouchState_ToString_mEA29180E6539B2C38587D293C96E5E56728E661D (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* TouchscreenState_get_primaryTouch_m2F7795A41B5BD5B36686E513EB0626BEB94F03FB (TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* TouchscreenState_get_touches_m58B38F7D585C7D053B2D6C9B17B9AB36F6E6D14F (TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchscreenState_get_Format_mF9C584A0C19B90EBBFC257022A48BFC56BDE6E95 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchscreenState_get_format_m599BFB770E5FFC16A3AF0BBD32473D89B9F6F0A0 (TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double ActionEvent_get_startTime_mFC441D783C0FF36A0DCF844F6CB4C51F7B507DC9_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ActionEvent_set_startTime_m421136E6914BF478860D9A2A4C302A8E5C0128F2_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, double ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_phase_mA5D0A72C4C5DD7D0F562AAC03812667D7D467AC9_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_phase_mF8ACF6B2396E2351BA691A53450A4013BD011A9F (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* ActionEvent_get_valueData_m90D8EEC0EBFC775772BCF3FCB60FCBFA282D3E4C (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_valueSizeInBytes_m76C6A128C9C3E3747FE7917EA1760B74647FD19C (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_stateIndex_m9B25D23E723CFD517FEA65A61D0D3587E4205450_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_stateIndex_m6A5B88C7CD64D3BC75B8211484AF25280C5E520B (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_controlIndex_m6AD8C96BCD3A38D6FFC823F98673549CAADB1715_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_controlIndex_m2AC91D48B3CCA9C73415A1F85648CB93B05711E7 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_bindingIndex_m95BC43710F538E6E696644A9CABD5EC4FAA97400_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_bindingIndex_mF620F2E875C9E6EC9B51271D6E8F469C4E855708 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_interactionIndex_m5609EC04CE26D86650CF0829F907D478A209286E (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_interactionIndex_m8369A717B14FE2DE5CC74F55A1764EFE2DCE0546 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ActionEvent_ToEventPtr_m6CED2BDDEBD88B4CC9E6D9A5500CBBC46867AD61 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ActionEvent_get_Type_m71EE0E777186515C32D7710F110D746C0EE47DDD (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ActionEvent_get_typeStatic_mDA18771F922C2C34EC407D7EA68A8735E516819D (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method) ;
|
|
inline bool InputEventPtr_IsA_TisActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444_m2F2591754A98F71A8E950E17F45153089F5B2D10 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*, const RuntimeMethod*))InputEventPtr_IsA_TisActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444_m2F2591754A98F71A8E950E17F45153089F5B2D10_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8 (String_t* ___0_format, RuntimeObject* ___1_arg0, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644 (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t DeltaStateEvent_get_deltaStateSizeInBytes_mF3F45D7A54B74C0B5403C5B4A6B42B31A78331E2 (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* DeltaStateEvent_get_deltaState_m02220C78569A9CC26843EB8A3AF289019195DA9E (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeltaStateEvent_get_typeStatic_m78864C357A995118D8E55ABE491ACAF3ED2F846D (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeltaStateEvent_ToEventPtr_mF514DA9E913E367842C4FE6E87768C406A6ACA2C (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method) ;
|
|
inline bool InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*, const RuntimeMethod*))InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* DeltaStateEvent_FromUnchecked_m88C0138A7910009A5B0BCB83EEB0A3483E23613A (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_ptr, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputStateBlock_get_format_mA393354EDC4A58DDCBE0990902A49E0A22F15F86_inline (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_bitOffset_m3165625FF638183247012307A8AC012AEA3D1143_inline (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_sizeInBits_m38BFF704420E74EA4F7B85DC24DD3AAD810E8197_inline (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_alignedSizeInBytes_mF360E8CFBEE9BE05FC7DFA3533E069A5A96827F5 (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t NumberHelpers_AlignToMultipleOf_m44B66C972BC1F508B9022564F265D1AA6A001AAE_inline (uint32_t ___0_number, uint32_t ___1_alignment, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_type, int32_t ___1_sizeInBytes, int32_t ___2_deviceId, double ___3_time, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceConfigurationEvent_get_typeStatic_m28C6393CDEE9100331345A72749DBA842080C362 (DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeviceConfigurationEvent_ToEventPtr_m26A12C8D7BF50B9AF36FB0E766AFF8F3811AC613 (DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceRemoveEvent_get_typeStatic_m59A7E2127F8EFF45674F801535EC27E3032CCDA0 (DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeviceRemoveEvent_ToEventPtr_m72F38FDBB8F566525666CF67430E68B03EFEEAD3 (DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceResetEvent_get_typeStatic_mE19FE21C422385DCF217144DFDA30FB09886E88B (DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED IMECompositionEvent_get_typeStatic_m89F47A231652E2AF8A050C95C8E4795838787531 (IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMECompositionString__ctor_m3E5D1159993102E7687C901BCDB3277EC23C2619 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, String_t* ___0_characters, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t IMECompositionString_get_Count_m118217BDAE905FA6F01D5F61D3D1A85319A5AA1D_inline (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar IMECompositionString_get_Item_mAD02BEFBDF102BC3A61859E112F62473431FD9C7 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478 (String_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m3F8794FEB452558B8A68C65E1F0B603B3D94E0E2 (String_t* __this, Il2CppChar* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IMECompositionString_ToString_mC08E0929E54A40011881459D00A154F17FD3B373 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6073ACAAEF55A25B11BB1120B7C2F24F5807DE9C (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E ___0_compositionString, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* IMECompositionString_GetEnumerator_mF49F36051CC98738D33E385073C4CA47FA4A64DE (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* IMECompositionString_System_Collections_IEnumerable_GetEnumerator_mEF9DC84BC5B93C39EAD3A9F4AB51627CE4F82C63 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD35FCA6EB88EDE4D99E482FCF3338CBD78C327CE (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_mEE829E33AF06A2FEDB9994AFBF5BCFC0FF7ABBB0 (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4FBC50139C59E472BF6C0544FAA09858F98D860E (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_m52C5B2EFD3B6598435E54801806413118B0C7F40_inline (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m86A42D2AB14107F270FCE9B0D8C40254A62572AD (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FourCC__ctor_mE761C8779BB6DC85BA1662DC9ECEC39D62ED9A56_inline (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED* __this, int32_t ___0_code, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEvent_get_type_m43737750FDCCFDF4FC208C9AFFCB5E9D2672733D (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t FourCC_op_Implicit_mC296B4E8C4929EACBB7066BB9856C116EE082A7B_inline (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_fourCC, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_type_mA12F3F32108A0B88A4EE7BCA8AE7F2972F8E9740 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt16_ToString_m57629B7E74D92A54414073D5C27D6827C93A4DD5 (uint16_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, uint32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEvent_get_eventId_mD480444BF28136F8FF8288C83C4489B9A6B992A0 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_eventId_mD95C6CF817314B3C83EA67E5B7A2898ADEE8BE74 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEvent_get_deviceId_m42DC07D2AB46922D79E0A3B9E31FA31E0FD90B6C (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_deviceId_mED2CE48AD37BA360710E9C5B48D46D2A18A4BDDF (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEvent_get_time_mD4A6C01A2B7BFB9ECAD089197C573886E3F70ADB (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_time_m210F97B604C0EEB53FC6CC4D57A10373FC081A0F (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, double ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEvent_get_internalTime_m6EBE99BC7B0CD35B2B3670A9B5DE003AB3FDA708 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_internalTime_m914C4E1111E2A886D56B9D0A888ECE911F894980 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, double ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEvent_get_handled_m354E53F68FA517142B4A53287BF738545F792468 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_handled_mF2F5A1872BA2D7F585F1275825B622342EB93A16 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputEvent_ToString_mA533C298897220B7CC970408EDBAB35D9870B27C (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventBuffer_Contains_mEF30027B0EE35896B8D4FA411A32F2EA3721B54F (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeUtility_MemCmp_mA0E0E1A93F715105E7B576F1603DCAB37717A5EF (void* ___0_ptr1, void* ___1_ptr2, int64_t ___2_size, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputEventBuffer_get_eventCount_mD120699C5A1CEBA76C878BC37DB2E39458F56C8E_inline (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
|
|
inline bool NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, const RuntimeMethod*))NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventBuffer_get_capacityInBytes_m880911F29058AFF745E74D509EB224261374089B (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
|
|
inline void* NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_nativeArray, const RuntimeMethod* method)
|
|
{
|
|
return (( void* (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF, const RuntimeMethod*))NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_gshared)(___0_nativeArray, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventBuffer_get_bufferPtr_m7C5E03ED8F0433B3CD4F019DFADDE3983472DACB (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
|
|
inline NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
return (( NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, int32_t ___1_eventCount, int32_t ___2_sizeInBytes, int32_t ___3_capacityInBytes, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer__ctor_mE2DE130D019FEE1A6E4DE07D0EDA233F7008D50B (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_buffer, int32_t ___1_eventCount, int32_t ___2_sizeInBytes, bool ___3_transferNativeArrayOwnership, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, int32_t ___0_sizeInBytes, int32_t ___1_capacityIncrementInBytes, int32_t ___2_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_AppendEvent_mAEC914B9C5C5534378199FF5C35D7EB57215E011 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, int32_t ___1_capacityIncrementInBytes, int32_t ___2_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t NumberHelpers_AlignToMultipleOf_m1DD6F7938F5F4EA99168EFE5AAD4604972F2FB6D_inline (int32_t ___0_number, int32_t ___1_alignment, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t NumberHelpers_AlignToMultipleOf_mA09DADDCE6E50FA990B046BD74822886B94BFA6D_inline (int64_t ___0_number, int64_t ___1_alignment, const RuntimeMethod* method) ;
|
|
inline void NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, const RuntimeMethod*))NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_Reset_m9E41B3CE9C7556C62AFC55772D7D4FBA8A99360B (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEvent_GetNextInMemory_mC3AFC8F09360ED6791DCF32F2788143DDF139E21 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_currentPtr, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_MemMove_m4799FAA9C4BCFA1AEDC6ED01BB9A6DF657C4CEE3 (void* ___0_destination, void* ___1_source, int64_t ___2_size, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_AdvanceToNextEvent_m2A711A2AA87D26A027FFE4EFD01EBD296EE0B283 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** ___0_currentReadPos, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** ___1_currentWritePos, int32_t* ___2_numEventsRetainedInBuffer, int32_t* ___3_numRemainingEvents, bool ___4_leaveEventInBuffer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m7E8F2DD4EF823AAE6BED80246AB47FA28D6CBF25 (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE ___0_buffer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_GetEnumerator_m8E92BD380FD5C4F755EA09A6F29503A96063B8E9 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_System_Collections_IEnumerable_GetEnumerator_mFBF67C909C77C7FF68058E221AC01ED74CB2D340 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_Dispose_mC0CD0CC5F58859A221221F1A3FAE84B8EFB5CFF3 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
|
|
inline void NativeArray_1_CopyFrom_mCF4D43C37F14A2904C5BA14973DDE501D965DA89 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_array, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF, const RuntimeMethod*))NativeArray_1_CopyFrom_mCF4D43C37F14A2904C5BA14973DDE501D965DA89_gshared)(__this, ___0_array, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE InputEventBuffer_Clone_mA9E1A893CAF0F4715708C5F20FDEA611F318433E (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_System_ICloneable_Clone_m561F47611001D3FD27F0EFE00F6B35419588FE8E (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_op_Implicit_mB86DFF1D9054A0670DBBDFE4C3A11422F60EB209 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_eventPtr, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mC216F4A5B10FB25897447B0160DFA944959645DB (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m15A8D8A03F18E0BBFEB037431DF8AEA7DD13AB9A (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mAA913AB7EB32CD2968F0CE0F6419415E4DB4CC61 (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 Enumerator_get_Current_mA52496728906BA25D2755DD0668DE3D249015C6C (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m165767DDDDCC3984D08238C5201A8D4230A18364 (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149 (RuntimeObject* ___0_obj, bool* ___1_lockTaken, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_add_onEvent_mFC20DA985A46A223DE9A1ADFFD39A5DB0083130C (InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* __this, Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputManager_remove_onEvent_mA84D2D17A18F63251F21D05802E2F75BC811E8DD (InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* __this, Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObserverState__ctor_mAFCE13C0DF1AE39D4F4E72779FF84824706A48B2 (ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* __this, const RuntimeMethod* method) ;
|
|
inline int32_t InlinedArray_1_AppendWithCapacity_m7D120AE2B1401CD22AEE9DC9662CCC0DC84BBB60 (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* __this, RuntimeObject* ___0_value, int32_t ___1_capacityIncrement, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5*, RuntimeObject*, int32_t, const RuntimeMethod*))InlinedArray_1_AppendWithCapacity_m9862A91090391A77B2DCC2428616248FC176C180_gshared)(__this, ___0_value, ___1_capacityIncrement, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisposableObserver__ctor_mAF66BFE27ECE1AFC1C6B2E29B29AF9359C25926F (DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventListener_Subscribe_m3ADB3B6392CD85DA61E506AA7D698D4F2E7585D0 (InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D* __this, RuntimeObject* ___0_observer, const RuntimeMethod* method) ;
|
|
inline RuntimeObject* InlinedArray_1_get_Item_m9028E5429BC2E916894F7F533B18E2D628C53CD9 (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5*, int32_t, const RuntimeMethod*))InlinedArray_1_get_Item_m36DBC031029BD3E52C31E50BE0B84DA3990A6021_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline int32_t InputArrayExtensions_IndexOfReference_TisIObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_mDF245036F6C353CB2B70C5860F90BA16C961E751 (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5 ___0_array, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5, RuntimeObject*, const RuntimeMethod*))InputArrayExtensions_IndexOfReference_TisRuntimeObject_m8D6AA5D90FA43E1196C230ECEB238EBDEFBFC677_gshared)(___0_array, ___1_value, method);
|
|
}
|
|
inline void InlinedArray_1_RemoveAtWithCapacity_m8C65A9998195061436978BFFC7624D99DFAA3976 (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5*, int32_t, const RuntimeMethod*))InlinedArray_1_RemoveAtWithCapacity_mE12D4976DF40F114BA2B56DE9EA9C66F248F466C_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_get_handled_m6981E3A01858EB383B2420DA720DE82BF7A8ADFF (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_get_id_mED485DFF0A720B0A27201BAFD554D42A8FE527FB (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_id_m8CCBE3CAF92578F56613E99AAA4334BCCFCFD40B (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_get_deviceId_mD8B68EDC37D90A69EE67A47B3E17F4D80D4620D3 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_deviceId_mDC5B90109CDEECE63A5F1310379DB8B1B31D2B97 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_time_m6058E3EFFAC41CA39B2F16CB8F184F03CDEE6E13 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, double ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEventPtr_get_internalTime_mB0A20BAF50AC9842691B0495A766A18B05CB4781 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_internalTime_mBD0B465C6882DD13F5FA3AAE487C0FA8A68E3810 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, double ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FourCC_op_Equality_m3D556D9BE044419563A7F44DCA15F1EB30656D4C_inline (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_left, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___1_right, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* StateEvent_FromUnchecked_m2735488B081D9C8E972D4F2B6D80C044599BFB81 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_ptr, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputEventPtr_ToString_m0A7FB7472629B3197AEF7DEEE9DD69A4A6989BC6 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventPtr_get_stateFormat_m664BD225A799818C59844F7749CF52A0F588D9B4 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
inline bool InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*, const RuntimeMethod*))InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* StateEvent_From_m673CE00ED44EED4E56EF99C685FF0636E5B11F4D (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_ptr, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t StateEvent_get_stateSizeInBytes_m07E8E8D19DA4D9B58A23DC19680794764AE8FA21 (StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* DeltaStateEvent_From_mFFEAD69A307D75C84B87E58E644B1F16E1B7EA48 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_ptr, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_stateSizeInBytes_m4C0F58AF9A43543102B597F3ACDCAED40D2B95AB (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_stateOffset_mDB68F2BF9E2D3B80A98ED6B8DE02F1C3C55D69E4 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventPtr_Next_m401E057F7E6DAB9468F04D705173539E8876809D (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_ToPointer_m2DE1A988A02CC6E632A5262095B719513F166CA6 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEvent_Equals_mF8510591E2F00D7E016EA452DA26981FEA81AEAD (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_first, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___1_second, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_Equals_mCFEB98EADAE1C3EAA45E6C0406EC31CEEEB0FC92 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_other, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_Equals_m4B42D08FF9450733C111417BC49A24257F211DD8 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_GetHashCode_m97B532D8E6CD524F78323A2F079F1267DB296D1E (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool InputEventStream_get_isOpen_mEE33B97DA48F80B43BCE58D08FCAE51958E6459D_inline (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventStream_get_remainingEventCount_mFA68F507B5BF80A3E88C89C9DC973B17B61E2CE8 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputEventStream_get_numEventsRetainedInBuffer_m4656DA6E9272986459D283EE8B8F74773C2D130A_inline (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_get_currentEventPtr_mE13C48ED3B452218CF8517F2DDDF0ACDF2C342B1 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventStream_get_numBytesRetainedInBuffer_mF899CE61DF44A43CACFD8BA969EF31A6BDAA6BDF (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream__ctor_m52AB2424A03D286B202C0E69BF8392C3AFB2D604 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___0_eventBuffer, int32_t ___1_maxAppendedEvents, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_Close_m1111A4CFB8F92C63C3A0138A92D2B74F3722D691 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___0_eventBuffer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_CleanUpAfterException_m1025CADD374BCE7F4A96D5A6CD78AFAB3F253011 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_Write_m1F494325BF10678460D41D7A07333DB17F64487E (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_Advance_mD8B6B308674E69472F69AA65F3F1D49FBE7A13F1 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, bool ___0_leaveEventInBuffer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_Peek_m315B9E86A362176249564F94D8590ECFD4089120 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
|
|
inline ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570 ReadOnlyArray_1_op_Implicit_mDC06E9C67A7376B81251B04CEC9AACE3428C82BE (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
return (( ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570 (*) (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A*, const RuntimeMethod*))ReadOnlyArray_1_op_Implicit_mDC06E9C67A7376B81251B04CEC9AACE3428C82BE_gshared)(___0_array, method);
|
|
}
|
|
inline void CallbackArray_1_AddCallback_m3952EFDAB87F62F3748292CDF90AB17DFB3BC72B (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* __this, Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* ___0_dlg, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*, Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C*, const RuntimeMethod*))CallbackArray_1_AddCallback_mB86EC6413C0AB2C12A88FA8141E3ACDA83DA2C6D_gshared)(__this, ___0_dlg, method);
|
|
}
|
|
inline void CallbackArray_1_RemoveCallback_m193ADCFAE914FE65AB4E5206FA645A02CDC9890D (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* __this, Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* ___0_dlg, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*, Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C*, const RuntimeMethod*))CallbackArray_1_RemoveCallback_mDEEFD791C9654F4EE7C2586BD7DED83F74D897B2_gshared)(__this, ___0_dlg, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace__ctor_m33E71735CDB4DEC9D50431B1DF90CA88BD532AB3 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, int64_t ___0_bufferSizeInBytes, bool ___1_growBuffer, int64_t ___2_maxBufferSizeInBytes, int64_t ___3_growIncrementSizeInBytes, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* File_OpenWrite_m5DD7E6EDB15631A97328297A58E9395B47CFB6AB (String_t* ___0_path, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_WriteTo_mCCAB194CB8909F1BEC6854A0CA39FF87160629D7 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___0_stream, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter__ctor_mF2F1235E378C3EC493A8C816597BCEB4205A9CA0 (BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___0_output, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventTrace_get_kFileFormat_m1ECD7EAD5F4E9E247214316891DE8D4DBA07A40D (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Application_get_platform_m59EF7D6155D18891B24767F83F388160B1FF2138 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventTrace_GetEnumerator_mEB8437D4B14D194CBA901FB9DD034AB0BD1015E3 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
|
|
inline int32_t ArrayHelpers_LengthSafe_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m1A991C46566DF63B412B6FAC8DA4A910E6916923 (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A*, const RuntimeMethod*))ArrayHelpers_LengthSafe_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m1A991C46566DF63B412B6FAC8DA4A910E6916923_gshared)(___0_array, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DeviceInfo_get_deviceId_m1F56DCC1850CA1B775C357DA6D521F04EA74F0C6_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DeviceInfo_get_layout_mC531D6400FCF8EE7CCBE96D0DC9328BC0A5AC24C_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceInfo_get_stateFormat_mA04A926E1277535752AC4117996C3B0F89D26916_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DeviceInfo_get_stateSizeInBytes_mD21A7DBF02B25079F7A1F1482AC2EFE5A86F5C9C_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* File_OpenRead_m6181B052EB0E98D2E18FAC79E7744D766BA4244C (String_t* ___0_path, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___0_stream, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryReader__ctor_m898732FE0DBEDD480B24F6DE45A9AC696E44CC0F (BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___0_input, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOException__ctor_mE0612A16064F93C7EBB468D6874777BD70CB50CA (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* UnsafeUtility_Malloc_mD7BD28D5AE7E4901B225B7DFFE2B568EE7BDC0C9 (int64_t ___0_size, int32_t ___1_alignment, int32_t ___2_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_deviceId_m76EE4AFBA1FA3FFACF2E017498621E66A819DEBD_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_layout_mB0175279434FFE48B744FE2CA4800A1EF24B2D69_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_stateFormat_mFC8581D56C34FFCBF8264CFD61BA12CE56755478_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_stateSizeInBytes_m7D7507BD0D817A86E99E3E44E216B31855ED06B3_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBuffer_m9E277FFE218D8DB8738E10166B8685AAEBF20A56 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, uint8_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, uint8_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, uint8_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnsafeUtility_Free_mFF99F4F02FE7F735AB30D8987D6953E55A2B23E1 (void* ___0_memory, int32_t ___1_allocator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* InputEventTrace_LoadFrom_mB957CED841234BDBFBA2C7D99D89AF0CE73884AD (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___0_stream, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Disable_m58CF35DBD23C6091AEE498C2DFC14E40D51BA8D9 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReplayController__ctor_mFACECC15923550957D306EF31786A98FD37F1F03 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* ___0_trace, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_GetNextEvent_mDF7ED13DD6F42BA87EDE532CAB99BB697C8B108A (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* ___0_current, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Allocate_mDF187B47860B3630C655626FC6745DA0CC927E9D (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m4F5637FFD01430441D557749B2443A43E2E52575 (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* __this, InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* ___0_trace, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Release_m07D09F2199EA12E1DA722C54B84C4E1398081D01 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Clear_mA0F23B4A934720A074AF146EDC4B1758BE341ED2 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventTrace_get_FrameMarkerEvent_m491AB38CDCEED20E74D4717FB782716649FB16FC (const RuntimeMethod* method) ;
|
|
inline int32_t UnsafeUtility_SizeOf_TisInputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5_m0A49629FF4362F75BF20F043E1BA1E7D050C76F9_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))UnsafeUtility_SizeOf_TisInputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5_m0A49629FF4362F75BF20F043E1BA1E7D050C76F9_gshared_inline)(method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_inputEvent, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___1_device, const RuntimeMethod* method) ;
|
|
inline bool Func_3_Invoke_mF26F7E74E56162E7527FB17F4A83729B04772C55_inline (Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_arg1, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0*, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, const RuntimeMethod*))Func_3_Invoke_m0F49563C5B847FD0AA5D523797CC38C4C1476D8F_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Math_Max_mD37411571F0547F04F280D5A8D1F044819AFA597 (int64_t ___0_val1, int64_t ___1_val2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_Resize_m257080DC43F8E24AD91F423FB340139965B1C190 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, int64_t ___0_newBufferSize, int64_t ___1_newMaxBufferSize, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Collection_IsGeneratedLayout_mAD9527FC1D6FA3C9075ACAF2F0215E3B5C0C359C (Collection_t6E9F85AD439CF26269683541C4DC58BA3B6756C5* __this, InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___0_layout, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D* InputSystem_LoadLayout_m51D956618DED057AED89ACBC4068B49BC8764189 (String_t* ___0_name, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputControlLayout_ToJson_mC3A56BD729D0884D80D6215145CBB99BBB3AE358 (InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D* __this, const RuntimeMethod* method) ;
|
|
inline int32_t ArrayHelpers_Append_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m12D0540A13D944AB6449C772B158A7FF8E39A538 (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A** ___0_array, DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A**, DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52, const RuntimeMethod*))ArrayHelpers_Append_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m12D0540A13D944AB6449C772B158A7FF8E39A538_gshared)(___0_array, ___1_value, method);
|
|
}
|
|
inline int32_t CallbackArray_1_get_length_m096E657BAB53406356BABE16CE03C92212CF5A52 (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*, const RuntimeMethod*))CallbackArray_1_get_length_m81CB1E446FBEF126C2096B08E643D63ACDDBD0F1_gshared)(__this, method);
|
|
}
|
|
inline void DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m9DEBF1BF04DA506E770B06B906F6ED856417BC9A (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* ___0_callbacks, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___1_argument, String_t* ___2_callbackName, RuntimeObject* ___3_context, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, String_t*, RuntimeObject*, const RuntimeMethod*))DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m9DEBF1BF04DA506E770B06B906F6ED856417BC9A_gshared)(___0_callbacks, ___1_argument, ___2_callbackName, ___3_context, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, String_t* ___0_name, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48 (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* __this, String_t* ___0_objectName, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 Enumerator_get_Current_m3C388C6F62B1736308A7B1AAB5D1AE461B2D50CC_inline (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReplayController_set_finished_m05C11A4E622954AFDACE0F7AB76E93EEECD6B6A2_inline (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
inline RuntimeObject* InlinedArray_1_GetEnumerator_mF42E560968274088F43D58E20B67D7C313C7980B (InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C*, const RuntimeMethod*))InlinedArray_1_GetEnumerator_mD09AB17F5788E987BEAD70E80E269F3FB7E865C3_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* ReplayController_WithDeviceMappedFromTo_m88AC8466C0CEAB26F9F502DF6A1B3853512F7090 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, int32_t ___0_recordedDeviceId, int32_t ___1_playbackDeviceId, const RuntimeMethod* method) ;
|
|
inline KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189 InlinedArray_1_get_Item_m1C8BF2A41804F8D2B398B234FE3B1E940D36DFF1 (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189 (*) (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43*, int32_t, const RuntimeMethod*))InlinedArray_1_get_Item_m1C8BF2A41804F8D2B398B234FE3B1E940D36DFF1_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline int32_t KeyValuePair_2_get_Key_m5A886C4B3E54DEA04D456E49D7FB92A4545FCD8F_inline (KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189*, const RuntimeMethod*))KeyValuePair_2_get_Key_m5A886C4B3E54DEA04D456E49D7FB92A4545FCD8F_gshared_inline)(__this, method);
|
|
}
|
|
inline void InlinedArray_1_RemoveAtWithCapacity_m4D058322BEC61FA58F04CE9A837A2E464759415E (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43*, int32_t, const RuntimeMethod*))InlinedArray_1_RemoveAtWithCapacity_m4D058322BEC61FA58F04CE9A837A2E464759415E_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void KeyValuePair_2__ctor_m3C86D5D8BB0D1118068E83ED43D64F4E64E7C221 (KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189* __this, int32_t ___0_key, int32_t ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189*, int32_t, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m3C86D5D8BB0D1118068E83ED43D64F4E64E7C221_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void InlinedArray_1_set_Item_m6A196904387C38864370BABA0CBACC0EEF6BB786 (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43* __this, int32_t ___0_index, KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189 ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43*, int32_t, KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189, const RuntimeMethod*))InlinedArray_1_set_Item_m6A196904387C38864370BABA0CBACC0EEF6BB786_gshared)(__this, ___0_index, ___1_value, method);
|
|
}
|
|
inline int32_t InlinedArray_1_AppendWithCapacity_mDB0D8ADCFF5D374E15017980D7073D63B8E8C48F (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43* __this, KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189 ___0_value, int32_t ___1_capacityIncrement, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43*, KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189, int32_t, const RuntimeMethod*))InlinedArray_1_AppendWithCapacity_mDB0D8ADCFF5D374E15017980D7073D63B8E8C48F_gshared)(__this, ___0_value, ___1_capacityIncrement, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReplayController_MoveNext_m2887515FB9A9316E0A2A272C57ADA2301DD90980 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, bool ___0_skipFrameEvents, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* ___1_eventPtr, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReplayController_QueueEvent_mC5FA360DEB643DF3D85E7A9AFD6510D66A7F8BEE (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_eventPtr, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReplayController_set_position_m4948A3C77785BCBBE721AC7C452C470A9C24C098_inline (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReplayController_Finished_m264D5E388A7FA1EFCED8420A5969C84D505493DF (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_m6CF56031007CD05AA70A2FDA98FB9652FD3C0DF5 (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448*, const RuntimeMethod*))List_1__ctor_m6CF56031007CD05AA70A2FDA98FB9652FD3C0DF5_gshared)(__this, method);
|
|
}
|
|
inline void List_1_Add_m2EE80016B94F10A7E9150D8ABB6C5668609CBAB3_inline (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448*, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, const RuntimeMethod*))List_1_Add_m2EE80016B94F10A7E9150D8ABB6C5668609CBAB3_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline void Comparison_1__ctor_m3066D7B2DF7828CC841C0313A7664013366E7F33 (Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188*, RuntimeObject*, intptr_t, const RuntimeMethod*))Comparison_1__ctor_m3066D7B2DF7828CC841C0313A7664013366E7F33_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void List_1_Sort_mEB9A929B41F7294B9F91D91FFCEB73C358478813 (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* __this, Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188* ___0_comparison, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448*, Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188*, const RuntimeMethod*))List_1_Sort_mEB9A929B41F7294B9F91D91FFCEB73C358478813_gshared)(__this, ___0_comparison, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m385FC51CC8FD384DE531046778BB39C30B623B4F (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ReplayController_get_paused_mA3967138FEFDD72AE8823B2B2DACEBE6E5555F30_inline (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method) ;
|
|
inline int32_t List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_inline (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448*, const RuntimeMethod*))List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReplayController_get_position_m39297BBE091E3E76FDD27B71AA7355148E908B88_inline (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReplayController_ApplyDeviceMapping_mE74A404A704F80B52F5FC9C728B13D0433A46962 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, int32_t ___0_originalDeviceId, const RuntimeMethod* method) ;
|
|
inline void Action_1_Invoke_m30D56EDF2807EF309EEF182BA63A3F0EF0B08A15_inline (Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C*, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, const RuntimeMethod*))Action_1_Invoke_m30D56EDF2807EF309EEF182BA63A3F0EF0B08A15_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_QueueEvent_mC30D182ADDD60BFC2AF10D24CEE2481D0EB77996 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_eventPtr, const RuntimeMethod* method) ;
|
|
inline InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 List_1_get_Item_m230131CE40A0013D25B1FB05FDDB98CB898BB718 (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 (*) (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448*, int32_t, const RuntimeMethod*))List_1_get_Item_m230131CE40A0013D25B1FB05FDDB98CB898BB718_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mBAEFD5A6376C9CFEE01B48D250572D491A8C6C24 (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass43_0__ctor_m44DFCFD88DB448F015B1576A19C27E625666493C (U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A* __this, const RuntimeMethod* method) ;
|
|
inline int32_t KeyValuePair_2_get_Value_m83DA000FF3605DAD9160D02FB36863DF77DB468A_inline (KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189*, const RuntimeMethod*))KeyValuePair_2_get_Value_m83DA000FF3605DAD9160D02FB36863DF77DB468A_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570 InputEventTrace_get_deviceInfos_m66BCE6CE81C634A9352F04CF76CEA14F4E8B3942 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method) ;
|
|
inline void Predicate_1__ctor_mB518D664C1FF6E6E0E5886154563FF1AD31B74D3 (Predicate_1_t81E65ECFCC613C16F7408ECA5D3D94536697174D* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Predicate_1_t81E65ECFCC613C16F7408ECA5D3D94536697174D*, RuntimeObject*, intptr_t, const RuntimeMethod*))Predicate_1__ctor_mB518D664C1FF6E6E0E5886154563FF1AD31B74D3_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline int32_t ReadOnlyArray_1_IndexOf_mFE4262FD29B7CC10555B765F22C7D263C0BC97AB (ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570* __this, Predicate_1_t81E65ECFCC613C16F7408ECA5D3D94536697174D* ___0_predicate, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570*, Predicate_1_t81E65ECFCC613C16F7408ECA5D3D94536697174D*, const RuntimeMethod*))ReadOnlyArray_1_IndexOf_mFE4262FD29B7CC10555B765F22C7D263C0BC97AB_gshared)(__this, ___0_predicate, method);
|
|
}
|
|
inline DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 ReadOnlyArray_1_get_Item_mDFB5E4BE282F80EE3CF856F0DD06DD5BD72B8B2A (ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 (*) (ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570*, int32_t, const RuntimeMethod*))ReadOnlyArray_1_get_Item_mDFB5E4BE282F80EE3CF856F0DD06DD5BD72B8B2A_gshared)(__this, ___0_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternedString__ctor_m2E9672D46D84C82F705DE799CE8B6123EB95E935 (InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735* __this, String_t* ___0_text, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Collection_HasLayout_m76BD57A515EFDE26B81646B755529776C02ACA8E (Collection_t6E9F85AD439CF26269683541C4DC58BA3B6756C5* __this, InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___0_name, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputSystem_RegisterLayout_m8FBCD0A0BD4FF8E93362CC0965AF7718F2EB318A (String_t* ___0_json, String_t* ___1_name, Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C ___2_matches, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InternedString_op_Implicit_m99D80AAE853F54FA2EF2603D020C7454B608D2F6 (InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 ___0_str, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* InputSystem_AddDevice_m80FC919566BCDE8E9B09F19FA2AF32FF53A9710F (String_t* ___0_layout, String_t* ___1_name, String_t* ___2_variants, const RuntimeMethod* method) ;
|
|
inline int32_t InlinedArray_1_AppendWithCapacity_mC3DD9D6BFC53FE2F13BC3FEE652EC3B2CBA547AE (InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_value, int32_t ___1_capacityIncrement, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C*, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, int32_t, const RuntimeMethod*))InlinedArray_1_AppendWithCapacity_m9862A91090391A77B2DCC2428616248FC176C180_gshared)(__this, ___0_value, ___1_capacityIncrement, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m2B226897DC23B48ACB5AF11CF779F3B02EDC558D (U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_m40FD7CA33B178CCFA4B6755267DC67841092CCFC (double* __this, double ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* StateEvent_get_state_m4DE9A0A398BE8CBC86DF8FA13B75028B22B27C26 (StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 StateEvent_ToEventPtr_mD3680659E169AB02E24D776602EDDE77369CE06D (StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED StateEvent_get_typeStatic_m919C8D08A31FF49959788F03C2DADD67B763B0BB (StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF StateEvent_From_m1C02D0B7B693C47FFA472D23EF1F2CF0FBEA9AC9 (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* ___1_eventPtr, int32_t ___2_allocator, bool ___3_useDefaultState, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void* InputControl_get_defaultStatePtr_m0AB5C2504696867BAC98126C4A352141389C3160_inline (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TextEvent_get_typeStatic_m1140CC664806484A029BEACF8E85E2EA41DB0CD0 (TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E* __this, const RuntimeMethod* method) ;
|
|
inline bool InputEventPtr_IsA_TisTextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E_m01CE0B6701368BD1BFDB10DE3162AF9A3D413B8A (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*, const RuntimeMethod*))InputEventPtr_IsA_TisTextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E_m01CE0B6701368BD1BFDB10DE3162AF9A3D413B8A_gshared)(__this, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_maxNumDevices_m0FEEC51F3510A61C081B4C4159FD4453CC847428_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_maxNumDevices_m9F11EC470346A3CB0048D2DAE5B38E3344E51C08_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentNumDevices_m95D2F0878FD22AFB147019A4511CEA6856FAFB45_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentNumDevices_m548C2BF7385931D42DD8FF22BB010FF602AC14EA_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_maxStateSizeInBytes_m105BD2DF857955095D11D617F738350B638C4EF2_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_maxStateSizeInBytes_m31330B150C4D44C95E79B2BCF9AC422E9D3CD105_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentStateSizeInBytes_mF8F8501666ADFA81A4BD4DF71F8E27847B0D6EA5_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentStateSizeInBytes_m9BBDBBD4A727B654A36F2396F40DB4D0E137CD7D_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentControlCount_mEBDE0B72A6A56819D2BBA87394C386EECEBD78F3_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentControlCount_mDF1F18CB6B69696C953510A4FE58C87D6FA72729_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentLayoutCount_m69DC513C2784189A9B3F214A3332DD9DC352A528_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentLayoutCount_m43BD6E6E44CA3DF2C58AC09B180F83DEC5FDAF4A_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_totalEventBytes_m04F4BFD498777335799D63A81C29AA97143CC13B_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventBytes_m3E9A896A75E1A57ABA893EA1F63E98E041D404ED_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_totalEventCount_m2EA373AAB2B4975C2BBAE3C37DA78946BB5BD0D0_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventCount_mE8188B2A42002E32190B8981B2B5D2D08A95DBE5_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_totalUpdateCount_mCF84FB729C509B5D85A54EA1A6AC36980ED2CC61_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalUpdateCount_mF43ADDD579F92E2727B55A6E10B578180C2019C2_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double InputMetrics_get_totalEventProcessingTime_mCF205D2B52FA9BC1E869BA7A6039FC0E712DABE3_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventProcessingTime_m1C75FA1C698121B1A1C5BE0044264CCAA0304732_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, double ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double InputMetrics_get_totalEventLagTime_m70516750050E2D62430DB62B5D6E2EB22697C1E6_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventLagTime_m486CE7F87D0221E5829B6D7BDE37837CB3D239F4_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, double ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float InputMetrics_get_averageEventBytesPerFrame_m3B35751312B79976908CAA27A8F8E9DB387E3DB8 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputMetrics_get_averageProcessingTimePerEvent_m2A93733786AB9DD394CD35F52B3E3BD5B9307020 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputMetrics_get_averageLagTimePerEvent_mE4CDD4A599B33E03A76F2E75E1CECDBED08115C7 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UpdateStepCount_OnBeforeUpdate_m064BE8C6A6E25B934C7CD9B81514C3A61376E002 (UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t UpdateStepCount_get_value_m939CB192D174FC917F8ABE9E05FEC308BFCDB459_inline (UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UpdateStepCount_OnUpdate_m7E993B061FBF276567B5004742BED2443F2D1426 (UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UpdateStepCount_set_value_m94BD09FB80BCEAA8211533A7391D3708C19AF60A_inline (UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324* __this, uint32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NativeInputSystem_AllocateDeviceId_m0F5EA2F96B8C2DB31D86E14B7F3C34105E6D67BA (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputSystem_Update_m898216ECCA26122D827C2FB45FC4A20296031036 (int32_t ___0_updateType, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D (void* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputSystem_QueueInputEvent_m9363FC2953D733EA8A3AE58470A90B4767ED0B7B (intptr_t ___0_inputEvent, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t NativeInputSystem_IOCTL_m11AC7B69197C6214E794B563D48FD60E848901E7 (int32_t ___0_deviceId, int32_t ___1_code, intptr_t ___2_data, int32_t ___3_sizeInBytes, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass7_0__ctor_m51D08934E5A8EC08EFB189DECE6572F9128ACB8A (U3CU3Ec__DisplayClass7_0_t1A3709DBB35971E4F78E67858F971CDD0B817698* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeUpdateCallback__ctor_m04FDCD50564E7535FADAFF34BBA83500585A84F5 (NativeUpdateCallback_tC5CA5A9117B79251968A4DA3758552EFE1D37495* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass10_0__ctor_m8B3228945AA7BBBB692912F4767821233DBAA6B5 (U3CU3Ec__DisplayClass10_0_t3C16459876E43A6A7151C0E35A8B7402A64144D8* __this, const RuntimeMethod* method) ;
|
|
inline void Action_1__ctor_m6053BD5AC27ECDD2DF78552B3ECB0D0F38B008C0 (Action_1_t7797D4D8783204B10C3D28B96B049C48276C3B1B* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t7797D4D8783204B10C3D28B96B049C48276C3B1B*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_1__ctor_m8EDF953DA7FF0E33AE19FB51BD7DBDB7C495CFE0_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass13_0__ctor_m9BDD963AD4B4D771579687755A1B9A1DB691A89C (U3CU3Ec__DisplayClass13_0_t21F396034441DB57F92472B4AB14EAD654A1E763* __this, const RuntimeMethod* method) ;
|
|
inline void Func_2__ctor_m04C8BE35346A258C612317730B8A43E84EEF5E55 (Func_2_t880CA675AE5D39E081BEEF14DC092D82674DE4F2* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_2_t880CA675AE5D39E081BEEF14DC092D82674DE4F2*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_mE27CCE9BF36CDA5E1C92CEBAECF98A3D57951455_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_2_t6AAF2E215E74E16A4EEF0A0749A4A325D99F5BA6* NativeInputSystem_get_onDeviceDiscovered_mD55A996A1107331B95C4D9409B8D4C98BADB8FCC (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputSystem_set_onDeviceDiscovered_m8DEE711BB866D1C923DA537B7DE62BF03094D855 (Action_2_t6AAF2E215E74E16A4EEF0A0749A4A325D99F5BA6* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Application_remove_quitting_m9DC9D4165EDB0FD93AB893655E26BF73566D2C1B (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Application_add_quitting_m5767AC63F23ABFD5BC3D60710906643BA536CCC5 (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method) ;
|
|
inline void Action_1__ctor_mA8C3AC97D1F076EA5D1D0C10CEE6BD3E94711501 (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_1__ctor_mA8C3AC97D1F076EA5D1D0C10CEE6BD3E94711501_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Application_remove_focusChanged_m1348AD63AFFB9F50347A09DDE75F91B5A6710624 (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Application_add_focusChanged_m8C984ECC5D23BE2E395EEAEE58D028F2B95A7E85 (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Application_get_isFocused_mFEEC52E355AA7AAA6B7250520CA544D80BE77524 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputSystem_SetPollingFrequency_mDEF2E1093D0776906BC95CC8E29A143C115910A0 (float ___0_hertz, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double NativeInputSystem_get_currentTime_mB10D8CF832AA53952843986F29675B3BC71AAEC9 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_fixedUnscaledTime_m408E1B883AE5D5D1469E6036F8A4B4822A6E9B37 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double NativeInputRuntime_get_currentTimeOffsetToRealtimeSinceStartup_m012D3D1C30F95156D18F882AE7A17FA3F7668BC1 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double NativeInputSystem_get_currentTimeOffsetToRealtimeSinceStartup_mE5FB513F17BBF2FF45494D1939C44DEBF3040B55 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_unscaledTime_mAF4040B858903E1325D1C65B8BF1AC61460B2503 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Application_get_runInBackground_mD56510A53700CF5E71040CE3B825773DDE70C2E9 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime_OnShutdown_mD52B4BB75DB77B06409941C49A6A41F41C6AAB4A (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method) ;
|
|
inline void Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_inline (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* __this, bool ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C*, bool, const RuntimeMethod*))Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Screen_get_width_mF608FF3252213E7EFA1F0D2F744C28110E9E5AC9 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Screen_get_height_m01A3102DE71EE1FBEA51D09D6B0261CF864FE8F9 (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___0_x, float ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Screen_get_orientation_mA6B22A441187D50831B2B18CA48A8F64BD1BD89E (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeInputSystem_get_normalizeScrollWheelDelta_mF633DF00F7F5823179F3473BC5E07BE9BF75A04F (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputSystem_set_normalizeScrollWheelDelta_mA6CCECFB417A30D7AEB05FDB313FEA28963F012D (bool ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float NativeInputSystem_GetScrollWheelDeltaPerTick_mD4FBEBF03836656D5DE3D39A8CEB3CB395DB607B (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime__ctor_mF029A72DDB68E34A46455E6354309A9585D37573 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D (String_t* __this, const RuntimeMethod* method) ;
|
|
inline void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, Il2CppChar*, int32_t, const RuntimeMethod*))ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline)(__this, ___0_ptr, ___1_length, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline (float ___0_a, float ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t ProfilerUnsafeUtility_CreateMarker_mC5E1AAB8CC1F0342065DF85BA3334445ED754E64 (String_t* ___0_name, uint16_t ___1_categoryId, uint16_t ___2_flags, int32_t ___3_metadataCount, const RuntimeMethod* method) ;
|
|
inline void List_1_AddWithResize_mA2C48CD761AC55B36110F6DCA27D73A9274391E6 (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED, const RuntimeMethod*))List_1_AddWithResize_mA2C48CD761AC55B36110F6DCA27D73A9274391E6_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_AddWithResize_mDCC9DBFEDF516E8DC0C11B342A27CA9BB9200068 (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7, const RuntimeMethod*))List_1_AddWithResize_mDCC9DBFEDF516E8DC0C11B342A27CA9BB9200068_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_AddWithResize_m756AA652ADCF750A88AE140E9AD3FED0D6394BF6 (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6*, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F, const RuntimeMethod*))List_1_AddWithResize_m756AA652ADCF750A88AE140E9AD3FED0D6394BF6_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_AddWithResize_m378B392086AAB6F400944FA9839516326B3F7BB8 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_AddWithResize_m378B392086AAB6F400944FA9839516326B3F7BB8_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_AddWithResize_m4C69A872DFBE5B23AF8130D60EE50C1D33E6D1A1 (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448*, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, const RuntimeMethod*))List_1_AddWithResize_m4C69A872DFBE5B23AF8130D60EE50C1D33E6D1A1_gshared)(__this, ___0_item, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
|
|
|
|
IL2CPP_EXTERN_C void HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshal_pinvoke(const HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59& unmarshaled, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59____elements_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___elementsException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59____elements_FieldInfo_var, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___elementsException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshal_pinvoke_back(const HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_pinvoke& marshaled, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59____elements_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___elementsException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59____elements_FieldInfo_var, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___elementsException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshal_pinvoke_cleanup(HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
|
|
|
|
IL2CPP_EXTERN_C void HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshal_com(const HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59& unmarshaled, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59____elements_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___elementsException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59____elements_FieldInfo_var, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___elementsException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshal_com_back(const HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_com& marshaled, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59____elements_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___elementsException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59____elements_FieldInfo_var, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___elementsException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshal_com_cleanup(HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// Method Definition Index: 25188
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HIDDeviceDescriptor_ToJson_mF1F8181F21DFC7786988C6B5B24592ED60C97C68 (HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:978>
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_0 = (*(HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59*)__this);
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_il2cpp_TypeInfo_var, &L_1);
|
|
String_t* L_3;
|
|
L_3 = JsonUtility_ToJson_m53A1FEE0D388CF3A629E093C04B5E1A6D5463B53(L_2, (bool)1, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* HIDDeviceDescriptor_ToJson_mF1F8181F21DFC7786988C6B5B24592ED60C97C68_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = HIDDeviceDescriptor_ToJson_mF1F8181F21DFC7786988C6B5B24592ED60C97C68(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25189
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 HIDDeviceDescriptor_FromJson_mEEA8B6998BD6C495ECD4B184C678106ACDFC0A73 (String_t* ___0_json, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionPool_2_Get_mE6CF40020536BE09DC00422B38D38CC79B8CB19A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionPool_2_tBDB588E456C506D92EA19A206F41BE4DB57D1D11_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PooledObject_1_System_IDisposable_Dispose_m5642236CE31A998871D30083D40807623593A815_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33018FA8926405B4E44C0D1902B3435E469A55E2);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
PredictiveParser_t33E75D237A7F855FDFDD50AA2DDDBBB65DE94248 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
PooledObject_1_t3EE851FC31BB36C74442BC11F197850E2088685C V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* V_5 = NULL;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED V_8;
|
|
memset((&V_8), 0, sizeof(V_8));
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:990>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:992>
|
|
String_t* L_0 = ___0_json;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1;
|
|
L_1 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_0, NULL);
|
|
V_1 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:993>
|
|
il2cpp_codegen_initobj((&V_2), sizeof(PredictiveParser_t33E75D237A7F855FDFDD50AA2DDDBBB65DE94248));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:994>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_2, ((int32_t)123), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:996>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3 = V_1;
|
|
bool L_4;
|
|
L_4 = PredictiveParser_AcceptString_m786D5F348A934235EFADF3946E405D24E0A22BC1((&V_2), L_3, (&V_6), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:997>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_5, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:998>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6 = V_1;
|
|
int32_t L_7;
|
|
L_7 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_6, NULL);
|
|
(&V_0)->___vendorId = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:999>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_8 = V_1;
|
|
bool L_9;
|
|
L_9 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_8, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1001>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_10 = V_1;
|
|
bool L_11;
|
|
L_11 = PredictiveParser_AcceptString_m786D5F348A934235EFADF3946E405D24E0A22BC1((&V_2), L_10, (&V_6), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1002>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_12 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_12, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1003>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_13 = V_1;
|
|
int32_t L_14;
|
|
L_14 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_13, NULL);
|
|
(&V_0)->___productId = L_14;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1004>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_15 = V_1;
|
|
bool L_16;
|
|
L_16 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_15, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1006>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_17 = V_1;
|
|
bool L_18;
|
|
L_18 = PredictiveParser_AcceptString_m786D5F348A934235EFADF3946E405D24E0A22BC1((&V_2), L_17, (&V_6), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1007>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_19 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_19, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1008>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_20 = V_1;
|
|
int32_t L_21;
|
|
L_21 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_20, NULL);
|
|
(&V_0)->___usage = L_21;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1009>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_22 = V_1;
|
|
bool L_23;
|
|
L_23 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_22, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1011>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_24 = V_1;
|
|
bool L_25;
|
|
L_25 = PredictiveParser_AcceptString_m786D5F348A934235EFADF3946E405D24E0A22BC1((&V_2), L_24, (&V_6), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1012>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_26 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_26, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1013>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27 = V_1;
|
|
int32_t L_28;
|
|
L_28 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_27, NULL);
|
|
(&V_0)->___usagePage = L_28;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1014>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_29 = V_1;
|
|
bool L_30;
|
|
L_30 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_29, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1016>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_31 = V_1;
|
|
bool L_32;
|
|
L_32 = PredictiveParser_AcceptString_m786D5F348A934235EFADF3946E405D24E0A22BC1((&V_2), L_31, (&V_6), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1017>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_33 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_33, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1018>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_34 = V_1;
|
|
int32_t L_35;
|
|
L_35 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_34, NULL);
|
|
(&V_0)->___inputReportSize = L_35;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1019>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_36 = V_1;
|
|
bool L_37;
|
|
L_37 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_36, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1021>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_38 = V_1;
|
|
bool L_39;
|
|
L_39 = PredictiveParser_AcceptString_m786D5F348A934235EFADF3946E405D24E0A22BC1((&V_2), L_38, (&V_6), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1022>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_40 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_40, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1023>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_41 = V_1;
|
|
int32_t L_42;
|
|
L_42 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_41, NULL);
|
|
(&V_0)->___outputReportSize = L_42;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1024>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_43 = V_1;
|
|
bool L_44;
|
|
L_44 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_43, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1026>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45 = V_1;
|
|
bool L_46;
|
|
L_46 = PredictiveParser_AcceptString_m786D5F348A934235EFADF3946E405D24E0A22BC1((&V_2), L_45, (&V_6), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1027>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_47 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_47, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1028>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_48 = V_1;
|
|
int32_t L_49;
|
|
L_49 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_48, NULL);
|
|
(&V_0)->___featureReportSize = L_49;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1029>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_50 = V_1;
|
|
bool L_51;
|
|
L_51 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_50, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1032>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_52 = V_1;
|
|
bool L_53;
|
|
L_53 = PredictiveParser_AcceptString_m786D5F348A934235EFADF3946E405D24E0A22BC1((&V_2), L_52, (&V_3), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1033>
|
|
String_t* L_54;
|
|
L_54 = ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D((&V_3), ReadOnlySpan_1_ToString_mB13A913EF211B14B719EE62133C15C298642E34D_RuntimeMethod_var);
|
|
bool L_55;
|
|
L_55 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_54, _stringLiteral33018FA8926405B4E44C0D1902B3435E469A55E2, NULL);
|
|
if (!L_55)
|
|
{
|
|
goto IL_0196_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1033>
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_56 = V_0;
|
|
V_7 = L_56;
|
|
goto IL_04ca;
|
|
}
|
|
|
|
IL_0196_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1035>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_57 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_57, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1036>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_58, ((int32_t)91), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1038>
|
|
il2cpp_codegen_runtime_class_init_inline(CollectionPool_2_tBDB588E456C506D92EA19A206F41BE4DB57D1D11_il2cpp_TypeInfo_var);
|
|
PooledObject_1_t3EE851FC31BB36C74442BC11F197850E2088685C L_59;
|
|
L_59 = CollectionPool_2_Get_mE6CF40020536BE09DC00422B38D38CC79B8CB19A((&V_5), CollectionPool_2_Get_mE6CF40020536BE09DC00422B38D38CC79B8CB19A_RuntimeMethod_var);
|
|
V_4 = L_59;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_04b1_1:
|
|
{
|
|
PooledObject_1_System_IDisposable_Dispose_m5642236CE31A998871D30083D40807623593A815((&V_4), PooledObject_1_System_IDisposable_Dispose_m5642236CE31A998871D30083D40807623593A815_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_048f_2;
|
|
}
|
|
|
|
IL_01b8_2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1041>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_60 = V_1;
|
|
bool L_61;
|
|
L_61 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_60, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1042>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_62 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_62, ((int32_t)123), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1044>
|
|
il2cpp_codegen_initobj((&V_8), sizeof(HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1047>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_63 = V_1;
|
|
bool L_64;
|
|
L_64 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_63, ((int32_t)125), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1048>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_65 = V_1;
|
|
bool L_66;
|
|
L_66 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_65, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1051>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_67 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_68;
|
|
L_68 = PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB((&V_2), L_67, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1052>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_69 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_69, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1053>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_70 = V_1;
|
|
int32_t L_71;
|
|
L_71 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_70, NULL);
|
|
(&V_8)->___usage = L_71;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1054>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_72 = V_1;
|
|
bool L_73;
|
|
L_73 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_72, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1056>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_74 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_75;
|
|
L_75 = PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB((&V_2), L_74, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1057>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_76 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_76, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1058>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_77 = V_1;
|
|
int32_t L_78;
|
|
L_78 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_77, NULL);
|
|
(&V_8)->___usagePage = L_78;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1059>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_79 = V_1;
|
|
bool L_80;
|
|
L_80 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_79, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1061>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_81 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_82;
|
|
L_82 = PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB((&V_2), L_81, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1062>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_83 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_83, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1063>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_84 = V_1;
|
|
int32_t L_85;
|
|
L_85 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_84, NULL);
|
|
(&V_8)->___unit = L_85;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1064>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_86 = V_1;
|
|
bool L_87;
|
|
L_87 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_86, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1066>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_88 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_89;
|
|
L_89 = PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB((&V_2), L_88, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1067>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_90 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_90, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1068>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_91 = V_1;
|
|
int32_t L_92;
|
|
L_92 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_91, NULL);
|
|
(&V_8)->___unitExponent = L_92;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1069>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_93 = V_1;
|
|
bool L_94;
|
|
L_94 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_93, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1071>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_95 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_96;
|
|
L_96 = PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB((&V_2), L_95, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1072>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_97 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_97, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1073>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_98 = V_1;
|
|
int32_t L_99;
|
|
L_99 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_98, NULL);
|
|
(&V_8)->___logicalMin = L_99;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1074>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_100 = V_1;
|
|
bool L_101;
|
|
L_101 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_100, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1076>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_102 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_103;
|
|
L_103 = PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB((&V_2), L_102, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1077>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_104 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_104, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1078>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_105 = V_1;
|
|
int32_t L_106;
|
|
L_106 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_105, NULL);
|
|
(&V_8)->___logicalMax = L_106;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1079>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_107 = V_1;
|
|
bool L_108;
|
|
L_108 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_107, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1081>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_109 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_110;
|
|
L_110 = PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB((&V_2), L_109, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1082>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_111 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_111, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1083>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_112 = V_1;
|
|
int32_t L_113;
|
|
L_113 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_112, NULL);
|
|
(&V_8)->___physicalMin = L_113;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1084>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_114 = V_1;
|
|
bool L_115;
|
|
L_115 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_114, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1086>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_116 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_117;
|
|
L_117 = PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB((&V_2), L_116, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1087>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_118 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_118, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1088>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_119 = V_1;
|
|
int32_t L_120;
|
|
L_120 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_119, NULL);
|
|
(&V_8)->___physicalMax = L_120;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1089>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_121 = V_1;
|
|
bool L_122;
|
|
L_122 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_121, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1091>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_123 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_124;
|
|
L_124 = PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB((&V_2), L_123, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1092>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_125 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_125, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1093>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_126 = V_1;
|
|
int32_t L_127;
|
|
L_127 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_126, NULL);
|
|
(&V_8)->___collectionIndex = L_127;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1094>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_128 = V_1;
|
|
bool L_129;
|
|
L_129 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_128, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1096>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_130 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_131;
|
|
L_131 = PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB((&V_2), L_130, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1097>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_132 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_132, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1098>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_133 = V_1;
|
|
int32_t L_134;
|
|
L_134 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_133, NULL);
|
|
(&V_8)->___reportType = L_134;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1099>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_135 = V_1;
|
|
bool L_136;
|
|
L_136 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_135, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1101>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_137 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_138;
|
|
L_138 = PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB((&V_2), L_137, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1102>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_139 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_139, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1103>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_140 = V_1;
|
|
int32_t L_141;
|
|
L_141 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_140, NULL);
|
|
(&V_8)->___reportId = L_141;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1104>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_142 = V_1;
|
|
bool L_143;
|
|
L_143 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_142, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1107>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_144 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_145;
|
|
L_145 = PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB((&V_2), L_144, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1108>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_146 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_146, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1109>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_147 = V_1;
|
|
PredictiveParser_AcceptInt_m4C94C20DE615EA781A1554037E625DCD5CD77986((&V_2), L_147, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1110>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_148 = V_1;
|
|
bool L_149;
|
|
L_149 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_148, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1112>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_150 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_151;
|
|
L_151 = PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB((&V_2), L_150, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1113>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_152 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_152, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1114>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_153 = V_1;
|
|
int32_t L_154;
|
|
L_154 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_153, NULL);
|
|
(&V_8)->___reportSizeInBits = L_154;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1115>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_155 = V_1;
|
|
bool L_156;
|
|
L_156 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_155, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1117>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_157 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_158;
|
|
L_158 = PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB((&V_2), L_157, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1118>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_159 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_159, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1119>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_160 = V_1;
|
|
int32_t L_161;
|
|
L_161 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_160, NULL);
|
|
(&V_8)->___reportOffsetInBits = L_161;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1120>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_162 = V_1;
|
|
bool L_163;
|
|
L_163 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_162, ((int32_t)44), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1122>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_164 = V_1;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_165;
|
|
L_165 = PredictiveParser_ExpectString_mB9D2D4DB64514E11C5BA9A06FB9FC2F69F423FCB((&V_2), L_164, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1123>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_166 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_166, ((int32_t)58), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1124>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_167 = V_1;
|
|
int32_t L_168;
|
|
L_168 = PredictiveParser_ExpectInt_m8BCAD0C431D1C562C80A4C9B3A68A8C8C83C4AA6((&V_2), L_167, NULL);
|
|
(&V_8)->___flags = L_168;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1126>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_169 = V_1;
|
|
PredictiveParser_ExpectSingleChar_mBC652F6547A1588C13BA3A9066A801E818CE12CA((&V_2), L_169, ((int32_t)125), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1128>
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_170 = V_5;
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_171 = V_8;
|
|
NullCheck(L_170);
|
|
List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_inline(L_170, L_171, List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_048f_2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1039>
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_172 = V_1;
|
|
bool L_173;
|
|
L_173 = PredictiveParser_AcceptSingleChar_m2200F1C4ED06F07D4981D5A2F4D2F96D3CEC2002((&V_2), L_172, ((int32_t)93), NULL);
|
|
if (!L_173)
|
|
{
|
|
goto IL_01b8_2;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1130>
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_174 = V_5;
|
|
NullCheck(L_174);
|
|
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* L_175;
|
|
L_175 = List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B(L_174, List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_RuntimeMethod_var);
|
|
(&V_0)->___elements = L_175;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___elements), (void*)L_175);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1132>
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_176 = V_0;
|
|
V_7 = L_176;
|
|
goto IL_04ca;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_04bf;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_04bf:
|
|
{
|
|
Exception_t* L_177 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1134>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1137>
|
|
String_t* L_178 = ___0_json;
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_179;
|
|
L_179 = JsonUtility_FromJson_TisHIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_m312C04431DC84D71214A2C5CAC845D5B76D91E4E(L_178, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&JsonUtility_FromJson_TisHIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59_m312C04431DC84D71214A2C5CAC845D5B76D91E4E_RuntimeMethod_var)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1139>
|
|
V_7 = L_179;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_04ca;
|
|
}
|
|
|
|
IL_04ca:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1144>
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_180 = V_7;
|
|
return L_180;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshal_pinvoke(const HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C& unmarshaled, HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C____m_Elements_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_ElementsException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C____m_Elements_FieldInfo_var, HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ElementsException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshal_pinvoke_back(const HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_pinvoke& marshaled, HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C____m_Elements_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_ElementsException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C____m_Elements_FieldInfo_var, HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ElementsException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshal_pinvoke_cleanup(HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshal_com(const HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C& unmarshaled, HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C____m_Elements_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_ElementsException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C____m_Elements_FieldInfo_var, HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ElementsException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshal_com_back(const HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_com& marshaled, HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C____m_Elements_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_ElementsException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C____m_Elements_FieldInfo_var, HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ElementsException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshal_com_cleanup(HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// Method Definition Index: 25190
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDDeviceDescriptorBuilder__ctor_mB72574F6CACA0E638DAA7437168EABD2F32B9C07 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___0_usagePage, int32_t ___1_usage, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1156>
|
|
il2cpp_codegen_initobj(__this, sizeof(HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1158>
|
|
int32_t L_0 = ___0_usagePage;
|
|
__this->___usagePage = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1159>
|
|
int32_t L_1 = ___1_usage;
|
|
__this->___usage = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1160>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder__ctor_mB72574F6CACA0E638DAA7437168EABD2F32B9C07_AdjustorThunk (RuntimeObject* __this, int32_t ___0_usagePage, int32_t ___1_usage, const RuntimeMethod* method)
|
|
{
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
|
|
HIDDeviceDescriptorBuilder__ctor_mB72574F6CACA0E638DAA7437168EABD2F32B9C07(_thisAdjusted, ___0_usagePage, ___1_usage, method);
|
|
}
|
|
// Method Definition Index: 25191
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDDeviceDescriptorBuilder__ctor_mA089E89EDBAA54275A999D4BEC12B0A47562D9B4 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___0_usage, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1163>
|
|
int32_t L_0 = ___0_usage;
|
|
HIDDeviceDescriptorBuilder__ctor_mB72574F6CACA0E638DAA7437168EABD2F32B9C07(__this, 1, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1165>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void HIDDeviceDescriptorBuilder__ctor_mA089E89EDBAA54275A999D4BEC12B0A47562D9B4_AdjustorThunk (RuntimeObject* __this, int32_t ___0_usage, const RuntimeMethod* method)
|
|
{
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
|
|
HIDDeviceDescriptorBuilder__ctor_mA089E89EDBAA54275A999D4BEC12B0A47562D9B4(_thisAdjusted, ___0_usage, method);
|
|
}
|
|
// Method Definition Index: 25192
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_StartReport_mA82F406CEAB8AA31436EC6041A88E9F9D21A4438 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___0_reportType, int32_t ___1_reportId, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1169>
|
|
int32_t L_0 = ___1_reportId;
|
|
__this->___m_CurrentReportId = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1170>
|
|
int32_t L_1 = ___0_reportType;
|
|
__this->___m_CurrentReportType = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1171>
|
|
__this->___m_CurrentReportOffsetInBits = 8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1172>
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C L_2 = (*(HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*)__this);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_StartReport_mA82F406CEAB8AA31436EC6041A88E9F9D21A4438_AdjustorThunk (RuntimeObject* __this, int32_t ___0_reportType, int32_t ___1_reportId, const RuntimeMethod* method)
|
|
{
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C _returnValue;
|
|
_returnValue = HIDDeviceDescriptorBuilder_StartReport_mA82F406CEAB8AA31436EC6041A88E9F9D21A4438(_thisAdjusted, ___0_reportType, ___1_reportId, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25193
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_AddElement_mD994613C265EE2137E086C3BD8A028E81763647E (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___0_usagePage, int32_t ___1_usage, int32_t ___2_sizeInBits, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mEDB482ACA649331B5EF4524B9E1D4C3B9BCD1134_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mB9DC3D934804170CFD1F8B40AD171946368F5E8C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mC605D61CAC954D4A3A8D348D5D221B814319A038_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t66029D02EA129D03A082E470EB98C85812301A0C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1177>
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_0 = __this->___m_Elements;
|
|
if (L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1179>
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_1 = (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*)il2cpp_codegen_object_new(List_1_t66029D02EA129D03A082E470EB98C85812301A0C_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C(L_1, List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C_RuntimeMethod_var);
|
|
__this->___m_Elements = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Elements), (void*)L_1);
|
|
goto IL_008e;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1184>
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_2 = __this->___m_Elements;
|
|
NullCheck(L_2);
|
|
Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60 L_3;
|
|
L_3 = List_1_GetEnumerator_mC605D61CAC954D4A3A8D348D5D221B814319A038(L_2, List_1_GetEnumerator_mC605D61CAC954D4A3A8D348D5D221B814319A038_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0080:
|
|
{
|
|
Enumerator_Dispose_mEDB482ACA649331B5EF4524B9E1D4C3B9BCD1134((&V_0), Enumerator_Dispose_mEDB482ACA649331B5EF4524B9E1D4C3B9BCD1134_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0075_1;
|
|
}
|
|
|
|
IL_0023_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1184>
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_4;
|
|
L_4 = Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_inline((&V_0), Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_RuntimeMethod_var);
|
|
V_1 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1187>
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_5 = V_1;
|
|
int32_t L_6 = L_5.___reportId;
|
|
int32_t L_7 = __this->___m_CurrentReportId;
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)L_7))))
|
|
{
|
|
goto IL_0075_1;
|
|
}
|
|
}
|
|
{
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_8 = V_1;
|
|
int32_t L_9 = L_8.___reportType;
|
|
int32_t L_10 = __this->___m_CurrentReportType;
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)L_10))))
|
|
{
|
|
goto IL_0075_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1190>
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_11 = V_1;
|
|
int32_t L_12 = L_11.___usagePage;
|
|
int32_t L_13 = ___0_usagePage;
|
|
if ((!(((uint32_t)L_12) == ((uint32_t)L_13))))
|
|
{
|
|
goto IL_0075_1;
|
|
}
|
|
}
|
|
{
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_14 = V_1;
|
|
int32_t L_15 = L_14.___usage;
|
|
int32_t L_16 = ___1_usage;
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)L_16))))
|
|
{
|
|
goto IL_0075_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1191>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1192>
|
|
int32_t L_17 = ___0_usagePage;
|
|
int32_t L_18 = L_17;
|
|
RuntimeObject* L_19 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UsagePage_t6EF545F107AB1DED99B07C377BD0B8457DC6F7B8_il2cpp_TypeInfo_var)), &L_18);
|
|
int32_t L_20 = ___1_usage;
|
|
int32_t L_21 = L_20;
|
|
RuntimeObject* L_22 = Box(il2cpp_defaults.int32_class, &L_21);
|
|
String_t* L_23;
|
|
L_23 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral98BC550B25E41B9B00C9D21EF0AD0291FE9A85CC)), L_19, L_22, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_24 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_24, L_23, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HIDDeviceDescriptorBuilder_AddElement_mD994613C265EE2137E086C3BD8A028E81763647E_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0075_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1184>
|
|
bool L_25;
|
|
L_25 = Enumerator_MoveNext_mB9DC3D934804170CFD1F8B40AD171946368F5E8C((&V_0), Enumerator_MoveNext_mB9DC3D934804170CFD1F8B40AD171946368F5E8C_RuntimeMethod_var);
|
|
if (L_25)
|
|
{
|
|
goto IL_0023_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008e;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1196>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1197>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1198>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1199>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1200>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1201>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1202>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1203>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1204>
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_26 = __this->___m_Elements;
|
|
il2cpp_codegen_initobj((&V_2), sizeof(HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED));
|
|
int32_t L_27 = ___1_usage;
|
|
(&V_2)->___usage = L_27;
|
|
int32_t L_28 = ___0_usagePage;
|
|
(&V_2)->___usagePage = L_28;
|
|
int32_t L_29 = __this->___m_CurrentReportOffsetInBits;
|
|
(&V_2)->___reportOffsetInBits = L_29;
|
|
int32_t L_30 = ___2_sizeInBits;
|
|
(&V_2)->___reportSizeInBits = L_30;
|
|
int32_t L_31 = __this->___m_CurrentReportType;
|
|
(&V_2)->___reportType = L_31;
|
|
int32_t L_32 = __this->___m_CurrentReportId;
|
|
(&V_2)->___reportId = L_32;
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_33 = V_2;
|
|
NullCheck(L_26);
|
|
List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_inline(L_26, L_33, List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1205>
|
|
int32_t L_34 = __this->___m_CurrentReportOffsetInBits;
|
|
int32_t L_35 = ___2_sizeInBits;
|
|
__this->___m_CurrentReportOffsetInBits = ((int32_t)il2cpp_codegen_add(L_34, L_35));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1207>
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C L_36 = (*(HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*)__this);
|
|
return L_36;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_AddElement_mD994613C265EE2137E086C3BD8A028E81763647E_AdjustorThunk (RuntimeObject* __this, int32_t ___0_usagePage, int32_t ___1_usage, int32_t ___2_sizeInBits, const RuntimeMethod* method)
|
|
{
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C _returnValue;
|
|
_returnValue = HIDDeviceDescriptorBuilder_AddElement_mD994613C265EE2137E086C3BD8A028E81763647E(_thisAdjusted, ___0_usagePage, ___1_usage, ___2_sizeInBits, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25194
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_AddElement_mE95BE338E6B215AA1CA6B97AAD9A135A6A85B417 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___0_usage, int32_t ___1_sizeInBits, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1212>
|
|
int32_t L_0 = ___0_usage;
|
|
int32_t L_1 = ___1_sizeInBits;
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C L_2;
|
|
L_2 = HIDDeviceDescriptorBuilder_AddElement_mD994613C265EE2137E086C3BD8A028E81763647E(__this, 1, L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_AddElement_mE95BE338E6B215AA1CA6B97AAD9A135A6A85B417_AdjustorThunk (RuntimeObject* __this, int32_t ___0_usage, int32_t ___1_sizeInBits, const RuntimeMethod* method)
|
|
{
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C _returnValue;
|
|
_returnValue = HIDDeviceDescriptorBuilder_AddElement_mE95BE338E6B215AA1CA6B97AAD9A135A6A85B417(_thisAdjusted, ___0_usage, ___1_sizeInBits, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25195
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_WithPhysicalMinMax_m58B0FD4DA13242CD7B1D7F67FFB664E344A0270A (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___0_min, int32_t ___1_max, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1217>
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_0 = __this->___m_Elements;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_inline(L_0, List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var);
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1218>
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1219>
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral82D598CE3B93B20E038CBF5D5EE6829297E22B95)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HIDDeviceDescriptorBuilder_WithPhysicalMinMax_m58B0FD4DA13242CD7B1D7F67FFB664E344A0270A_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1221>
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_4 = __this->___m_Elements;
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_4);
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_6;
|
|
L_6 = List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC(L_4, L_5, List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC_RuntimeMethod_var);
|
|
V_1 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1222>
|
|
int32_t L_7 = ___0_min;
|
|
(&V_1)->___physicalMin = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1223>
|
|
int32_t L_8 = ___1_max;
|
|
(&V_1)->___physicalMax = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1224>
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_9 = __this->___m_Elements;
|
|
int32_t L_10 = V_0;
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_11 = V_1;
|
|
NullCheck(L_9);
|
|
List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822(L_9, L_10, L_11, List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1226>
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C L_12 = (*(HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*)__this);
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_WithPhysicalMinMax_m58B0FD4DA13242CD7B1D7F67FFB664E344A0270A_AdjustorThunk (RuntimeObject* __this, int32_t ___0_min, int32_t ___1_max, const RuntimeMethod* method)
|
|
{
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C _returnValue;
|
|
_returnValue = HIDDeviceDescriptorBuilder_WithPhysicalMinMax_m58B0FD4DA13242CD7B1D7F67FFB664E344A0270A(_thisAdjusted, ___0_min, ___1_max, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25196
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_WithLogicalMinMax_m3B81BFABC8C577FFF03F61E1B205DF09B921B5C1 (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, int32_t ___0_min, int32_t ___1_max, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1231>
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_0 = __this->___m_Elements;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_inline(L_0, List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var);
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1232>
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1233>
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral82D598CE3B93B20E038CBF5D5EE6829297E22B95)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HIDDeviceDescriptorBuilder_WithLogicalMinMax_m3B81BFABC8C577FFF03F61E1B205DF09B921B5C1_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1235>
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_4 = __this->___m_Elements;
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_4);
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_6;
|
|
L_6 = List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC(L_4, L_5, List_1_get_Item_m1EE8F766AC95EDB5ED7BCC4D60CD474FBF12C4FC_RuntimeMethod_var);
|
|
V_1 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1236>
|
|
int32_t L_7 = ___0_min;
|
|
(&V_1)->___logicalMin = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1237>
|
|
int32_t L_8 = ___1_max;
|
|
(&V_1)->___logicalMax = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1238>
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_9 = __this->___m_Elements;
|
|
int32_t L_10 = V_0;
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_11 = V_1;
|
|
NullCheck(L_9);
|
|
List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822(L_9, L_10, L_11, List_1_set_Item_m8ABC5F1801D811FDFB800878468D6967F14CB822_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1240>
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C L_12 = (*(HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*)__this);
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C HIDDeviceDescriptorBuilder_WithLogicalMinMax_m3B81BFABC8C577FFF03F61E1B205DF09B921B5C1_AdjustorThunk (RuntimeObject* __this, int32_t ___0_min, int32_t ___1_max, const RuntimeMethod* method)
|
|
{
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C _returnValue;
|
|
_returnValue = HIDDeviceDescriptorBuilder_WithLogicalMinMax_m3B81BFABC8C577FFF03F61E1B205DF09B921B5C1(_thisAdjusted, ___0_min, ___1_max, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25197
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 HIDDeviceDescriptorBuilder_Finish_m552FCC29177FEA550ED85A2AFA420F1A338F561B (HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* G_B2_0 = NULL;
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* G_B2_1 = NULL;
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* G_B1_0 = NULL;
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* G_B1_1 = NULL;
|
|
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* G_B3_0 = NULL;
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* G_B3_1 = NULL;
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* G_B5_0 = NULL;
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* G_B5_1 = NULL;
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* G_B4_0 = NULL;
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* G_B4_1 = NULL;
|
|
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* G_B6_0 = NULL;
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* G_B6_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1245>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1246>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1247>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1248>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1249>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1250>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1251>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59));
|
|
int32_t L_0 = __this->___usage;
|
|
(&V_0)->___usage = L_0;
|
|
int32_t L_1 = __this->___usagePage;
|
|
(&V_0)->___usagePage = L_1;
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_2 = __this->___m_Elements;
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_3 = L_2;
|
|
if (L_3)
|
|
{
|
|
G_B2_0 = L_3;
|
|
G_B2_1 = (&V_0);
|
|
goto IL_0031;
|
|
}
|
|
G_B1_0 = L_3;
|
|
G_B1_1 = (&V_0);
|
|
}
|
|
{
|
|
G_B3_0 = ((HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D*)(NULL));
|
|
G_B3_1 = G_B1_1;
|
|
goto IL_0036;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* L_4;
|
|
L_4 = List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B(G_B2_0, List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_RuntimeMethod_var);
|
|
G_B3_0 = L_4;
|
|
G_B3_1 = G_B2_1;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
G_B3_1->___elements = G_B3_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&G_B3_1->___elements), (void*)G_B3_0);
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_5 = __this->___m_Collections;
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_6 = L_5;
|
|
if (L_6)
|
|
{
|
|
G_B5_0 = L_6;
|
|
G_B5_1 = (&V_0);
|
|
goto IL_004a;
|
|
}
|
|
G_B4_0 = L_6;
|
|
G_B4_1 = (&V_0);
|
|
}
|
|
{
|
|
G_B6_0 = ((HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5*)(NULL));
|
|
G_B6_1 = G_B4_1;
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
NullCheck(G_B5_0);
|
|
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* L_7;
|
|
L_7 = List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8(G_B5_0, List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8_RuntimeMethod_var);
|
|
G_B6_0 = L_7;
|
|
G_B6_1 = G_B5_1;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
G_B6_1->___collections = G_B6_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&G_B6_1->___collections), (void*)G_B6_0);
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_8 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:1253>
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 HIDDeviceDescriptorBuilder_Finish_m552FCC29177FEA550ED85A2AFA420F1A338F561B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDDeviceDescriptorBuilder_t42590B843E05A693657132510937C4B2D601C08C*>(__this + _offset);
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 _returnValue;
|
|
_returnValue = HIDDeviceDescriptorBuilder_Finish_m552FCC29177FEA550ED85A2AFA420F1A338F561B(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25198
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass13_0__ctor_m295EE80AEC5A7DB5358278A01E04954C665BD055 (U3CU3Ec__DisplayClass13_0_tF99D0DA1843466C43BE570E944288EC7EDE0E4AD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25199
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D* U3CU3Ec__DisplayClass13_0_U3COnFindLayoutForDeviceU3Eb__0_mBF9CB9BEA632DA9346DF855202A5FDCC23BBCEBD (U3CU3Ec__DisplayClass13_0_tF99D0DA1843466C43BE570E944288EC7EDE0E4AD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HID.cs:197>
|
|
HIDLayoutBuilder_t1B1FA825DFA02D93183E7C1B3C416D4A43D56553* L_0 = __this->___layout;
|
|
NullCheck(L_0);
|
|
InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D* L_1;
|
|
L_1 = HIDLayoutBuilder_Build_mA8F12656656BF3BC1D6D6C51B87E030309C9D8A9(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25200
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HIDParser_ParseReportDescriptor_m09EA84744047F1CEEAA416B641CC17AEA34DB9C7 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_buffer, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* ___1_deviceDescriptor, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:37>
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_buffer;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:38>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HIDParser_ParseReportDescriptor_m09EA84744047F1CEEAA416B641CC17AEA34DB9C7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:40>
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_buffer;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = L_2;
|
|
V_1 = L_3;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = V_1;
|
|
NullCheck(L_4);
|
|
if (((int32_t)(((RuntimeArray*)L_4)->max_length)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
V_0 = (uint8_t*)((uintptr_t)0);
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_1;
|
|
NullCheck(L_5);
|
|
V_0 = (uint8_t*)((uintptr_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:42>
|
|
uint8_t* L_6 = V_0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ___0_buffer;
|
|
NullCheck(L_7);
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* L_8 = ___1_deviceDescriptor;
|
|
bool L_9;
|
|
L_9 = HIDParser_ParseReportDescriptor_mEDBCC4C1B27054EB99A738735C1F41CD6472E62A(L_6, ((int32_t)(((RuntimeArray*)L_7)->max_length)), L_8, NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// Method Definition Index: 25201
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HIDParser_ParseReportDescriptor_mEDBCC4C1B27054EB99A738735C1F41CD6472E62A (uint8_t* ___0_bufferPtr, int32_t ___1_bufferLength, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* ___2_deviceDescriptor, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mE6025392536B1B57D5D39AD09482558157C4CBAA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m6FBB9F9F70B0D21E92C7D13E26DDC8EA5A70ACB3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mEFED85B7C6AF40AEC5B34E6C11C3C18BF631B3B5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m12163A5ACF7868965793C27BB4086FA446FE4082_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m2193302E2DBF37D55C25EE317E0BDE040BE5CB52_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mAA78D7E536ED334B3A2ACF6807CC5CFFD12A1F04_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m62F2D5DF7AD292BC7D658B73628876B1EFDE0EB2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_mF8C569EAE11C005E295F2F7CFD63AF6107206290_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t268ADAE63E623B42094720668F8DB571CF6085E6_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t66029D02EA129D03A082E470EB98C85812301A0C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* V_2 = NULL;
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* V_3 = NULL;
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
uint8_t* V_6 = NULL;
|
|
uint8_t* V_7 = NULL;
|
|
uint8_t V_8 = 0x0;
|
|
uint8_t V_9 = 0x0;
|
|
int32_t V_10 = 0;
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
int32_t V_12 = 0;
|
|
int32_t V_13 = 0;
|
|
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F V_14;
|
|
memset((&V_14), 0, sizeof(V_14));
|
|
int32_t V_15 = 0;
|
|
int32_t V_16 = 0;
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 V_17;
|
|
memset((&V_17), 0, sizeof(V_17));
|
|
int32_t V_18 = 0;
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED V_20;
|
|
memset((&V_20), 0, sizeof(V_20));
|
|
Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8 V_21;
|
|
memset((&V_21), 0, sizeof(V_21));
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 V_22;
|
|
memset((&V_22), 0, sizeof(V_22));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B2_0 = 0;
|
|
int32_t G_B58_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:49>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:50>
|
|
il2cpp_codegen_initobj((&V_1), sizeof(HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:53>
|
|
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_0 = (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6*)il2cpp_codegen_object_new(List_1_t268ADAE63E623B42094720668F8DB571CF6085E6_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m12163A5ACF7868965793C27BB4086FA446FE4082(L_0, List_1__ctor_m12163A5ACF7868965793C27BB4086FA446FE4082_RuntimeMethod_var);
|
|
V_2 = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:54>
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_1 = (List_1_t66029D02EA129D03A082E470EB98C85812301A0C*)il2cpp_codegen_object_new(List_1_t66029D02EA129D03A082E470EB98C85812301A0C_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C(L_1, List_1__ctor_m1C404C23E257FAF98E7A6640A1DC48D1F0148C8C_RuntimeMethod_var);
|
|
V_3 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:55>
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_2 = (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A*)il2cpp_codegen_object_new(List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m2193302E2DBF37D55C25EE317E0BDE040BE5CB52(L_2, List_1__ctor_m2193302E2DBF37D55C25EE317E0BDE040BE5CB52_RuntimeMethod_var);
|
|
V_4 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:56>
|
|
V_5 = (-1);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:59>
|
|
uint8_t* L_3 = ___0_bufferPtr;
|
|
int32_t L_4 = ___1_bufferLength;
|
|
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, L_4));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:60>
|
|
uint8_t* L_5 = ___0_bufferPtr;
|
|
V_7 = L_5;
|
|
goto IL_0535;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:63>
|
|
uint8_t* L_6 = V_7;
|
|
int32_t L_7 = (*(L_6));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:66>
|
|
int32_t L_8 = L_7;
|
|
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)254)))))
|
|
{
|
|
G_B3_0 = L_8;
|
|
goto IL_0049;
|
|
}
|
|
G_B2_0 = L_8;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:67>
|
|
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_9 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var)));
|
|
NotImplementedException__ctor_m8339D1A685E8D77CAC9D3260C06B38B5C7CA7742(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3BA4C63055FA6CF5A2214085C6E3F3F666044A57)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HIDParser_ParseReportDescriptor_mEDBCC4C1B27054EB99A738735C1F41CD6472E62A_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:70>
|
|
int32_t L_10 = G_B3_0;
|
|
V_8 = (uint8_t)((int32_t)(uint8_t)((int32_t)(L_10&3)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:71>
|
|
V_9 = (uint8_t)((int32_t)(uint8_t)((int32_t)(L_10&((int32_t)252))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:72>
|
|
uint8_t* L_11 = V_7;
|
|
V_7 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, 1));
|
|
uint8_t L_12 = V_9;
|
|
if ((!(((uint32_t)L_12) <= ((uint32_t)((int32_t)84)))))
|
|
{
|
|
goto IL_00d8;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_13 = V_9;
|
|
if ((!(((uint32_t)L_13) <= ((uint32_t)((int32_t)24)))))
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_14 = V_9;
|
|
if ((!(((uint32_t)L_14) <= ((uint32_t)8))))
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_15 = V_9;
|
|
if ((((int32_t)L_15) == ((int32_t)4)))
|
|
{
|
|
goto IL_0167;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_16 = V_9;
|
|
if ((((int32_t)L_16) == ((int32_t)8)))
|
|
{
|
|
goto IL_027f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
uint8_t L_17 = V_9;
|
|
if ((((int32_t)L_17) == ((int32_t)((int32_t)20))))
|
|
{
|
|
goto IL_01d7;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_18 = V_9;
|
|
if ((((int32_t)L_18) == ((int32_t)((int32_t)24))))
|
|
{
|
|
goto IL_0296;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
uint8_t L_19 = V_9;
|
|
if ((!(((uint32_t)L_19) <= ((uint32_t)((int32_t)40)))))
|
|
{
|
|
goto IL_00b8;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_20 = V_9;
|
|
if ((((int32_t)L_20) == ((int32_t)((int32_t)36))))
|
|
{
|
|
goto IL_01f3;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_21 = V_9;
|
|
if ((((int32_t)L_21) == ((int32_t)((int32_t)40))))
|
|
{
|
|
goto IL_02b2;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_00b8:
|
|
{
|
|
uint8_t L_22 = V_9;
|
|
if ((((int32_t)L_22) == ((int32_t)((int32_t)52))))
|
|
{
|
|
goto IL_020f;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_23 = V_9;
|
|
if ((((int32_t)L_23) == ((int32_t)((int32_t)68))))
|
|
{
|
|
goto IL_022b;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_24 = V_9;
|
|
if ((((int32_t)L_24) == ((int32_t)((int32_t)84))))
|
|
{
|
|
goto IL_0247;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_00d8:
|
|
{
|
|
uint8_t L_25 = V_9;
|
|
if ((!(((uint32_t)L_25) <= ((uint32_t)((int32_t)132)))))
|
|
{
|
|
goto IL_011b;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_26 = V_9;
|
|
if ((!(((uint32_t)L_26) <= ((uint32_t)((int32_t)116)))))
|
|
{
|
|
goto IL_00fe;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_27 = V_9;
|
|
if ((((int32_t)L_27) == ((int32_t)((int32_t)100))))
|
|
{
|
|
goto IL_0263;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_28 = V_9;
|
|
if ((((int32_t)L_28) == ((int32_t)((int32_t)116))))
|
|
{
|
|
goto IL_019f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_00fe:
|
|
{
|
|
uint8_t L_29 = V_9;
|
|
if ((((int32_t)L_29) == ((int32_t)((int32_t)128))))
|
|
{
|
|
goto IL_0387;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_30 = V_9;
|
|
if ((((int32_t)L_30) == ((int32_t)((int32_t)132))))
|
|
{
|
|
goto IL_01bb;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_011b:
|
|
{
|
|
uint8_t L_31 = V_9;
|
|
if ((!(((uint32_t)L_31) <= ((uint32_t)((int32_t)148)))))
|
|
{
|
|
goto IL_013e;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_32 = V_9;
|
|
if ((((int32_t)L_32) == ((int32_t)((int32_t)144))))
|
|
{
|
|
goto IL_0387;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_33 = V_9;
|
|
if ((((int32_t)L_33) == ((int32_t)((int32_t)148))))
|
|
{
|
|
goto IL_0183;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_013e:
|
|
{
|
|
uint8_t L_34 = V_9;
|
|
if ((((int32_t)L_34) == ((int32_t)((int32_t)160))))
|
|
{
|
|
goto IL_02ce;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_35 = V_9;
|
|
if ((((int32_t)L_35) == ((int32_t)((int32_t)176))))
|
|
{
|
|
goto IL_0387;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_36 = V_9;
|
|
if ((((int32_t)L_36) == ((int32_t)((int32_t)192))))
|
|
{
|
|
goto IL_0340;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_0167:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:82>
|
|
uint8_t L_37 = V_8;
|
|
uint8_t* L_38 = V_7;
|
|
uint8_t* L_39 = V_6;
|
|
int32_t L_40;
|
|
L_40 = HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5(L_37, L_38, L_39, NULL);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_41;
|
|
memset((&L_41), 0, sizeof(L_41));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_41), L_40, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
(&V_1)->___usagePage = L_41;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:83>
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_0183:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:87>
|
|
uint8_t L_42 = V_8;
|
|
uint8_t* L_43 = V_7;
|
|
uint8_t* L_44 = V_6;
|
|
int32_t L_45;
|
|
L_45 = HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5(L_42, L_43, L_44, NULL);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_46;
|
|
memset((&L_46), 0, sizeof(L_46));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_46), L_45, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
(&V_1)->___reportCount = L_46;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:88>
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_019f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:92>
|
|
uint8_t L_47 = V_8;
|
|
uint8_t* L_48 = V_7;
|
|
uint8_t* L_49 = V_6;
|
|
int32_t L_50;
|
|
L_50 = HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5(L_47, L_48, L_49, NULL);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_51;
|
|
memset((&L_51), 0, sizeof(L_51));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_51), L_50, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
(&V_1)->___reportSize = L_51;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:93>
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_01bb:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:97>
|
|
uint8_t L_52 = V_8;
|
|
uint8_t* L_53 = V_7;
|
|
uint8_t* L_54 = V_6;
|
|
int32_t L_55;
|
|
L_55 = HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5(L_52, L_53, L_54, NULL);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_56;
|
|
memset((&L_56), 0, sizeof(L_56));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_56), L_55, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
(&V_1)->___reportId = L_56;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:98>
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_01d7:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:102>
|
|
uint8_t L_57 = V_8;
|
|
uint8_t* L_58 = V_7;
|
|
uint8_t* L_59 = V_6;
|
|
int32_t L_60;
|
|
L_60 = HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5(L_57, L_58, L_59, NULL);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_61;
|
|
memset((&L_61), 0, sizeof(L_61));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_61), L_60, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
(&V_1)->___logicalMinimum = L_61;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:103>
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_01f3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:107>
|
|
uint8_t L_62 = V_8;
|
|
uint8_t* L_63 = V_7;
|
|
uint8_t* L_64 = V_6;
|
|
int32_t L_65;
|
|
L_65 = HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5(L_62, L_63, L_64, NULL);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_66;
|
|
memset((&L_66), 0, sizeof(L_66));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_66), L_65, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
(&V_1)->___logicalMaximum = L_66;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:108>
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_020f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:112>
|
|
uint8_t L_67 = V_8;
|
|
uint8_t* L_68 = V_7;
|
|
uint8_t* L_69 = V_6;
|
|
int32_t L_70;
|
|
L_70 = HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5(L_67, L_68, L_69, NULL);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_71;
|
|
memset((&L_71), 0, sizeof(L_71));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_71), L_70, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
(&V_1)->___physicalMinimum = L_71;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:113>
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_022b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:117>
|
|
uint8_t L_72 = V_8;
|
|
uint8_t* L_73 = V_7;
|
|
uint8_t* L_74 = V_6;
|
|
int32_t L_75;
|
|
L_75 = HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5(L_72, L_73, L_74, NULL);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_76;
|
|
memset((&L_76), 0, sizeof(L_76));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_76), L_75, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
(&V_1)->___physicalMaximum = L_76;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:118>
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_0247:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:122>
|
|
uint8_t L_77 = V_8;
|
|
uint8_t* L_78 = V_7;
|
|
uint8_t* L_79 = V_6;
|
|
int32_t L_80;
|
|
L_80 = HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5(L_77, L_78, L_79, NULL);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_81;
|
|
memset((&L_81), 0, sizeof(L_81));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_81), L_80, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
(&V_1)->___unitExponent = L_81;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:123>
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_0263:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:127>
|
|
uint8_t L_82 = V_8;
|
|
uint8_t* L_83 = V_7;
|
|
uint8_t* L_84 = V_6;
|
|
int32_t L_85;
|
|
L_85 = HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5(L_82, L_83, L_84, NULL);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_86;
|
|
memset((&L_86), 0, sizeof(L_86));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_86), L_85, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
(&V_1)->___unit = L_86;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:128>
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_027f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:135>
|
|
uint8_t L_87 = V_8;
|
|
uint8_t* L_88 = V_7;
|
|
uint8_t* L_89 = V_6;
|
|
int32_t L_90;
|
|
L_90 = HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5(L_87, L_88, L_89, NULL);
|
|
HIDItemStateLocal_SetUsage_mF18CA9692FAAB72115B8E30B671F75642F0CEF26((&V_0), L_90, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:136>
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_0296:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:140>
|
|
uint8_t L_91 = V_8;
|
|
uint8_t* L_92 = V_7;
|
|
uint8_t* L_93 = V_6;
|
|
int32_t L_94;
|
|
L_94 = HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5(L_91, L_92, L_93, NULL);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_95;
|
|
memset((&L_95), 0, sizeof(L_95));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_95), L_94, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
(&V_0)->___usageMinimum = L_95;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:141>
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_02b2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:145>
|
|
uint8_t L_96 = V_8;
|
|
uint8_t* L_97 = V_7;
|
|
uint8_t* L_98 = V_6;
|
|
int32_t L_99;
|
|
L_99 = HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5(L_96, L_97, L_98, NULL);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_100;
|
|
memset((&L_100), 0, sizeof(L_100));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_100), L_99, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
(&V_0)->___usageMaximum = L_100;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:146>
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_02ce:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:155>
|
|
int32_t L_101 = V_5;
|
|
V_10 = L_101;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:156>
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_102 = V_4;
|
|
NullCheck(L_102);
|
|
int32_t L_103;
|
|
L_103 = List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_inline(L_102, List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_RuntimeMethod_var);
|
|
V_5 = L_103;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:157>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:158>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:159>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:160>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:161>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:162>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:163>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:164>
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_104 = V_4;
|
|
il2cpp_codegen_initobj((&V_17), sizeof(HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7));
|
|
uint8_t L_105 = V_8;
|
|
uint8_t* L_106 = V_7;
|
|
uint8_t* L_107 = V_6;
|
|
int32_t L_108;
|
|
L_108 = HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5(L_105, L_106, L_107, NULL);
|
|
(&V_17)->___type = L_108;
|
|
int32_t L_109 = V_10;
|
|
(&V_17)->___parent = L_109;
|
|
int32_t L_110;
|
|
L_110 = HIDItemStateGlobal_GetUsagePage_m2730AFF3A621069D5CA7B93423F53AF9145D5B92((&V_1), 0, (&V_0), NULL);
|
|
(&V_17)->___usagePage = L_110;
|
|
int32_t L_111;
|
|
L_111 = HIDItemStateLocal_GetUsage_m12B69C95479759524D12DBC0EED1737B2A758DBA((&V_0), 0, NULL);
|
|
(&V_17)->___usage = L_111;
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_112 = V_3;
|
|
NullCheck(L_112);
|
|
int32_t L_113;
|
|
L_113 = List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_inline(L_112, List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var);
|
|
(&V_17)->___firstChild = L_113;
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_114 = V_17;
|
|
NullCheck(L_104);
|
|
List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_inline(L_104, L_114, List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:166>
|
|
HIDItemStateLocal_Reset_mA29E5C744E007900882FDF49B0DB660D6CA666C5((&V_0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:167>
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_0340:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:171>
|
|
int32_t L_115 = V_5;
|
|
if ((!(((uint32_t)L_115) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0347;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:172>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0347:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:175>
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_116 = V_4;
|
|
int32_t L_117 = V_5;
|
|
NullCheck(L_116);
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_118;
|
|
L_118 = List_1_get_Item_mAA78D7E536ED334B3A2ACF6807CC5CFFD12A1F04(L_116, L_117, List_1_get_Item_mAA78D7E536ED334B3A2ACF6807CC5CFFD12A1F04_RuntimeMethod_var);
|
|
V_11 = L_118;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:176>
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_119 = V_3;
|
|
NullCheck(L_119);
|
|
int32_t L_120;
|
|
L_120 = List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_inline(L_119, List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_RuntimeMethod_var);
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_121 = V_11;
|
|
int32_t L_122 = L_121.___firstChild;
|
|
(&V_11)->___childCount = ((int32_t)il2cpp_codegen_subtract(L_120, L_122));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:177>
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_123 = V_4;
|
|
int32_t L_124 = V_5;
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_125 = V_11;
|
|
NullCheck(L_123);
|
|
List_1_set_Item_m62F2D5DF7AD292BC7D658B73628876B1EFDE0EB2(L_123, L_124, L_125, List_1_set_Item_m62F2D5DF7AD292BC7D658B73628876B1EFDE0EB2_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:180>
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_126 = V_11;
|
|
int32_t L_127 = L_126.___parent;
|
|
V_5 = L_127;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:182>
|
|
HIDItemStateLocal_Reset_mA29E5C744E007900882FDF49B0DB660D6CA666C5((&V_0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:183>
|
|
goto IL_0521;
|
|
}
|
|
|
|
IL_0387:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:191>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:192>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:193>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:194>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:195>
|
|
uint8_t L_128 = V_9;
|
|
if ((((int32_t)L_128) == ((int32_t)((int32_t)128))))
|
|
{
|
|
goto IL_039f;
|
|
}
|
|
}
|
|
{
|
|
uint8_t L_129 = V_9;
|
|
if ((((int32_t)L_129) == ((int32_t)((int32_t)144))))
|
|
{
|
|
goto IL_039c;
|
|
}
|
|
}
|
|
{
|
|
G_B58_0 = 3;
|
|
goto IL_03a0;
|
|
}
|
|
|
|
IL_039c:
|
|
{
|
|
G_B58_0 = 2;
|
|
goto IL_03a0;
|
|
}
|
|
|
|
IL_039f:
|
|
{
|
|
G_B58_0 = 1;
|
|
}
|
|
|
|
IL_03a0:
|
|
{
|
|
V_12 = G_B58_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:198>
|
|
HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1 L_130 = V_1;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_131 = L_130.___reportId;
|
|
int32_t L_132 = V_12;
|
|
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_133 = V_2;
|
|
int32_t L_134;
|
|
L_134 = HIDReportData_FindOrAddReport_m472C5617A637FB2BE6BC85591E0696057BEA815E(L_131, L_132, L_133, NULL);
|
|
V_13 = L_134;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:199>
|
|
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_135 = V_2;
|
|
int32_t L_136 = V_13;
|
|
NullCheck(L_135);
|
|
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_137;
|
|
L_137 = List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434(L_135, L_136, List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_RuntimeMethod_var);
|
|
V_14 = L_137;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:203>
|
|
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_138 = V_14;
|
|
int32_t L_139 = L_138.___currentBitOffset;
|
|
if (L_139)
|
|
{
|
|
goto IL_03db;
|
|
}
|
|
}
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_140 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&(&V_1)->___reportId);
|
|
bool L_141;
|
|
L_141 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_140, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
if (!L_141)
|
|
{
|
|
goto IL_03db;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:204>
|
|
(&V_14)->___currentBitOffset = 8;
|
|
}
|
|
|
|
IL_03db:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:207>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_142 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&(&V_1)->___reportCount);
|
|
int32_t L_143;
|
|
L_143 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_142, 1, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
|
|
V_15 = L_143;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:208>
|
|
uint8_t L_144 = V_8;
|
|
uint8_t* L_145 = V_7;
|
|
uint8_t* L_146 = V_6;
|
|
int32_t L_147;
|
|
L_147 = HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5(L_144, L_145, L_146, NULL);
|
|
V_16 = L_147;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:209>
|
|
V_18 = 0;
|
|
goto IL_0507;
|
|
}
|
|
|
|
IL_03ff:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:211>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:212>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:213>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:214>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:215>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:216>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:217>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:218>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:219>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:220>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:221>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:222>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:223>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:224>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:225>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:226>
|
|
il2cpp_codegen_initobj((&V_20), sizeof(HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED));
|
|
int32_t L_148 = V_18;
|
|
int32_t L_149;
|
|
L_149 = HIDItemStateLocal_GetUsage_m12B69C95479759524D12DBC0EED1737B2A758DBA((&V_0), L_148, NULL);
|
|
(&V_20)->___usage = ((int32_t)(L_149&((int32_t)65535)));
|
|
int32_t L_150 = V_18;
|
|
int32_t L_151;
|
|
L_151 = HIDItemStateGlobal_GetUsagePage_m2730AFF3A621069D5CA7B93423F53AF9145D5B92((&V_1), L_150, (&V_0), NULL);
|
|
(&V_20)->___usagePage = L_151;
|
|
int32_t L_152 = V_12;
|
|
(&V_20)->___reportType = L_152;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_153 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&(&V_1)->___reportSize);
|
|
int32_t L_154;
|
|
L_154 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_153, 8, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
|
|
(&V_20)->___reportSizeInBits = L_154;
|
|
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_155 = V_14;
|
|
int32_t L_156 = L_155.___currentBitOffset;
|
|
(&V_20)->___reportOffsetInBits = L_156;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_157 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&(&V_1)->___reportId);
|
|
int32_t L_158;
|
|
L_158 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_157, 1, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
|
|
(&V_20)->___reportId = L_158;
|
|
int32_t L_159 = V_16;
|
|
(&V_20)->___flags = L_159;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_160 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&(&V_1)->___logicalMinimum);
|
|
int32_t L_161;
|
|
L_161 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_160, 0, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
|
|
(&V_20)->___logicalMin = L_161;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_162 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&(&V_1)->___logicalMaximum);
|
|
int32_t L_163;
|
|
L_163 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_162, 0, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
|
|
(&V_20)->___logicalMax = L_163;
|
|
int32_t L_164;
|
|
L_164 = HIDItemStateGlobal_GetPhysicalMin_m024C068044E6BCAF50A7B916DEE32027CBCBFE0A((&V_1), NULL);
|
|
(&V_20)->___physicalMin = L_164;
|
|
int32_t L_165;
|
|
L_165 = HIDItemStateGlobal_GetPhysicalMax_mC33E0323DB7C0817C2951AD435D56E151D705490((&V_1), NULL);
|
|
(&V_20)->___physicalMax = L_165;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_166 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&(&V_1)->___unitExponent);
|
|
int32_t L_167;
|
|
L_167 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_166, 0, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
|
|
(&V_20)->___unitExponent = L_167;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_168 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&(&V_1)->___unit);
|
|
int32_t L_169;
|
|
L_169 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_168, 0, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
|
|
(&V_20)->___unit = L_169;
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_170 = V_20;
|
|
V_19 = L_170;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:227>
|
|
int32_t* L_171 = (int32_t*)(&(&V_14)->___currentBitOffset);
|
|
int32_t* L_172 = L_171;
|
|
int32_t L_173 = *((int32_t*)L_172);
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_174 = V_19;
|
|
int32_t L_175 = L_174.___reportSizeInBits;
|
|
*((int32_t*)L_172) = (int32_t)((int32_t)il2cpp_codegen_add(L_173, L_175));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:228>
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_176 = V_3;
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_177 = V_19;
|
|
NullCheck(L_176);
|
|
List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_inline(L_176, L_177, List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:209>
|
|
int32_t L_178 = V_18;
|
|
V_18 = ((int32_t)il2cpp_codegen_add(L_178, 1));
|
|
}
|
|
|
|
IL_0507:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:209>
|
|
int32_t L_179 = V_18;
|
|
int32_t L_180 = V_15;
|
|
if ((((int32_t)L_179) < ((int32_t)L_180)))
|
|
{
|
|
goto IL_03ff;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:230>
|
|
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_181 = V_2;
|
|
int32_t L_182 = V_13;
|
|
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_183 = V_14;
|
|
NullCheck(L_181);
|
|
List_1_set_Item_mF8C569EAE11C005E295F2F7CFD63AF6107206290(L_181, L_182, L_183, List_1_set_Item_mF8C569EAE11C005E295F2F7CFD63AF6107206290_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:232>
|
|
HIDItemStateLocal_Reset_mA29E5C744E007900882FDF49B0DB660D6CA666C5((&V_0), NULL);
|
|
}
|
|
|
|
IL_0521:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:236>
|
|
uint8_t L_184 = V_8;
|
|
if ((!(((uint32_t)L_184) == ((uint32_t)3))))
|
|
{
|
|
goto IL_052e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:237>
|
|
uint8_t* L_185 = V_7;
|
|
V_7 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_185, 4));
|
|
goto IL_0535;
|
|
}
|
|
|
|
IL_052e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:239>
|
|
uint8_t* L_186 = V_7;
|
|
uint8_t L_187 = V_8;
|
|
V_7 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_186, (int32_t)L_187));
|
|
}
|
|
|
|
IL_0535:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:61>
|
|
uint8_t* L_188 = V_7;
|
|
uint8_t* L_189 = V_6;
|
|
if ((!(((uintptr_t)L_188) >= ((uintptr_t)L_189))))
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:242>
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* L_190 = ___2_deviceDescriptor;
|
|
List_1_t66029D02EA129D03A082E470EB98C85812301A0C* L_191 = V_3;
|
|
NullCheck(L_191);
|
|
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* L_192;
|
|
L_192 = List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B(L_191, List_1_ToArray_mF2ABBCD005E30F6A098FE9731EFE99E900CD934B_RuntimeMethod_var);
|
|
L_190->___elements = L_192;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_190->___elements), (void*)L_192);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:243>
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* L_193 = ___2_deviceDescriptor;
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_194 = V_4;
|
|
NullCheck(L_194);
|
|
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* L_195;
|
|
L_195 = List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8(L_194, List_1_ToArray_mC29C8A40E49A77924DB16DAF5B00321639873DB8_RuntimeMethod_var);
|
|
L_193->___collections = L_195;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_193->___collections), (void*)L_195);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:247>
|
|
List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* L_196 = V_4;
|
|
NullCheck(L_196);
|
|
Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8 L_197;
|
|
L_197 = List_1_GetEnumerator_mEFED85B7C6AF40AEC5B34E6C11C3C18BF631B3B5(L_196, List_1_GetEnumerator_mEFED85B7C6AF40AEC5B34E6C11C3C18BF631B3B5_RuntimeMethod_var);
|
|
V_21 = L_197;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_05a6:
|
|
{
|
|
Enumerator_Dispose_mE6025392536B1B57D5D39AD09482558157C4CBAA((&V_21), Enumerator_Dispose_mE6025392536B1B57D5D39AD09482558157C4CBAA_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_059b_1;
|
|
}
|
|
|
|
IL_0562_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:247>
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_198;
|
|
L_198 = Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_inline((&V_21), Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_RuntimeMethod_var);
|
|
V_22 = L_198;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:249>
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_199 = V_22;
|
|
int32_t L_200 = L_199.___parent;
|
|
if ((!(((uint32_t)L_200) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_059b_1;
|
|
}
|
|
}
|
|
{
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_201 = V_22;
|
|
int32_t L_202 = L_201.___type;
|
|
if ((!(((uint32_t)L_202) == ((uint32_t)1))))
|
|
{
|
|
goto IL_059b_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:251>
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* L_203 = ___2_deviceDescriptor;
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_204 = V_22;
|
|
int32_t L_205 = L_204.___usage;
|
|
L_203->___usage = L_205;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:252>
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59* L_206 = ___2_deviceDescriptor;
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_207 = V_22;
|
|
int32_t L_208 = L_207.___usagePage;
|
|
L_206->___usagePage = L_208;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:253>
|
|
goto IL_05b4;
|
|
}
|
|
|
|
IL_059b_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:247>
|
|
bool L_209;
|
|
L_209 = Enumerator_MoveNext_m6FBB9F9F70B0D21E92C7D13E26DDC8EA5A70ACB3((&V_21), Enumerator_MoveNext_m6FBB9F9F70B0D21E92C7D13E26DDC8EA5A70ACB3_RuntimeMethod_var);
|
|
if (L_209)
|
|
{
|
|
goto IL_0562_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_05b4;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_05b4:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:257>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25202
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDParser_ReadData_m2620C961A9D0253043D7EFAF6C88C058D22BC4D5 (int32_t ___0_itemSize, uint8_t* ___1_currentPtr, uint8_t* ___2_endPtr, const RuntimeMethod* method)
|
|
{
|
|
uint8_t V_0 = 0x0;
|
|
uint8_t V_1 = 0x0;
|
|
uint8_t V_2 = 0x0;
|
|
uint8_t V_3 = 0x0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:262>
|
|
int32_t L_0 = ___0_itemSize;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:263>
|
|
return 0;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:266>
|
|
int32_t L_1 = ___0_itemSize;
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:268>
|
|
uint8_t* L_2 = ___1_currentPtr;
|
|
uint8_t* L_3 = ___2_endPtr;
|
|
if ((!(((uintptr_t)L_2) >= ((uintptr_t)L_3))))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:269>
|
|
return 0;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:270>
|
|
uint8_t* L_4 = ___1_currentPtr;
|
|
int32_t L_5 = (*(L_4));
|
|
return L_5;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:274>
|
|
int32_t L_6 = ___0_itemSize;
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)2))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:276>
|
|
uint8_t* L_7 = ___1_currentPtr;
|
|
uint8_t* L_8 = ___2_endPtr;
|
|
if ((!(((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, 2))) >= ((uintptr_t)L_8))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:277>
|
|
return 0;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:278>
|
|
uint8_t* L_9 = ___1_currentPtr;
|
|
int32_t L_10 = (*(L_9));
|
|
V_0 = (uint8_t)L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:279>
|
|
uint8_t* L_11 = ___1_currentPtr;
|
|
int32_t L_12 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, 1))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:280>
|
|
uint8_t L_13 = V_0;
|
|
return ((int32_t)(((int32_t)(L_12<<8))|(int32_t)L_13));
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:284>
|
|
int32_t L_14 = ___0_itemSize;
|
|
if ((!(((uint32_t)L_14) == ((uint32_t)3))))
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:286>
|
|
uint8_t* L_15 = ___1_currentPtr;
|
|
uint8_t* L_16 = ___2_endPtr;
|
|
if ((!(((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_15, 4))) >= ((uintptr_t)L_16))))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:287>
|
|
return 0;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:289>
|
|
uint8_t* L_17 = ___1_currentPtr;
|
|
int32_t L_18 = (*(L_17));
|
|
V_1 = (uint8_t)L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:290>
|
|
uint8_t* L_19 = ___1_currentPtr;
|
|
int32_t L_20 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, 1))));
|
|
V_2 = (uint8_t)L_20;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:291>
|
|
uint8_t* L_21 = ___1_currentPtr;
|
|
int32_t L_22 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_21, 2))));
|
|
V_3 = (uint8_t)L_22;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:292>
|
|
uint8_t* L_23 = ___1_currentPtr;
|
|
int32_t L_24 = (*(((uint8_t*)il2cpp_codegen_add((intptr_t)L_23, 3))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:294>
|
|
uint8_t L_25 = V_3;
|
|
uint8_t L_26 = V_2;
|
|
uint8_t L_27 = V_1;
|
|
return ((int32_t)(((int32_t)(((int32_t)(((int32_t)(L_24<<((int32_t)24)))|((int32_t)((int32_t)L_25<<((int32_t)24)))))|((int32_t)((int32_t)L_26<<8))))|(int32_t)L_27));
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:298>
|
|
return 0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25203
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDReportData_FindOrAddReport_m472C5617A637FB2BE6BC85591E0696057BEA815E (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___0_reportId, int32_t ___1_reportType, List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* ___2_reports, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:309>
|
|
V_0 = 1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:310>
|
|
bool L_0;
|
|
L_0 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&___0_reportId), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:311>
|
|
int32_t L_1;
|
|
L_1 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA((&___0_reportId), Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:313>
|
|
V_1 = 0;
|
|
goto IL_003b;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:315>
|
|
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_2 = ___2_reports;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_4;
|
|
L_4 = List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434(L_2, L_3, List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_RuntimeMethod_var);
|
|
int32_t L_5 = L_4.___reportId;
|
|
int32_t L_6 = V_0;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_7 = ___2_reports;
|
|
int32_t L_8 = V_1;
|
|
NullCheck(L_7);
|
|
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_9;
|
|
L_9 = List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434(L_7, L_8, List_1_get_Item_m58597FB382E4BC6EB13E5B050EBDCB9E2AE89434_RuntimeMethod_var);
|
|
int32_t L_10 = L_9.___reportType;
|
|
int32_t L_11 = ___1_reportType;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:316>
|
|
int32_t L_12 = V_1;
|
|
return L_12;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:313>
|
|
int32_t L_13 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:313>
|
|
int32_t L_14 = V_1;
|
|
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_15 = ___2_reports;
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_inline(L_15, List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_RuntimeMethod_var);
|
|
if ((((int32_t)L_14) < ((int32_t)L_16)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:319>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:320>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:321>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:322>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:323>
|
|
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_17 = ___2_reports;
|
|
il2cpp_codegen_initobj((&V_2), sizeof(HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F));
|
|
int32_t L_18 = V_0;
|
|
(&V_2)->___reportId = L_18;
|
|
int32_t L_19 = ___1_reportType;
|
|
(&V_2)->___reportType = L_19;
|
|
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_20 = V_2;
|
|
NullCheck(L_17);
|
|
List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_inline(L_17, L_20, List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:325>
|
|
List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* L_21 = ___2_reports;
|
|
NullCheck(L_21);
|
|
int32_t L_22;
|
|
L_22 = List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_inline(L_21, List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_RuntimeMethod_var);
|
|
return ((int32_t)il2cpp_codegen_subtract(L_22, 1));
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshal_pinvoke(const HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B& unmarshaled, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B____usage_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___usageException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B____usage_FieldInfo_var, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___usageException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshal_pinvoke_back(const HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_pinvoke& marshaled, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B____usage_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___usageException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B____usage_FieldInfo_var, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___usageException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshal_pinvoke_cleanup(HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshal_com(const HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B& unmarshaled, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B____usage_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___usageException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B____usage_FieldInfo_var, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___usageException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshal_com_back(const HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_com& marshaled, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B____usage_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___usageException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B____usage_FieldInfo_var, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___usageException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshal_com_cleanup(HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// Method Definition Index: 25204
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDItemStateLocal_Reset_mA29E5C744E007900882FDF49B0DB660D6CA666C5 (HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* ___0_state, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:380>
|
|
HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* L_0 = ___0_state;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_1 = L_0->___usageList;
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:381>
|
|
HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* L_2 = ___0_state;
|
|
il2cpp_codegen_initobj(L_2, sizeof(HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:382>
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:384>
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_inline(L_4, List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:385>
|
|
HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* L_5 = ___0_state;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_6 = V_0;
|
|
L_5->___usageList = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_5->___usageList), (void*)L_6);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:387>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25205
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDItemStateLocal_SetUsage_mF18CA9692FAAB72115B8E30B671F75642F0CEF26 (HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:392>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_0 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___usage);
|
|
bool L_1;
|
|
L_1 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_0, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:394>
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_2 = __this->___usageList;
|
|
if (L_2)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:395>
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_3 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8(L_3, List_1__ctor_m17F501B5A5C289ECE1B4F3D6EBF05DFA421433F8_RuntimeMethod_var);
|
|
__this->___usageList = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___usageList), (void*)L_3);
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:396>
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_4 = __this->___usageList;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_5 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___usage);
|
|
int32_t L_6;
|
|
L_6 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_5, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
NullCheck(L_4);
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_4, L_6, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:398>
|
|
int32_t L_7 = ___0_value;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_8), L_7, Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var);
|
|
__this->___usage = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:399>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void HIDItemStateLocal_SetUsage_mF18CA9692FAAB72115B8E30B671F75642F0CEF26_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B*>(__this + _offset);
|
|
HIDItemStateLocal_SetUsage_mF18CA9692FAAB72115B8E30B671F75642F0CEF26(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25206
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateLocal_GetUsage_m12B69C95479759524D12DBC0EED1737B2A758DBA (HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:405>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_0 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___usageMinimum);
|
|
bool L_1;
|
|
L_1 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_0, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_2 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___usageMaximum);
|
|
bool L_3;
|
|
L_3 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_2, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:407>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_4 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___usageMinimum);
|
|
int32_t L_5;
|
|
L_5 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_4, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
V_0 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:408>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_6 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___usageMaximum);
|
|
int32_t L_7;
|
|
L_7 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_6, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
V_1 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:410>
|
|
int32_t L_8 = V_1;
|
|
int32_t L_9 = V_0;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract(L_8, L_9));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:411>
|
|
int32_t L_10 = V_2;
|
|
if ((((int32_t)L_10) >= ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:412>
|
|
return 0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:413>
|
|
int32_t L_11 = ___0_index;
|
|
int32_t L_12 = V_2;
|
|
if ((((int32_t)L_11) < ((int32_t)L_12)))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:414>
|
|
int32_t L_13 = V_1;
|
|
return L_13;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:415>
|
|
int32_t L_14 = V_0;
|
|
int32_t L_15 = ___0_index;
|
|
return ((int32_t)il2cpp_codegen_add(L_14, L_15));
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:419>
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_16 = __this->___usageList;
|
|
if (!L_16)
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_17 = __this->___usageList;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_17, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
if ((((int32_t)L_18) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:421>
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_19 = __this->___usageList;
|
|
NullCheck(L_19);
|
|
int32_t L_20;
|
|
L_20 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_19, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
V_3 = L_20;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:422>
|
|
int32_t L_21 = ___0_index;
|
|
int32_t L_22 = V_3;
|
|
if ((((int32_t)L_21) < ((int32_t)L_22)))
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:423>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_23 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___usage);
|
|
int32_t L_24;
|
|
L_24 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_23, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
return L_24;
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:425>
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_25 = __this->___usageList;
|
|
int32_t L_26 = ___0_index;
|
|
NullCheck(L_25);
|
|
int32_t L_27;
|
|
L_27 = List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D(L_25, L_26, List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
|
|
return L_27;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:428>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_28 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___usage);
|
|
bool L_29;
|
|
L_29 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_28, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
if (!L_29)
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:429>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_30 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___usage);
|
|
int32_t L_31;
|
|
L_31 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_30, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
return L_31;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:433>
|
|
return 0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t HIDItemStateLocal_GetUsage_m12B69C95479759524D12DBC0EED1737B2A758DBA_AdjustorThunk (RuntimeObject* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = HIDItemStateLocal_GetUsage_m12B69C95479759524D12DBC0EED1737B2A758DBA(_thisAdjusted, ___0_index, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshal_pinvoke(const HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1& unmarshaled, HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1____usagePage_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___usagePageException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1____usagePage_FieldInfo_var, HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___usagePageException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshal_pinvoke_back(const HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_pinvoke& marshaled, HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1____usagePage_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___usagePageException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1____usagePage_FieldInfo_var, HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___usagePageException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshal_pinvoke_cleanup(HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshal_com(const HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1& unmarshaled, HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1____usagePage_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___usagePageException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1____usagePage_FieldInfo_var, HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___usagePageException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshal_com_back(const HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_com& marshaled, HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1____usagePage_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___usagePageException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1____usagePage_FieldInfo_var, HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___usagePageException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshal_com_cleanup(HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// Method Definition Index: 25207
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateGlobal_GetUsagePage_m2730AFF3A621069D5CA7B93423F53AF9145D5B92 (HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* __this, int32_t ___0_index, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* ___1_localItemState, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:454>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_0 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___usagePage);
|
|
bool L_1;
|
|
L_1 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_0, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
if (L_1)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:456>
|
|
HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* L_2 = ___1_localItemState;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4;
|
|
L_4 = HIDItemStateLocal_GetUsage_m12B69C95479759524D12DBC0EED1737B2A758DBA(L_2, L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:457>
|
|
return (int32_t)(((int32_t)(L_4>>((int32_t)16))));
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:460>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_5 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___usagePage);
|
|
int32_t L_6;
|
|
L_6 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_5, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
return (int32_t)(L_6);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t HIDItemStateGlobal_GetUsagePage_m2730AFF3A621069D5CA7B93423F53AF9145D5B92_AdjustorThunk (RuntimeObject* __this, int32_t ___0_index, HIDItemStateLocal_t9E721CEEC305DEADD9EFD6D8EA6C44129452563B* ___1_localItemState, const RuntimeMethod* method)
|
|
{
|
|
HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = HIDItemStateGlobal_GetUsagePage_m2730AFF3A621069D5CA7B93423F53AF9145D5B92(_thisAdjusted, ___0_index, ___1_localItemState, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25208
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateGlobal_GetPhysicalMin_m024C068044E6BCAF50A7B916DEE32027CBCBFE0A (HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:465>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:466>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_0 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___physicalMinimum);
|
|
bool L_1;
|
|
L_1 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_0, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_2 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___physicalMaximum);
|
|
bool L_3;
|
|
L_3 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_2, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_4 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___physicalMinimum);
|
|
int32_t L_5;
|
|
L_5 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_4, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
if (L_5)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_6 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___physicalMaximum);
|
|
int32_t L_7;
|
|
L_7 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_6, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
if (L_7)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:467>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_8 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___logicalMinimum);
|
|
int32_t L_9;
|
|
L_9 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_8, 0, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
|
|
return L_9;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:468>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_10 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___physicalMinimum);
|
|
int32_t L_11;
|
|
L_11 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_10, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
return L_11;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t HIDItemStateGlobal_GetPhysicalMin_m024C068044E6BCAF50A7B916DEE32027CBCBFE0A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = HIDItemStateGlobal_GetPhysicalMin_m024C068044E6BCAF50A7B916DEE32027CBCBFE0A(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25209
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HIDItemStateGlobal_GetPhysicalMax_mC33E0323DB7C0817C2951AD435D56E151D705490 (HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:473>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:474>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_0 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___physicalMinimum);
|
|
bool L_1;
|
|
L_1 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_0, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_2 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___physicalMaximum);
|
|
bool L_3;
|
|
L_3 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline(L_2, Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_4 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___physicalMinimum);
|
|
int32_t L_5;
|
|
L_5 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_4, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
if (L_5)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_6 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___physicalMaximum);
|
|
int32_t L_7;
|
|
L_7 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_6, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
if (L_7)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:475>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_8 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___logicalMaximum);
|
|
int32_t L_9;
|
|
L_9 = Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9(L_8, 0, Nullable_1_GetValueOrDefault_m0F743BF8CC3F18E8288210EBA987C3DBFA7FC8C9_RuntimeMethod_var);
|
|
return L_9;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDParser.cs:476>
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_10 = (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)(&__this->___physicalMaximum);
|
|
int32_t L_11;
|
|
L_11 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA(L_10, Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var);
|
|
return L_11;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t HIDItemStateGlobal_GetPhysicalMax_mC33E0323DB7C0817C2951AD435D56E151D705490_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDItemStateGlobal_t13CFFB84341A37A71461F07E9637EAD01C2D90C1*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = HIDItemStateGlobal_GetPhysicalMax_mC33E0323DB7C0817C2951AD435D56E151D705490(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25210
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7 HIDSupport_get_supportedHIDUsages_m3E539E8C9392F7899FF517028382F03D53F9756F (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_op_Implicit_m452C9949CC9DB6FEDA4109C319B34666CE36E3C2_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:91>
|
|
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* L_0 = ((HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_StaticFields*)il2cpp_codegen_static_fields_for(HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var))->___s_SupportedHIDUsages;
|
|
ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7 L_1;
|
|
L_1 = ReadOnlyArray_1_op_Implicit_m452C9949CC9DB6FEDA4109C319B34666CE36E3C2(L_0, ReadOnlyArray_1_op_Implicit_m452C9949CC9DB6FEDA4109C319B34666CE36E3C2_RuntimeMethod_var);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25211
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDSupport_set_supportedHIDUsages_mFDE540B50331F6FB7C3106120842B9D45E1BC8A4 (ReadOnlyArray_1_t4E5F2E199C64150C506F6058B4ACA149156276C7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Contains_TisHIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F_mD2995E6FC4E949ABA06D2AA0A1F87BFF2F4BA018_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_ToArray_m7C4848AF221AD3A11F95E50E61A49B4AA1FB58FE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_mB20295F7CC546835AD75D4880A2A81DABB6BE29C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Item_mCB4626E80069288BC1EEF0F558B1B806F59DAE43_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* V_1 = NULL;
|
|
HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D* V_2 = NULL;
|
|
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:94>
|
|
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* L_0;
|
|
L_0 = ReadOnlyArray_1_ToArray_m7C4848AF221AD3A11F95E50E61A49B4AA1FB58FE((&___0_value), ReadOnlyArray_1_ToArray_m7C4848AF221AD3A11F95E50E61A49B4AA1FB58FE_RuntimeMethod_var);
|
|
((HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_StaticFields*)il2cpp_codegen_static_fields_for(HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var))->___s_SupportedHIDUsages = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_StaticFields*)il2cpp_codegen_static_fields_for(HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var))->___s_SupportedHIDUsages), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:97>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_1 = ((InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var))->___s_Manager;
|
|
NullCheck(L_1);
|
|
InputManager_AddAvailableDevicesThatAreNowRecognized_mE0F489C5F28E922D0E4BCBBD115C57037E47BAD3(L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:100>
|
|
V_0 = 0;
|
|
goto IL_006d;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:102>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA L_2;
|
|
L_2 = InputSystem_get_devices_mBE599285E43211ACE15248654A3E3D7DB42C85CA(NULL);
|
|
V_3 = L_2;
|
|
int32_t L_3 = V_0;
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_4;
|
|
L_4 = ReadOnlyArray_1_get_Item_mCB4626E80069288BC1EEF0F558B1B806F59DAE43((&V_3), L_3, ReadOnlyArray_1_get_Item_mCB4626E80069288BC1EEF0F558B1B806F59DAE43_RuntimeMethod_var);
|
|
V_1 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:103>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_5 = V_1;
|
|
V_2 = ((HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D*)IsInstClass((RuntimeObject*)L_5, HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_il2cpp_TypeInfo_var));
|
|
HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D* L_6 = V_2;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* L_7 = ((HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_StaticFields*)il2cpp_codegen_static_fields_for(HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var))->___s_SupportedHIDUsages;
|
|
HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D* L_8 = V_2;
|
|
NullCheck(L_8);
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_9;
|
|
L_9 = HID_get_hidDescriptor_mC184D46A5FBDBA93CEA647FE529637230B01928D(L_8, NULL);
|
|
int32_t L_10 = L_9.___usagePage;
|
|
HID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D* L_11 = V_2;
|
|
NullCheck(L_11);
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_12;
|
|
L_12 = HID_get_hidDescriptor_mC184D46A5FBDBA93CEA647FE529637230B01928D(L_11, NULL);
|
|
int32_t L_13 = L_12.___usage;
|
|
HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F L_14;
|
|
memset((&L_14), 0, sizeof(L_14));
|
|
HIDPageUsage__ctor_m6371674E595E66213116FCAC5B07337261F69783((&L_14), L_10, L_13, NULL);
|
|
bool L_15;
|
|
L_15 = Enumerable_Contains_TisHIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F_mD2995E6FC4E949ABA06D2AA0A1F87BFF2F4BA018((RuntimeObject*)L_7, L_14, Enumerable_Contains_TisHIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F_mD2995E6FC4E949ABA06D2AA0A1F87BFF2F4BA018_RuntimeMethod_var);
|
|
if (L_15)
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:106>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_16 = V_1;
|
|
NullCheck(L_16);
|
|
String_t* L_17;
|
|
L_17 = InputControl_get_layout_mE6054F87BB94A1F1D06355E137A1840B2EFF7971(L_16, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_RemoveLayout_mE8FB9C1D545135A2138A8E9565A9AAF9D960D7E0(L_17, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:107>
|
|
int32_t L_18 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_18, 1));
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:100>
|
|
int32_t L_19 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:100>
|
|
int32_t L_20 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA L_21;
|
|
L_21 = InputSystem_get_devices_mBE599285E43211ACE15248654A3E3D7DB42C85CA(NULL);
|
|
V_3 = L_21;
|
|
int32_t L_22;
|
|
L_22 = ReadOnlyArray_1_get_Count_mB20295F7CC546835AD75D4880A2A81DABB6BE29C_inline((&V_3), ReadOnlyArray_1_get_Count_mB20295F7CC546835AD75D4880A2A81DABB6BE29C_RuntimeMethod_var);
|
|
if ((((int32_t)L_20) < ((int32_t)L_22)))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:110>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25212
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDSupport_Initialize_mB6F4D325B9D7278BBE6AD11487AE7852E37974E7 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HID_OnFindLayoutForDevice_m2744520DC2AA6D10ED88CD05C49CD9EF1EBE29AA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisHID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_m2382634AAE2124CEA4375912F34520030C29D811_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:123>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:124>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:125>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:126>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:127>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:128>
|
|
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* L_0 = (HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD*)(HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD*)SZArrayNew(HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD_il2cpp_TypeInfo_var, (uint32_t)3);
|
|
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* L_1 = L_0;
|
|
HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
HIDPageUsage__ctor_mFFC7DE365DEC0C75BC6E9155D2BDECEC6EAAE96B((&L_2), 4, NULL);
|
|
NullCheck(L_1);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F)L_2);
|
|
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* L_3 = L_1;
|
|
HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
HIDPageUsage__ctor_mFFC7DE365DEC0C75BC6E9155D2BDECEC6EAAE96B((&L_4), 5, NULL);
|
|
NullCheck(L_3);
|
|
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F)L_4);
|
|
HIDPageUsageU5BU5D_t021CBAE17F584DBB0E9E003DA47E89ADE04211CD* L_5 = L_3;
|
|
HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
HIDPageUsage__ctor_mFFC7DE365DEC0C75BC6E9155D2BDECEC6EAAE96B((&L_6), 8, NULL);
|
|
NullCheck(L_5);
|
|
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F)L_6);
|
|
((HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_StaticFields*)il2cpp_codegen_static_fields_for(HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var))->___s_SupportedHIDUsages = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_StaticFields*)il2cpp_codegen_static_fields_for(HIDSupport_t5C3608D2CC97F703021833753A1C2399422128A2_il2cpp_TypeInfo_var))->___s_SupportedHIDUsages), (void*)L_5);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:130>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C));
|
|
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_7 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_RegisterLayout_TisHID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_m2382634AAE2124CEA4375912F34520030C29D811((String_t*)NULL, L_7, InputSystem_RegisterLayout_TisHID_tD20AF18A69B6D30C004B7AC49142DAC24946FC3D_m2382634AAE2124CEA4375912F34520030C29D811_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:131>
|
|
InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E* L_8 = (InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E*)il2cpp_codegen_object_new(InputDeviceFindControlLayoutDelegate_t533E695E7CFD2DEB4FEDA1A9E72D9F5F5AEF4A3E_il2cpp_TypeInfo_var);
|
|
InputDeviceFindControlLayoutDelegate__ctor_mFF49E8C46111B03A6B9AEBDA66C309EF6FACFB78(L_8, NULL, (intptr_t)((void*)HID_OnFindLayoutForDevice_m2744520DC2AA6D10ED88CD05C49CD9EF1EBE29AA_RuntimeMethod_var), NULL);
|
|
InputSystem_add_onFindLayoutForDevice_m45EFFF1289C40BBA4B9AED83192E6EF8994FFB54(L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:148>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25213
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDPageUsage__ctor_m6371674E595E66213116FCAC5B07337261F69783 (HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* __this, int32_t ___0_page, int32_t ___1_usage, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:55>
|
|
int32_t L_0 = ___0_page;
|
|
__this->___page = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:56>
|
|
int32_t L_1 = ___1_usage;
|
|
__this->___usage = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:57>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void HIDPageUsage__ctor_m6371674E595E66213116FCAC5B07337261F69783_AdjustorThunk (RuntimeObject* __this, int32_t ___0_page, int32_t ___1_usage, const RuntimeMethod* method)
|
|
{
|
|
HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F*>(__this + _offset);
|
|
HIDPageUsage__ctor_m6371674E595E66213116FCAC5B07337261F69783(_thisAdjusted, ___0_page, ___1_usage, method);
|
|
}
|
|
// Method Definition Index: 25214
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HIDPageUsage__ctor_mFFC7DE365DEC0C75BC6E9155D2BDECEC6EAAE96B (HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* __this, int32_t ___0_usage, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:64>
|
|
__this->___page = 1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:65>
|
|
int32_t L_0 = ___0_usage;
|
|
__this->___usage = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/HID/HIDSupport.cs:66>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void HIDPageUsage__ctor_mFFC7DE365DEC0C75BC6E9155D2BDECEC6EAAE96B_AdjustorThunk (RuntimeObject* __this, int32_t ___0_usage, const RuntimeMethod* method)
|
|
{
|
|
HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<HIDPageUsage_t13808EE79B93302D9F7E841A0DEEAA6671BA591F*>(__this + _offset);
|
|
HIDPageUsage__ctor_mFFC7DE365DEC0C75BC6E9155D2BDECEC6EAAE96B(_thisAdjusted, ___0_usage, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25215
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnhancedTouchSupport_get_enabled_m009CA5462D8D8C7DF91F130DF7AE699ACF94A283 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:66>
|
|
int32_t L_0 = ((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled;
|
|
return (bool)((((int32_t)L_0) > ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 25216
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_Enable_mD8F0AC9B4B4DDBCA5EA779F35A5C28394D3FF6CE (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_OnDeviceChange_m6F0D816AB57DDD8E83C650DB19CA6DF0A2025BD9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_OnSettingsChange_m6D6CC710C6F174A0E4E9DB6A0A8A78FC60805C96_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_BeginUpdate_mDE8739575E49E8BA2F9FCD789F8962ED390A9EEC_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:85>
|
|
int32_t L_0 = ((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled;
|
|
((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:86>
|
|
int32_t L_1 = ((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled;
|
|
if ((((int32_t)L_1) <= ((int32_t)1)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:87>
|
|
return;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:89>
|
|
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* L_2 = (Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333*)il2cpp_codegen_object_new(Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333_il2cpp_TypeInfo_var);
|
|
Action_2__ctor_m23A4911D82F290811EDC6BFC315C339857526804(L_2, NULL, (intptr_t)((void*)EnhancedTouchSupport_OnDeviceChange_m6F0D816AB57DDD8E83C650DB19CA6DF0A2025BD9_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_add_onDeviceChange_mC1BAF8DE08B2B3F6D0A98D80AE1E4FF5531C60FA(L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:90>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_3 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_3, NULL, (intptr_t)((void*)Touch_BeginUpdate_mDE8739575E49E8BA2F9FCD789F8962ED390A9EEC_RuntimeMethod_var), NULL);
|
|
InputSystem_add_onBeforeUpdate_m022480417EA69F0488F81F112B2D9BED5D65AC5C(L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:91>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_4 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_4, NULL, (intptr_t)((void*)EnhancedTouchSupport_OnSettingsChange_m6D6CC710C6F174A0E4E9DB6A0A8A78FC60805C96_RuntimeMethod_var), NULL);
|
|
InputSystem_add_onSettingsChange_mB957DF29389DFD5D6C2652BDD125CD8A08986F5D(L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:97>
|
|
EnhancedTouchSupport_SetUpState_m00F33D1A4004E8E4396ADD0CA5658676E3FCB9A9(NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:98>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25217
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_Disable_m11AAE1A6CE5F340154C0EB0D95FBC168B01F8B48 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_OnDeviceChange_m6F0D816AB57DDD8E83C650DB19CA6DF0A2025BD9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_OnSettingsChange_m6D6CC710C6F174A0E4E9DB6A0A8A78FC60805C96_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_BeginUpdate_mDE8739575E49E8BA2F9FCD789F8962ED390A9EEC_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:108>
|
|
bool L_0;
|
|
L_0 = EnhancedTouchSupport_get_enabled_m009CA5462D8D8C7DF91F130DF7AE699ACF94A283(NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:109>
|
|
return;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:110>
|
|
int32_t L_1 = ((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled;
|
|
((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:111>
|
|
int32_t L_2 = ((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:112>
|
|
return;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:114>
|
|
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* L_3 = (Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333*)il2cpp_codegen_object_new(Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333_il2cpp_TypeInfo_var);
|
|
Action_2__ctor_m23A4911D82F290811EDC6BFC315C339857526804(L_3, NULL, (intptr_t)((void*)EnhancedTouchSupport_OnDeviceChange_m6F0D816AB57DDD8E83C650DB19CA6DF0A2025BD9_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_remove_onDeviceChange_mD08F75C263C2D687B2E6E68E86105829075BF717(L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:115>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_4 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_4, NULL, (intptr_t)((void*)Touch_BeginUpdate_mDE8739575E49E8BA2F9FCD789F8962ED390A9EEC_RuntimeMethod_var), NULL);
|
|
InputSystem_remove_onBeforeUpdate_m4BD541DC1AB9FC6C87FB71B35A39CC75223E530C(L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:116>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_5 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_5, NULL, (intptr_t)((void*)EnhancedTouchSupport_OnSettingsChange_m6D6CC710C6F174A0E4E9DB6A0A8A78FC60805C96_RuntimeMethod_var), NULL);
|
|
InputSystem_remove_onSettingsChange_m9B3D8D8A87A653D5DFBA466EF723701B90C238C0(L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:122>
|
|
EnhancedTouchSupport_TearDownState_m6E915F3756E760E96A447D693F70E98ABA64BCAF(NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:123>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25218
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_Reset_m3CC6485AEFEF9EBD2B67AD3491207729F9FA7225 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:127>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3* L_0 = (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___touchscreens);
|
|
il2cpp_codegen_initobj(L_0, sizeof(InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:128>
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_1 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
FingerAndTouchState_Destroy_mA11DBC6D12D70F40AA14283E65322FAFC602572B(L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:129>
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_2 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
il2cpp_codegen_initobj(L_2, sizeof(FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:134>
|
|
((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_Enabled = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:135>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25219
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_SetUpState_m00F33D1A4004E8E4396ADD0CA5658676E3FCB9A9 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:139>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_0 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
L_0->___updateMask = ((int32_t)19);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:144>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF* L_1;
|
|
L_1 = InputSystem_get_settings_m8E3E9C0907904CBDBAE96354142AB0A87C7A3B74(NULL);
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = InputSettings_get_updateMode_mD37EABFC0678912846EABBC3CF31AC82E4ACE79E_inline(L_1, NULL);
|
|
((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_UpdateMode = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:146>
|
|
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA L_3;
|
|
L_3 = InputSystem_get_devices_mBE599285E43211ACE15248654A3E3D7DB42C85CA(NULL);
|
|
V_1 = L_3;
|
|
Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B L_4;
|
|
L_4 = ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C((&V_1), ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C_RuntimeMethod_var);
|
|
V_0 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0048:
|
|
{
|
|
Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB((&V_0), Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_003d_1;
|
|
}
|
|
|
|
IL_0030_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:146>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_5;
|
|
L_5 = Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945((&V_0), Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:147>
|
|
EnhancedTouchSupport_OnDeviceChange_m6F0D816AB57DDD8E83C650DB19CA6DF0A2025BD9(L_5, 0, NULL);
|
|
}
|
|
|
|
IL_003d_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:146>
|
|
bool L_6;
|
|
L_6 = Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC((&V_0), Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC_RuntimeMethod_var);
|
|
if (L_6)
|
|
{
|
|
goto IL_0030_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:148>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25220
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_TearDownState_m6E915F3756E760E96A447D693F70E98ABA64BCAF (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:152>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA L_0;
|
|
L_0 = InputSystem_get_devices_mBE599285E43211ACE15248654A3E3D7DB42C85CA(NULL);
|
|
V_1 = L_0;
|
|
Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B L_1;
|
|
L_1 = ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C((&V_1), ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0028:
|
|
{
|
|
Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB((&V_0), Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_001d_1;
|
|
}
|
|
|
|
IL_0010_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:152>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_2;
|
|
L_2 = Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945((&V_0), Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:153>
|
|
EnhancedTouchSupport_OnDeviceChange_m6F0D816AB57DDD8E83C650DB19CA6DF0A2025BD9(L_2, 1, NULL);
|
|
}
|
|
|
|
IL_001d_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:152>
|
|
bool L_3;
|
|
L_3 = Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC((&V_0), Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC_RuntimeMethod_var);
|
|
if (L_3)
|
|
{
|
|
goto IL_0010_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:155>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_4 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
FingerAndTouchState_Destroy_mA11DBC6D12D70F40AA14283E65322FAFC602572B(L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:160>
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_5 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
il2cpp_codegen_initobj(L_5, sizeof(FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:164>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25221
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_OnDeviceChange_m6F0D816AB57DDD8E83C650DB19CA6DF0A2025BD9 (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, int32_t ___1_change, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* V_0 = NULL;
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* V_1 = NULL;
|
|
{
|
|
int32_t L_0 = ___1_change;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___1_change;
|
|
if ((((int32_t)L_1) == ((int32_t)1)))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:172>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_2 = ___0_device;
|
|
V_0 = ((Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)IsInstClass((RuntimeObject*)L_2, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var));
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:173>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_4 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
Touch_AddTouchscreen_m68D08927121523CB720C4FABAF3310678175A4CE(L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:174>
|
|
return;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:179>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_5 = ___0_device;
|
|
V_1 = ((Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)IsInstClass((RuntimeObject*)L_5, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var));
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:180>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_7 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
Touch_RemoveTouchscreen_mFB8FC4091A5CA413B278CE1FE24AAF452F43162B(L_7, NULL);
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:184>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25222
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_OnSettingsChange_m6D6CC710C6F174A0E4E9DB6A0A8A78FC60805C96 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:188>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF* L_0;
|
|
L_0 = InputSystem_get_settings_m8E3E9C0907904CBDBAE96354142AB0A87C7A3B74(NULL);
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InputSettings_get_updateMode_mD37EABFC0678912846EABBC3CF31AC82E4ACE79E_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:189>
|
|
int32_t L_2 = ((EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_StaticFields*)il2cpp_codegen_static_fields_for(EnhancedTouchSupport_t71F258F55E377970F3A0063510556BA12EEC989D_il2cpp_TypeInfo_var))->___s_UpdateMode;
|
|
int32_t L_3 = V_0;
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:190>
|
|
return;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:191>
|
|
EnhancedTouchSupport_TearDownState_m6E915F3756E760E96A447D693F70E98ABA64BCAF(NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:192>
|
|
EnhancedTouchSupport_SetUpState_m00F33D1A4004E8E4396ADD0CA5658676E3FCB9A9(NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:193>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25223
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnhancedTouchSupport_CheckEnabled_mB8F6A757CEB1321EEC99490327A0D543E3A067E7 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:209>
|
|
bool L_0;
|
|
L_0 = EnhancedTouchSupport_get_enabled_m009CA5462D8D8C7DF91F130DF7AE699ACF94A283(NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:210>
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCA0F65034D6B6BD3BB9E353144259AC585587137)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnhancedTouchSupport_CheckEnabled_mB8F6A757CEB1321EEC99490327A0D543E3A067E7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/EnhancedTouchSupport.cs:211>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25224
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* Finger_get_screen_mBA2D1364604CB55F7386EFB844B12B7CFA7EE744 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:31>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = __this->___U3CscreenU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25225
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Finger_get_index_mB409A9B5711767D3A6046AEAA4931A0B3633934C (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:36>
|
|
int32_t L_0 = __this->___U3CindexU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25226
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Finger_get_isActive_m3D320E6E9E42796240E9F9C811955822B81CD0D4 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:41>
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_0;
|
|
L_0 = Finger_get_currentTouch_m53721DA3C8AB5C0D600499C33CCD5854E757890D(__this, NULL);
|
|
V_0 = L_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044((&V_0), NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25227
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Finger_get_screenPosition_mF3F70A36EFEC6177A13C37B3A5B6CEB6AAEFF660 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:52>
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_0;
|
|
L_0 = Finger_get_lastTouch_mE5E27445009AB9A9AD2B33496A4BDBE8016771A8(__this, NULL);
|
|
V_0 = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:53>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044((&V_0), NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:54>
|
|
il2cpp_codegen_initobj((&V_1), sizeof(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = V_1;
|
|
return L_2;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:55>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
|
|
L_3 = Touch_get_screenPosition_mAEBB428F1E62308A2C3E32A56CBEFCA9F7530B03((&V_0), NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 25228
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Finger_get_lastTouch_mE5E27445009AB9A9AD2B33496A4BDBE8016771A8 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:73>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_0 = __this->___m_StateHistory;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InputStateHistory_get_Count_m23DF78272A6C97F6C8782A953482772CDF6FFA81_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:74>
|
|
int32_t L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:75>
|
|
il2cpp_codegen_initobj((&V_1), sizeof(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70));
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:76>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_4 = __this->___m_StateHistory;
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_4);
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_6;
|
|
L_6 = InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888(L_4, ((int32_t)il2cpp_codegen_subtract(L_5, 1)), InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888_RuntimeMethod_var);
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_7;
|
|
memset((&L_7), 0, sizeof(L_7));
|
|
Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728((&L_7), __this, L_6, NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
// Method Definition Index: 25229
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Finger_get_currentTouch_m53721DA3C8AB5C0D600499C33CCD5854E757890D (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:88>
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_0;
|
|
L_0 = Finger_get_lastTouch_mE5E27445009AB9A9AD2B33496A4BDBE8016771A8(__this, NULL);
|
|
V_0 = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:89>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044((&V_0), NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:90>
|
|
il2cpp_codegen_initobj((&V_1), sizeof(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70));
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_2 = V_1;
|
|
return L_2;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:91>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = Touch_get_isInProgress_mBAB5B9955091386836522092465FD4692100F670((&V_0), NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:92>
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:94>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
uint32_t L_5;
|
|
L_5 = Touch_get_updateStepCount_m9550F17AC3135450BB378D0A44A7FD4762EFD01D((&V_0), NULL);
|
|
uint32_t L_6 = ((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_UpdateStepCount;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:95>
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:96>
|
|
il2cpp_codegen_initobj((&V_1), sizeof(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70));
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_8 = V_1;
|
|
return L_8;
|
|
}
|
|
}
|
|
// Method Definition Index: 25230
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 Finger_get_touchHistory_m9BE156C1B66DD2A7EC79C0D68BE3AA2B1D00DABE (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:108>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_0 = __this->___m_StateHistory;
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
TouchHistory__ctor_m3416A30524B233DED1F8C753398436191ED44814((&L_1), __this, L_0, (-1), (-1), NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25231
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Finger__ctor_m9D9ED2014F12F2FA245E5C04043F02D16B296505 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_screen, int32_t ___1_index, int32_t ___2_updateMask, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Finger_OnTouchRecorded_m242B4B22E53D86C6710D4D23C1455CF98B30B19F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Finger_ShouldRecordTouch_m1C19BBD41726B0C8337211A07AAF48EC6FFD848B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControl_1_get_value_mBC9F8DCDF832854DCA08E35A824EBD8A76ABDE2E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1_RecordStateChange_mD873C4A092DA5D5E86088B221B90A4B5B05F5840_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1__ctor_mF238AB65ADBA9D960A9B86F6AA208AA315B42435_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:112>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:114>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = ___0_screen;
|
|
__this->___U3CscreenU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CscreenU3Ek__BackingField), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:115>
|
|
int32_t L_1 = ___1_index;
|
|
__this->___U3CindexU3Ek__BackingField = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:118>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:119>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:120>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:121>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:122>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:123>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:124>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:125>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_2 = ___0_screen;
|
|
NullCheck(L_2);
|
|
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_3;
|
|
L_3 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_2, NULL);
|
|
V_0 = L_3;
|
|
int32_t L_4 = ___1_index;
|
|
TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* L_5;
|
|
L_5 = ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C((&V_0), L_4, ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C_RuntimeMethod_var);
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_6 = (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*)il2cpp_codegen_object_new(InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798_il2cpp_TypeInfo_var);
|
|
InputStateHistory_1__ctor_mF238AB65ADBA9D960A9B86F6AA208AA315B42435(L_6, L_5, InputStateHistory_1__ctor_mF238AB65ADBA9D960A9B86F6AA208AA315B42435_RuntimeMethod_var);
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_7 = L_6;
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
int32_t L_8;
|
|
L_8 = Touch_get_maxHistoryLengthPerFinger_m0F3E7DF315BB6D650292E18A3C21DDD1522E3500(NULL);
|
|
NullCheck(L_7);
|
|
InputStateHistory_set_historyDepth_mE520A08E8510340C919BA638230AFCCB1C8BA34D(L_7, L_8, NULL);
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_9 = L_7;
|
|
int32_t L_10;
|
|
L_10 = UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_inline(UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_RuntimeMethod_var);
|
|
NullCheck(L_9);
|
|
InputStateHistory_set_extraMemoryPerRecord_m6907893F41CB2EB06B4C04B2E8B35E0E5E800786(L_9, L_10, NULL);
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_11 = L_9;
|
|
Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7* L_12 = (Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7*)il2cpp_codegen_object_new(Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7_il2cpp_TypeInfo_var);
|
|
Action_1__ctor_mFC28914555AB84FBEB1AC628C66364244967933B(L_12, __this, (intptr_t)((void*)Finger_OnTouchRecorded_m242B4B22E53D86C6710D4D23C1455CF98B30B19F_RuntimeMethod_var), NULL);
|
|
NullCheck(L_11);
|
|
InputStateHistory_set_onRecordAdded_m6F35EA7B2352BE8359FD22FE803E6AAC1CD2E93A_inline(L_11, L_12, NULL);
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_13 = L_11;
|
|
Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2* L_14 = (Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2*)il2cpp_codegen_object_new(Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2_il2cpp_TypeInfo_var);
|
|
Func_4__ctor_m6556C926BADAE76C28D39818A7980EC2CF196024(L_14, NULL, (intptr_t)((void*)Finger_ShouldRecordTouch_m1C19BBD41726B0C8337211A07AAF48EC6FFD848B_RuntimeMethod_var), NULL);
|
|
NullCheck(L_13);
|
|
InputStateHistory_set_onShouldRecordStateChange_m4553C7A82A01BE25B5F1D0D2567B70FCE375F30E_inline(L_13, L_14, NULL);
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_15 = L_13;
|
|
int32_t L_16 = ___2_updateMask;
|
|
NullCheck(L_15);
|
|
InputStateHistory_set_updateMask_m5059363750CB5899C77D67BD05419563F703A3F7(L_15, L_16, NULL);
|
|
__this->___m_StateHistory = L_15;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_StateHistory), (void*)L_15);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:126>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_17 = __this->___m_StateHistory;
|
|
NullCheck(L_17);
|
|
InputStateHistory_StartRecording_mF4D22DFFB38256D8C147A098282110A961D7030C(L_17, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:129>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_18 = ___0_screen;
|
|
NullCheck(L_18);
|
|
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_19;
|
|
L_19 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_18, NULL);
|
|
V_0 = L_19;
|
|
int32_t L_20 = ___1_index;
|
|
TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* L_21;
|
|
L_21 = ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C((&V_0), L_20, ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C_RuntimeMethod_var);
|
|
NullCheck(L_21);
|
|
bool L_22;
|
|
L_22 = TouchControl_get_isInProgress_m453C4D3C5AD0AEE956EDFC6B54E452C3D61100F0(L_21, NULL);
|
|
if (!L_22)
|
|
{
|
|
goto IL_00cd;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:130>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_23 = __this->___m_StateHistory;
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_24 = ___0_screen;
|
|
NullCheck(L_24);
|
|
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_25;
|
|
L_25 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_24, NULL);
|
|
V_0 = L_25;
|
|
int32_t L_26 = ___1_index;
|
|
TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* L_27;
|
|
L_27 = ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C((&V_0), L_26, ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C_RuntimeMethod_var);
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_28 = ___0_screen;
|
|
NullCheck(L_28);
|
|
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_29;
|
|
L_29 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_28, NULL);
|
|
V_0 = L_29;
|
|
int32_t L_30 = ___1_index;
|
|
TouchControl_t3A64A795FF61A8B27E5EBD61632F23AFCC725079* L_31;
|
|
L_31 = ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C((&V_0), L_30, ReadOnlyArray_1_get_Item_m8214EE7BC64119BFC600CFABF40483B334B4CC7C_RuntimeMethod_var);
|
|
NullCheck(L_31);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_32;
|
|
L_32 = InputControl_1_get_value_mBC9F8DCDF832854DCA08E35A824EBD8A76ABDE2E(L_31, InputControl_1_get_value_mBC9F8DCDF832854DCA08E35A824EBD8A76ABDE2E_RuntimeMethod_var);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 L_33 = (*(TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_32);
|
|
NullCheck(L_23);
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_34;
|
|
L_34 = InputStateHistory_1_RecordStateChange_mD873C4A092DA5D5E86088B221B90A4B5B05F5840(L_23, L_27, L_33, (-1.0), InputStateHistory_1_RecordStateChange_mD873C4A092DA5D5E86088B221B90A4B5B05F5840_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00cd:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:131>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25232
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Finger_ShouldRecordTouch_m1C19BBD41726B0C8337211A07AAF48EC6FFD848B (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___0_control, double ___1_time, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___2_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_1 = NULL;
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:137>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012((&___2_eventPtr), NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:138>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:139>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1;
|
|
L_1 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69((&___2_eventPtr), NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:140>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_2 = V_0;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_3;
|
|
L_3 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1398030676), NULL);
|
|
bool L_4;
|
|
L_4 = FourCC_op_Inequality_m8E764B9EF56D488E40480A3E69230EF623C7B92B_inline(L_2, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_5 = V_0;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_6;
|
|
L_6 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1145852993), NULL);
|
|
bool L_7;
|
|
L_7 = FourCC_op_Inequality_m8E764B9EF56D488E40480A3E69230EF623C7B92B_inline(L_5, L_6, NULL);
|
|
if (!L_7)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:141>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:144>
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_8 = ___0_control;
|
|
NullCheck(L_8);
|
|
void* L_9;
|
|
L_9 = InputControl_get_currentStatePtr_m77D2900EEE4AAB505C98292AF8538DDCF44F8C3C(L_8, NULL);
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_10 = ___0_control;
|
|
NullCheck(L_10);
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 L_11;
|
|
L_11 = InputControl_get_stateBlock_mCAE31879EDC6621B35B368B4916219D30EAA0B0B_inline(L_10, NULL);
|
|
V_2 = L_11;
|
|
il2cpp_codegen_runtime_class_init_inline(InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5_il2cpp_TypeInfo_var);
|
|
uint32_t L_12;
|
|
L_12 = InputStateBlock_get_byteOffset_m6EADE5C9C8B346D38E543E38777ED67ED2AEA0AC_inline((&V_2), NULL);
|
|
V_1 = (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)((void*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)((uintptr_t)L_12)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:148>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_13 = V_1;
|
|
bool L_14;
|
|
L_14 = TouchState_get_isTapRelease_m2330F3A5BFF42425B21423B2257619666A05CE7D((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_13, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:149>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:151>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25233
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Finger_OnTouchRecorded_m242B4B22E53D86C6710D4D23C1455CF98B30B19F (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, Record_tF7FF07DC502355356B48CE78337FB16B196E2EE0 ___0_record, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m08B72E0E097917AA5CEBAD048899493F5780A421_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral413A93D2DA41C940A92CBF70746012937590610E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral79E7200C256B5A139CC2342D4CDC95E51A6DD366);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral822D2E2FACD5A075837EA460A85415C1BB4A5B00);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_1 = NULL;
|
|
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* V_2 = NULL;
|
|
uint32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
int32_t G_B5_0 = 0;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* G_B7_0 = NULL;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* G_B6_0 = NULL;
|
|
int32_t G_B8_0 = 0;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* G_B8_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:156>
|
|
int32_t L_0;
|
|
L_0 = Record_get_recordIndex_m58EE017D7611A35971E68B5B5A4A7802F79920A1((&___0_record), NULL);
|
|
V_0 = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:157>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_1 = __this->___m_StateHistory;
|
|
int32_t L_2 = V_0;
|
|
NullCheck(L_1);
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_3;
|
|
L_3 = InputStateHistory_GetRecordUnchecked_m569EB10E4D93B81BEA6699746C15C720F48E42F6(L_1, L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:158>
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_4 = L_3;
|
|
uint8_t* L_5;
|
|
L_5 = RecordHeader_get_statePtrWithoutControlIndex_m06FC191CB4801F442A0B972DA23B48ECE629922C((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)L_4, NULL);
|
|
V_1 = (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:159>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_6 = V_1;
|
|
uint32_t L_7 = ((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_UpdateStepCount;
|
|
NullCheck(L_6);
|
|
L_6->___updateStepCount = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:162>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_8 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
L_8->___haveBuiltActiveTouches = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:165>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:166>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_9 = __this->___m_StateHistory;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = InputStateHistory_get_bytesPerRecord_mAF516CE1E45E3EBA46EDFFF2923908D6B672D114(L_9, NULL);
|
|
int32_t L_11;
|
|
L_11 = UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_inline(UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_RuntimeMethod_var);
|
|
V_2 = (ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4*)((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)il2cpp_codegen_subtract((intptr_t)((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)il2cpp_codegen_add((intptr_t)L_4, L_10)), L_11));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:167>
|
|
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* L_12 = V_2;
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_13 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
uint32_t* L_14 = (uint32_t*)(&L_13->___lastId);
|
|
uint32_t* L_15 = L_14;
|
|
int32_t L_16 = *((uint32_t*)L_15);
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
uint32_t L_17 = V_3;
|
|
*((int32_t*)L_15) = (int32_t)L_17;
|
|
uint32_t L_18 = V_3;
|
|
NullCheck(L_12);
|
|
L_12->___uniqueId = L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:171>
|
|
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* L_19 = V_2;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_20 = V_1;
|
|
NullCheck(L_20);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21 = L_20->___delta;
|
|
NullCheck(L_19);
|
|
L_19->___accumulatedDelta = L_21;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:172>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_22 = V_1;
|
|
int32_t L_23;
|
|
L_23 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_22, NULL);
|
|
if ((((int32_t)L_23) == ((int32_t)1)))
|
|
{
|
|
goto IL_00f4;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:176>
|
|
int32_t L_24 = V_0;
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_25 = __this->___m_StateHistory;
|
|
NullCheck(L_25);
|
|
int32_t L_26 = ((InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480*)L_25)->___m_HeadIndex;
|
|
if ((((int32_t)L_24) == ((int32_t)L_26)))
|
|
{
|
|
goto IL_00fb;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:178>
|
|
int32_t L_27 = V_0;
|
|
if (!L_27)
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_28 = V_0;
|
|
G_B5_0 = ((int32_t)il2cpp_codegen_subtract(L_28, 1));
|
|
goto IL_009e;
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_29 = __this->___m_StateHistory;
|
|
NullCheck(L_29);
|
|
int32_t L_30;
|
|
L_30 = InputStateHistory_get_historyDepth_mBAFA4592E170099C0E8BB360B148A854517AA561_inline(L_29, NULL);
|
|
G_B5_0 = ((int32_t)il2cpp_codegen_subtract(L_30, 1));
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
V_4 = G_B5_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:179>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_31 = __this->___m_StateHistory;
|
|
int32_t L_32 = V_4;
|
|
NullCheck(L_31);
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_33;
|
|
L_33 = InputStateHistory_GetRecordUnchecked_m569EB10E4D93B81BEA6699746C15C720F48E42F6(L_31, L_32, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:180>
|
|
uint8_t* L_34;
|
|
L_34 = RecordHeader_get_statePtrWithoutControlIndex_m06FC191CB4801F442A0B972DA23B48ECE629922C((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)L_33, NULL);
|
|
V_5 = (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_34;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:181>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_35 = V_1;
|
|
NullCheck(L_35);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_36 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&L_35->___delta);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_37 = L_36;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_38 = (*(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)L_37);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_39 = V_5;
|
|
NullCheck(L_39);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_40 = L_39->___delta;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_41;
|
|
L_41 = Vector2_op_Subtraction_m44475FCDAD2DA2F98D78A6625EC2DCDFE8803837_inline(L_38, L_40, NULL);
|
|
*(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)L_37 = L_41;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:182>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:183>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_42 = V_1;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_43 = V_5;
|
|
bool L_44;
|
|
L_44 = TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_43, NULL);
|
|
if (!L_44)
|
|
{
|
|
G_B7_0 = L_42;
|
|
goto IL_00ec;
|
|
}
|
|
G_B6_0 = L_42;
|
|
}
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_45 = V_5;
|
|
NullCheck(L_45);
|
|
uint32_t L_46 = L_45->___updateStepCount;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_47 = V_1;
|
|
NullCheck(L_47);
|
|
uint32_t L_48 = L_47->___updateStepCount;
|
|
G_B8_0 = ((((int32_t)L_46) == ((int32_t)L_48))? 1 : 0);
|
|
G_B8_1 = G_B6_0;
|
|
goto IL_00ed;
|
|
}
|
|
|
|
IL_00ec:
|
|
{
|
|
G_B8_0 = 0;
|
|
G_B8_1 = G_B7_0;
|
|
}
|
|
|
|
IL_00ed:
|
|
{
|
|
TouchState_set_beganInSameFrame_m46F1C71775E825310242C59E608D5F20908A8D39((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)G_B8_1, (bool)G_B8_0, NULL);
|
|
goto IL_00fb;
|
|
}
|
|
|
|
IL_00f4:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:188>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_49 = V_1;
|
|
TouchState_set_beganInSameFrame_m46F1C71775E825310242C59E608D5F20908A8D39((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_49, (bool)1, NULL);
|
|
}
|
|
|
|
IL_00fb:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:192>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_50 = V_1;
|
|
int32_t L_51;
|
|
L_51 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_50, NULL);
|
|
V_6 = L_51;
|
|
int32_t L_52 = V_6;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_52, 1)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_011d;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0134;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_014b;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_014b;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_011d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:195>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_53 = (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___onFingerDown);
|
|
DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m08B72E0E097917AA5CEBAD048899493F5780A421(L_53, __this, _stringLiteral822D2E2FACD5A075837EA460A85415C1BB4A5B00, NULL, DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m08B72E0E097917AA5CEBAD048899493F5780A421_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:196>
|
|
return;
|
|
}
|
|
|
|
IL_0134:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:198>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_54 = (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___onFingerMove);
|
|
DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m08B72E0E097917AA5CEBAD048899493F5780A421(L_54, __this, _stringLiteral413A93D2DA41C940A92CBF70746012937590610E, NULL, DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m08B72E0E097917AA5CEBAD048899493F5780A421_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:199>
|
|
return;
|
|
}
|
|
|
|
IL_014b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:202>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_55 = (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___onFingerUp);
|
|
DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m08B72E0E097917AA5CEBAD048899493F5780A421(L_55, __this, _stringLiteral79E7200C256B5A139CC2342D4CDC95E51A6DD366, NULL, DelegateHelpers_InvokeCallbacksSafe_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m08B72E0E097917AA5CEBAD048899493F5780A421_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:205>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25234
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Finger_FindTouch_m1A910BF69B21B5D02A79698B5590C2706FE601B3 (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, uint32_t ___0_uniqueId, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tAFB65610F759CAFC5D1E91B68A548311182B6A22_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1_GetEnumerator_m7589AE5E798BAFF50EF3C3BC3539FFDFF5DFCF59_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_GetUnsafeExtraMemoryPtrUnchecked_m43B2E6AC3AF2307D2DDF2C92E90A629666277F66_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:210>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_0 = __this->___m_StateHistory;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InputStateHistory_1_GetEnumerator_m7589AE5E798BAFF50EF3C3BC3539FFDFF5DFCF59(L_0, InputStateHistory_1_GetEnumerator_m7589AE5E798BAFF50EF3C3BC3539FFDFF5DFCF59_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0038:
|
|
{
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_002e_1;
|
|
}
|
|
|
|
IL_000e_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:210>
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_5;
|
|
L_5 = InterfaceFuncInvoker0< Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 >::Invoke(0, IEnumerator_1_tAFB65610F759CAFC5D1E91B68A548311182B6A22_il2cpp_TypeInfo_var, L_4);
|
|
V_1 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:212>
|
|
void* L_6;
|
|
L_6 = Record_GetUnsafeExtraMemoryPtrUnchecked_m43B2E6AC3AF2307D2DDF2C92E90A629666277F66((&V_1), Record_GetUnsafeExtraMemoryPtrUnchecked_m43B2E6AC3AF2307D2DDF2C92E90A629666277F66_RuntimeMethod_var);
|
|
NullCheck(L_6);
|
|
uint32_t L_7 = ((ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4*)L_6)->___uniqueId;
|
|
uint32_t L_8 = ___0_uniqueId;
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)L_8))))
|
|
{
|
|
goto IL_002e_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:213>
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_9 = V_1;
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_10;
|
|
memset((&L_10), 0, sizeof(L_10));
|
|
Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728((&L_10), __this, L_9, NULL);
|
|
V_2 = L_10;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_002e_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:210>
|
|
RuntimeObject* L_11 = V_0;
|
|
NullCheck(L_11);
|
|
bool L_12;
|
|
L_12 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_11);
|
|
if (L_12)
|
|
{
|
|
goto IL_000e_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:216>
|
|
il2cpp_codegen_initobj((&V_3), sizeof(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70));
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_13 = V_3;
|
|
return L_13;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:217>
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_14 = V_2;
|
|
return L_14;
|
|
}
|
|
}
|
|
// Method Definition Index: 25235
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 Finger_GetTouchHistory_m8A13B55D4B1B1B77F1262B46F73A603A33E5D80C (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 ___0_touch, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_get_index_m8BF5DBF4C267EED76E3802B249F2856F29DAD8A6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_6 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:226>
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_0 = ___0_touch;
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_1 = L_0.___m_TouchRecord;
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:227>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_2;
|
|
L_2 = Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_inline((&V_0), Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_RuntimeMethod_var);
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_3 = __this->___m_StateHistory;
|
|
if ((((RuntimeObject*)(InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*)L_2) == ((RuntimeObject*)(InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*)L_3)))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:229>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
uint32_t L_4;
|
|
L_4 = Touch_get_uniqueId_m2B7B006E32B62D82346541BCBDACE83EC98D4AF0((&___0_touch), NULL);
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_5;
|
|
L_5 = Finger_FindTouch_m1A910BF69B21B5D02A79698B5590C2706FE601B3(__this, L_4, NULL);
|
|
___0_touch = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:230>
|
|
bool L_6;
|
|
L_6 = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044((&___0_touch), NULL);
|
|
if (L_6)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:231>
|
|
il2cpp_codegen_initobj((&V_4), sizeof(TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580));
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_7 = V_4;
|
|
return L_7;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:234>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
int32_t L_8;
|
|
L_8 = Touch_get_touchId_m497B1531A3C206C36EBDA56C54CCF91D90AB3F8F((&___0_touch), NULL);
|
|
V_1 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:235>
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_9 = (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*)(&(&___0_touch)->___m_TouchRecord);
|
|
int32_t L_10;
|
|
L_10 = Record_get_index_m8BF5DBF4C267EED76E3802B249F2856F29DAD8A6(L_9, Record_get_index_m8BF5DBF4C267EED76E3802B249F2856F29DAD8A6_RuntimeMethod_var);
|
|
V_2 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:239>
|
|
V_3 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:240>
|
|
int32_t L_11;
|
|
L_11 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939((&___0_touch), NULL);
|
|
if ((((int32_t)L_11) == ((int32_t)1)))
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:242>
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_12 = (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*)(&(&___0_touch)->___m_TouchRecord);
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_13;
|
|
L_13 = Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F(L_12, Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F_RuntimeMethod_var);
|
|
V_5 = L_13;
|
|
goto IL_0094;
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:244>
|
|
void* L_14;
|
|
L_14 = Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069((&V_5), Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069_RuntimeMethod_var);
|
|
V_6 = (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_14;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:247>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_15 = V_6;
|
|
NullCheck(L_15);
|
|
int32_t L_16 = L_15->___touchId;
|
|
int32_t L_17 = V_1;
|
|
if ((!(((uint32_t)L_16) == ((uint32_t)L_17))))
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:249>
|
|
int32_t L_18 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_18, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:252>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_19 = V_6;
|
|
int32_t L_20;
|
|
L_20 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_19, NULL);
|
|
if ((((int32_t)L_20) == ((int32_t)1)))
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:242>
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_21;
|
|
L_21 = Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F((&V_5), Record_get_previous_mE86C99A3EFBD72206B8BFC7D55792223057BE29F_RuntimeMethod_var);
|
|
V_5 = L_21;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:242>
|
|
bool L_22;
|
|
L_22 = Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C((&V_5), Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C_RuntimeMethod_var);
|
|
if (L_22)
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:257>
|
|
int32_t L_23 = V_3;
|
|
if (L_23)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:258>
|
|
il2cpp_codegen_initobj((&V_4), sizeof(TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580));
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_24 = V_4;
|
|
return L_24;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:261>
|
|
int32_t L_25 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract(L_25, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:263>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_26 = __this->___m_StateHistory;
|
|
int32_t L_27 = V_2;
|
|
int32_t L_28 = V_3;
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_29;
|
|
memset((&L_29), 0, sizeof(L_29));
|
|
TouchHistory__ctor_m3416A30524B233DED1F8C753398436191ED44814((&L_29), __this, L_26, L_27, L_28, NULL);
|
|
return L_29;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_pinvoke(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70____m_Finger_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_FingerException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70____m_Finger_FieldInfo_var, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_FingerException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_pinvoke_back(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke& marshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70____m_Finger_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_FingerException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70____m_Finger_FieldInfo_var, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_FingerException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_pinvoke_cleanup(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_com(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70____m_Finger_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_FingerException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70____m_Finger_FieldInfo_var, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_FingerException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_com_back(const Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com& marshaled, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70____m_Finger_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_FingerException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70____m_Finger_FieldInfo_var, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_FingerException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshal_com_cleanup(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// Method Definition Index: 25236
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:109>
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_0 = (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*)(&__this->___m_TouchRecord);
|
|
bool L_1;
|
|
L_1 = Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C(L_0, Record_get_valid_mBA8E68867067FE8B51F4DA6B9BD6A4926418AE8C_RuntimeMethod_var);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25237
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:122>
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0 = __this->___m_Finger;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* _returnValue;
|
|
_returnValue = Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25238
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:140>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
|
|
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
|
|
int32_t L_1;
|
|
L_1 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25239
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_began_m592AA9F7AE5ED0AA23C971BD90703F1BBFD778C6 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:148>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
int32_t L_0;
|
|
L_0 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
|
|
return (bool)((((int32_t)L_0) == ((int32_t)1))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Touch_get_began_m592AA9F7AE5ED0AA23C971BD90703F1BBFD778C6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Touch_get_began_m592AA9F7AE5ED0AA23C971BD90703F1BBFD778C6(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25240
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_inProgress_m6CF6BD1C7AFE8099AD35393829264FDE0C723CAA (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:154>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
int32_t L_0;
|
|
L_0 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
|
|
if ((((int32_t)L_0) == ((int32_t)2)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
int32_t L_1;
|
|
L_1 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
|
|
if ((((int32_t)L_1) == ((int32_t)5)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
int32_t L_2;
|
|
L_2 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
|
|
return (bool)((((int32_t)L_2) == ((int32_t)1))? 1 : 0);
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Touch_get_inProgress_m6CF6BD1C7AFE8099AD35393829264FDE0C723CAA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Touch_get_inProgress_m6CF6BD1C7AFE8099AD35393829264FDE0C723CAA(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25241
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_ended_m96B6BBDF371E26C6AE4B89CB7F89861D6B0C462F (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:163>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
int32_t L_0;
|
|
L_0 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
|
|
if ((((int32_t)L_0) == ((int32_t)3)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
int32_t L_1;
|
|
L_1 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
|
|
return (bool)((((int32_t)L_1) == ((int32_t)4))? 1 : 0);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Touch_get_ended_m96B6BBDF371E26C6AE4B89CB7F89861D6B0C462F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Touch_get_ended_m96B6BBDF371E26C6AE4B89CB7F89861D6B0C462F(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25242
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_touchId_m497B1531A3C206C36EBDA56C54CCF91D90AB3F8F (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:183>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
|
|
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
|
|
int32_t L_1 = L_0->___touchId;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Touch_get_touchId_m497B1531A3C206C36EBDA56C54CCF91D90AB3F8F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Touch_get_touchId_m497B1531A3C206C36EBDA56C54CCF91D90AB3F8F(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25243
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Touch_get_pressure_mDA228CAA389D14F6139507A304A97FE07EAE9DD3 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:204>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
|
|
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
|
|
float L_1 = L_0->___pressure;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float Touch_get_pressure_mDA228CAA389D14F6139507A304A97FE07EAE9DD3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = Touch_get_pressure_mDA228CAA389D14F6139507A304A97FE07EAE9DD3(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25244
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_radius_m8FCEEC69D77C94A4D8CBA662E5514AD7D894E8F4 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:218>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
|
|
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = L_0->___radius;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_radius_m8FCEEC69D77C94A4D8CBA662E5514AD7D894E8F4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
|
|
_returnValue = Touch_get_radius_m8FCEEC69D77C94A4D8CBA662E5514AD7D894E8F4(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25245
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Touch_get_startTime_m9778C4C818DD69BAC47D10B7567233E5316264CB (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:228>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
|
|
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
|
|
double L_1 = L_0->___startTime;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C double Touch_get_startTime_m9778C4C818DD69BAC47D10B7567233E5316264CB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
double _returnValue;
|
|
_returnValue = Touch_get_startTime_m9778C4C818DD69BAC47D10B7567233E5316264CB(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25246
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Touch_get_time_m1E3EA9FB3DF10246B7BBF100663BAA3030714F17 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_get_time_m5976C10C2C3A2A2089D57F1DF9AE5557C10DF47E_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:237>
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_0 = (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*)(&__this->___m_TouchRecord);
|
|
double L_1;
|
|
L_1 = Record_get_time_m5976C10C2C3A2A2089D57F1DF9AE5557C10DF47E(L_0, Record_get_time_m5976C10C2C3A2A2089D57F1DF9AE5557C10DF47E_RuntimeMethod_var);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C double Touch_get_time_m1E3EA9FB3DF10246B7BBF100663BAA3030714F17_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
double _returnValue;
|
|
_returnValue = Touch_get_time_m1E3EA9FB3DF10246B7BBF100663BAA3030714F17(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25247
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* Touch_get_screen_m88071A10D5E186573E2694E47DD660AC4FAD2E00 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:242>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0;
|
|
L_0 = Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_1;
|
|
L_1 = Finger_get_screen_mBA2D1364604CB55F7386EFB844B12B7CFA7EE744_inline(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* Touch_get_screen_m88071A10D5E186573E2694E47DD660AC4FAD2E00_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* _returnValue;
|
|
_returnValue = Touch_get_screen_m88071A10D5E186573E2694E47DD660AC4FAD2E00(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25248
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_screenPosition_mAEBB428F1E62308A2C3E32A56CBEFCA9F7530B03 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:249>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
|
|
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = L_0->___position;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_screenPosition_mAEBB428F1E62308A2C3E32A56CBEFCA9F7530B03_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
|
|
_returnValue = Touch_get_screenPosition_mAEBB428F1E62308A2C3E32A56CBEFCA9F7530B03(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25249
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_startScreenPosition_mAF62C4C8C812B9E36855A6CB63B8493F8ED3E0C7 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:256>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
|
|
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = L_0->___startPosition;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_startScreenPosition_mAF62C4C8C812B9E36855A6CB63B8493F8ED3E0C7_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
|
|
_returnValue = Touch_get_startScreenPosition_mAF62C4C8C812B9E36855A6CB63B8493F8ED3E0C7(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25250
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_delta_m845008E2AF42561313DA002985D85150329B9BCC (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:270>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
|
|
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = L_0->___delta;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Touch_get_delta_m845008E2AF42561313DA002985D85150329B9BCC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
|
|
_returnValue = Touch_get_delta_m845008E2AF42561313DA002985D85150329B9BCC(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25251
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_tapCount_m06A6261A941A678FAA29419D7B8F07B16EF07F75 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:287>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
|
|
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
|
|
uint8_t L_1 = L_0->___tapCount;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Touch_get_tapCount_m06A6261A941A678FAA29419D7B8F07B16EF07F75_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Touch_get_tapCount_m06A6261A941A678FAA29419D7B8F07B16EF07F75(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25252
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_isTap_m48E7409F15259BE6D04C66ADDA71F6037E4AD4B3 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:308>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
|
|
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
|
|
bool L_1;
|
|
L_1 = TouchState_get_isTap_m6C2D3CC78A3AA9705CBFD2A9E817FCFD8AB25EFB(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Touch_get_isTap_m48E7409F15259BE6D04C66ADDA71F6037E4AD4B3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Touch_get_isTap_m48E7409F15259BE6D04C66ADDA71F6037E4AD4B3(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25253
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_displayIndex_m75C95051A1B870D8E0EF195461A06775385B2884 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:322>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
|
|
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
|
|
uint8_t L_1 = L_0->___displayIndex;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Touch_get_displayIndex_m75C95051A1B870D8E0EF195461A06775385B2884_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Touch_get_displayIndex_m75C95051A1B870D8E0EF195461A06775385B2884(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25254
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_get_isInProgress_mBAB5B9955091386836522092465FD4692100F670 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:334>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
int32_t L_0;
|
|
L_0 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, 1))) > ((uint32_t)1))))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = V_0;
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)5))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:339>
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:341>
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Touch_get_isInProgress_mBAB5B9955091386836522092465FD4692100F670_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Touch_get_isInProgress_mBAB5B9955091386836522092465FD4692100F670(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25255
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Touch_get_updateStepCount_m9550F17AC3135450BB378D0A44A7FD4762EFD01D (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:345>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_0;
|
|
L_0 = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(__this, NULL);
|
|
uint32_t L_1 = L_0->___updateStepCount;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint32_t Touch_get_updateStepCount_m9550F17AC3135450BB378D0A44A7FD4762EFD01D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
uint32_t _returnValue;
|
|
_returnValue = Touch_get_updateStepCount_m9550F17AC3135450BB378D0A44A7FD4762EFD01D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25256
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Touch_get_uniqueId_m2B7B006E32B62D82346541BCBDACE83EC98D4AF0 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:346>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* L_0;
|
|
L_0 = Touch_get_extraData_mF845BF57832677EEEB41E5BF0E0F732D4D11D686(__this, NULL);
|
|
uint32_t L_1 = L_0->___uniqueId;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint32_t Touch_get_uniqueId_m2B7B006E32B62D82346541BCBDACE83EC98D4AF0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
uint32_t _returnValue;
|
|
_returnValue = Touch_get_uniqueId_m2B7B006E32B62D82346541BCBDACE83EC98D4AF0(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25257
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:348>
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_0 = (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*)(&__this->___m_TouchRecord);
|
|
void* L_1;
|
|
L_1 = Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069(L_0, Record_GetUnsafeMemoryPtr_m4A6CB638D79C8490F8DBC173FD42EACC9D832069_RuntimeMethod_var);
|
|
return (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)(L_1);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _returnValue;
|
|
_returnValue = Touch_get_state_m0CA749F71F57C92420ECFCBCF1E11C1FEDB7898E(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25258
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* Touch_get_extraData_mF845BF57832677EEEB41E5BF0E0F732D4D11D686 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_GetUnsafeExtraMemoryPtr_mF305A3D8857DFF297E9FB6573684E4B9BF82022C_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:350>
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_0 = (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*)(&__this->___m_TouchRecord);
|
|
void* L_1;
|
|
L_1 = Record_GetUnsafeExtraMemoryPtr_mF305A3D8857DFF297E9FB6573684E4B9BF82022C(L_0, Record_GetUnsafeExtraMemoryPtr_mF305A3D8857DFF297E9FB6573684E4B9BF82022C_RuntimeMethod_var);
|
|
return (ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4*)(L_1);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* Touch_get_extraData_mF845BF57832677EEEB41E5BF0E0F732D4D11D686_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* _returnValue;
|
|
_returnValue = Touch_get_extraData_mF845BF57832677EEEB41E5BF0E0F732D4D11D686(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25259
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 Touch_get_history_m1B049B5EB482493F9CFE5B260DACEAE9B0119BB6 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:362>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
bool L_0;
|
|
L_0 = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:363>
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD748E233FD289CD4B1ED5D7797639399A9B696ED)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Touch_get_history_m1B049B5EB482493F9CFE5B260DACEAE9B0119BB6_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:364>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_2;
|
|
L_2 = Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420_inline(__this, NULL);
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_3 = (*(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*)__this);
|
|
NullCheck(L_2);
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_4;
|
|
L_4 = Finger_GetTouchHistory_m8A13B55D4B1B1B77F1262B46F73A603A33E5D80C(L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 Touch_get_history_m1B049B5EB482493F9CFE5B260DACEAE9B0119BB6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 _returnValue;
|
|
_returnValue = Touch_get_history_m1B049B5EB482493F9CFE5B260DACEAE9B0119BB6(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25260
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_t3D5F71F2FAC15E8E7413E1B4BDCCA92D49962E72 Touch_get_activeTouches_m10CB2BE5EC26DB9CF742196282FCF10C090AAD11 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1__ctor_m9C297EC68F90BE1CBFDC80B0D94420BF2B905455_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:450>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_0 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
FingerAndTouchState_UpdateActiveTouches_m48D632ECA4B568270B458D9CED54AC591FBFBF43(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:451>
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_1 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354* L_2 = L_1->___activeTouches;
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_3 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
int32_t L_4 = L_3->___activeTouchCount;
|
|
ReadOnlyArray_1_t3D5F71F2FAC15E8E7413E1B4BDCCA92D49962E72 L_5;
|
|
memset((&L_5), 0, sizeof(L_5));
|
|
ReadOnlyArray_1__ctor_m9C297EC68F90BE1CBFDC80B0D94420BF2B905455((&L_5), L_2, 0, L_4, ReadOnlyArray_1__ctor_m9C297EC68F90BE1CBFDC80B0D94420BF2B905455_RuntimeMethod_var);
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 25261
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36 Touch_get_fingers_mB1EF994DE996E00AFC37EE52AEF4757D40445021 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:473>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_0 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_1 = L_0->___fingers;
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_2 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
int32_t L_3 = L_2->___totalFingerCount;
|
|
ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F((&L_4), L_1, 0, L_3, ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F_RuntimeMethod_var);
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 25262
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36 Touch_get_activeFingers_m6F046357C1E86F7CE4293071A02E0FD1E1EE2327 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:490>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_0 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
FingerAndTouchState_UpdateActiveFingers_m21F725BF5EC6E4953C44FFBA63F4C7ABFA0FBE49(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:491>
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_1 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_2 = L_1->___activeFingers;
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_3 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
int32_t L_4 = L_3->___activeFingerCount;
|
|
ReadOnlyArray_1_tC39B40DE6AC1167DBED7CED5C4E165AFACA30E36 L_5;
|
|
memset((&L_5), 0, sizeof(L_5));
|
|
ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F((&L_5), L_2, 0, L_4, ReadOnlyArray_1__ctor_m5CD4C576598DB61EBF1B99DFD3900020A951738F_RuntimeMethod_var);
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 25263
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Touch_get_screens_m28FAD29F878FCC324C36B91043E90462DB7A3998 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:504>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 L_0 = (&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___touchscreens;
|
|
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3_il2cpp_TypeInfo_var, &L_1);
|
|
return (RuntimeObject*)L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 25264
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_add_onFingerDown_m8A2C32388E43F459FA71AA84B1CDB159597867ED (Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:521>
|
|
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:522>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Touch_add_onFingerDown_m8A2C32388E43F459FA71AA84B1CDB159597867ED_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:523>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_2 = (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___onFingerDown);
|
|
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_3 = ___0_value;
|
|
CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22(L_2, L_3, CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:524>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25265
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_remove_onFingerDown_m6CA33BB823569C40703EDC3C1B9F46D2700C6AA6 (Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:528>
|
|
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:529>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Touch_remove_onFingerDown_m6CA33BB823569C40703EDC3C1B9F46D2700C6AA6_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:530>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_2 = (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___onFingerDown);
|
|
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_3 = ___0_value;
|
|
CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87(L_2, L_3, CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:531>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25266
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_add_onFingerUp_mC01645A16F23AF92176537CE0FE1ADB55A93B03E (Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:547>
|
|
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:548>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Touch_add_onFingerUp_mC01645A16F23AF92176537CE0FE1ADB55A93B03E_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:549>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_2 = (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___onFingerUp);
|
|
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_3 = ___0_value;
|
|
CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22(L_2, L_3, CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:550>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25267
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_remove_onFingerUp_m637736C3F7E75C5D8CFC08540B13599024FA7CF5 (Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:554>
|
|
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:555>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Touch_remove_onFingerUp_m637736C3F7E75C5D8CFC08540B13599024FA7CF5_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:556>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_2 = (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___onFingerUp);
|
|
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_3 = ___0_value;
|
|
CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87(L_2, L_3, CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:557>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25268
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_add_onFingerMove_m8E1845DBA9ABE95B6D8E922392BAC311054BFF91 (Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:574>
|
|
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:575>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Touch_add_onFingerMove_m8E1845DBA9ABE95B6D8E922392BAC311054BFF91_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:576>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_2 = (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___onFingerMove);
|
|
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_3 = ___0_value;
|
|
CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22(L_2, L_3, CallbackArray_1_AddCallback_mC42D3CE84FD7BDA63C2C903BBA7DC47E29598B22_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:577>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25269
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_remove_onFingerMove_m9525E9752D6F09F290C07825E6115793B882542F (Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:581>
|
|
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:582>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Touch_remove_onFingerMove_m9525E9752D6F09F290C07825E6115793B882542F_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:583>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B* L_2 = (CallbackArray_1_t1F5839E457B3AE192D38F0A2463CAB97DA96B96B*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___onFingerMove);
|
|
Action_1_tA4CC4B05C836AB92F811D67AC960A6ED20CCCB7B* L_3 = ___0_value;
|
|
CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87(L_2, L_3, CallbackArray_1_RemoveCallback_m38EBB5B7FDFFBAB94F0D7A5DA0D008ED7BCFCB87_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:584>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25270
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_get_maxHistoryLengthPerFinger_m0F3E7DF315BB6D650292E18A3C21DDD1522E3500 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:605>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
int32_t L_0 = (&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___historyLengthPerFinger;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25271
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___0_finger, Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___1_touchRecord, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:613>
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0 = ___0_finger;
|
|
__this->___m_Finger = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Finger), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:614>
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_1 = ___1_touchRecord;
|
|
__this->___m_TouchRecord = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_TouchRecord))->___m_Owner), (void*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:615>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728_AdjustorThunk (RuntimeObject* __this, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___0_finger, Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 ___1_touchRecord, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728(_thisAdjusted, ___0_finger, ___1_touchRecord, method);
|
|
}
|
|
// Method Definition Index: 25272
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Touch_ToString_m641EEB738A7722EE7A2F90630BB3A5A1880F3B2F (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchPhase_tC280DE0C3DA3652019BF3605D57099E6CE2F3B14_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral58EE5386C7A4EBFD342B1A8A3469B586CD7724F3);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral97390174FD4C882BACE6D033A351D373021320B0);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:620>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
bool L_0;
|
|
L_0 = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:621>
|
|
return _stringLiteral58EE5386C7A4EBFD342B1A8A3469B586CD7724F3;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:623>
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)6);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = L_1;
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
int32_t L_3;
|
|
L_3 = Touch_get_touchId_m497B1531A3C206C36EBDA56C54CCF91D90AB3F8F(__this, NULL);
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(il2cpp_defaults.int32_class, &L_4);
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, L_5);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_5);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = L_2;
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_7;
|
|
L_7 = Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420_inline(__this, NULL);
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = Finger_get_index_mB409A9B5711767D3A6046AEAA4931A0B3633934C_inline(L_7, NULL);
|
|
int32_t L_9 = L_8;
|
|
RuntimeObject* L_10 = Box(il2cpp_defaults.int32_class, &L_9);
|
|
NullCheck(L_6);
|
|
ArrayElementTypeCheck (L_6, L_10);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_10);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_11 = L_6;
|
|
int32_t L_12;
|
|
L_12 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939(__this, NULL);
|
|
int32_t L_13 = L_12;
|
|
RuntimeObject* L_14 = Box(TouchPhase_tC280DE0C3DA3652019BF3605D57099E6CE2F3B14_il2cpp_TypeInfo_var, &L_13);
|
|
NullCheck(L_11);
|
|
ArrayElementTypeCheck (L_11, L_14);
|
|
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_14);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = L_11;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_16;
|
|
L_16 = Touch_get_screenPosition_mAEBB428F1E62308A2C3E32A56CBEFCA9F7530B03(__this, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_17 = L_16;
|
|
RuntimeObject* L_18 = Box(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var, &L_17);
|
|
NullCheck(L_15);
|
|
ArrayElementTypeCheck (L_15, L_18);
|
|
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject*)L_18);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_19 = L_15;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_20;
|
|
L_20 = Touch_get_delta_m845008E2AF42561313DA002985D85150329B9BCC(__this, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21 = L_20;
|
|
RuntimeObject* L_22 = Box(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var, &L_21);
|
|
NullCheck(L_19);
|
|
ArrayElementTypeCheck (L_19, L_22);
|
|
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject*)L_22);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_23 = L_19;
|
|
double L_24;
|
|
L_24 = Touch_get_time_m1E3EA9FB3DF10246B7BBF100663BAA3030714F17(__this, NULL);
|
|
double L_25 = L_24;
|
|
RuntimeObject* L_26 = Box(il2cpp_defaults.double_class, &L_25);
|
|
NullCheck(L_23);
|
|
ArrayElementTypeCheck (L_23, L_26);
|
|
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject*)L_26);
|
|
String_t* L_27;
|
|
L_27 = String_Format_m918500C1EFB475181349A79989BB79BB36102894(_stringLiteral97390174FD4C882BACE6D033A351D373021320B0, L_23, NULL);
|
|
return L_27;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* Touch_ToString_m641EEB738A7722EE7A2F90630BB3A5A1880F3B2F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = Touch_ToString_m641EEB738A7722EE7A2F90630BB3A5A1880F3B2F(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25273
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_Equals_m5A9195C1D656529EFF984AD9060ECA7257ACFDC4 (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_Equals_m17C216CDC45654F53F8191093F3404478DB16B69_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:634>
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0 = __this->___m_Finger;
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_1 = ___0_other;
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_2 = L_1.___m_Finger;
|
|
bool L_3;
|
|
L_3 = Object_Equals_m434DF93FDA204D5C06E889A9CB53BC2E5D39ABF7(L_0, L_2, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_4 = (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*)(&__this->___m_TouchRecord);
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_5 = ___0_other;
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_6 = L_5.___m_TouchRecord;
|
|
bool L_7;
|
|
L_7 = Record_Equals_m17C216CDC45654F53F8191093F3404478DB16B69(L_4, L_6, Record_Equals_m17C216CDC45654F53F8191093F3404478DB16B69_RuntimeMethod_var);
|
|
return L_7;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Touch_Equals_m5A9195C1D656529EFF984AD9060ECA7257ACFDC4_AdjustorThunk (RuntimeObject* __this, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Touch_Equals_m5A9195C1D656529EFF984AD9060ECA7257ACFDC4(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25274
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Touch_Equals_mA91A1937A740538D62AF4998D332AAB464B47E1E (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:640>
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
V_0 = ((*(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*)UnBox(L_1, Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var)));
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_2 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = Touch_Equals_m5A9195C1D656529EFF984AD9060ECA7257ACFDC4(__this, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Touch_Equals_mA91A1937A740538D62AF4998D332AAB464B47E1E_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Touch_Equals_mA91A1937A740538D62AF4998D332AAB464B47E1E(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25275
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Touch_GetHashCode_m73B534C7CAA38FE313674A0133B66431E7DF233A (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record_GetHashCode_m94F8E34331A3B0253C5448B7E9B23BFE0F1B04A8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:648>
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0 = __this->___m_Finger;
|
|
if (L_0)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = 0;
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_1 = __this->___m_Finger;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(2, L_1);
|
|
G_B3_0 = L_2;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* L_3 = (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4*)(&__this->___m_TouchRecord);
|
|
int32_t L_4;
|
|
L_4 = Record_GetHashCode_m94F8E34331A3B0253C5448B7E9B23BFE0F1B04A8(L_3, Record_GetHashCode_m94F8E34331A3B0253C5448B7E9B23BFE0F1B04A8_RuntimeMethod_var);
|
|
return ((int32_t)(((int32_t)il2cpp_codegen_multiply(G_B3_0, ((int32_t)397)))^L_4));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t Touch_GetHashCode_m73B534C7CAA38FE313674A0133B66431E7DF233A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = Touch_GetHashCode_m73B534C7CAA38FE313674A0133B66431E7DF233A(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25276
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_AddTouchscreen_m68D08927121523CB720C4FABAF3310678175A4CE (Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_screen, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_AppendWithCapacity_m4D609EB991E007436EB5BFA3784373529E098771_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:655>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3* L_0 = (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___touchscreens);
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_1 = ___0_screen;
|
|
int32_t L_2;
|
|
L_2 = InlinedArray_1_AppendWithCapacity_m4D609EB991E007436EB5BFA3784373529E098771(L_0, L_1, 5, InlinedArray_1_AppendWithCapacity_m4D609EB991E007436EB5BFA3784373529E098771_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:658>
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_3 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_4 = ___0_screen;
|
|
FingerAndTouchState_AddFingers_m6A1B4053B31CEFE25B8F1DA4CE10312134F15888(L_3, L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:662>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25277
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_RemoveTouchscreen_mFB8FC4091A5CA413B278CE1FE24AAF452F43162B (Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_screen, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_RemoveAtWithCapacity_mB93190E8A814A079EA1D711D1CE53DA0953D325D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputArrayExtensions_IndexOfReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m33ABEE0C487DC3D77554DABBA802DA668DBB4D18_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:669>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3 L_0 = (&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___touchscreens;
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_1 = ___0_screen;
|
|
int32_t L_2;
|
|
L_2 = InputArrayExtensions_IndexOfReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m33ABEE0C487DC3D77554DABBA802DA668DBB4D18(L_0, L_1, InputArrayExtensions_IndexOfReference_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_m33ABEE0C487DC3D77554DABBA802DA668DBB4D18_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:670>
|
|
InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3* L_3 = (InlinedArray_1_t1BB3E1C727E53B8F4342843F1042AFE85C5A70C3*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___touchscreens);
|
|
int32_t L_4 = V_0;
|
|
InlinedArray_1_RemoveAtWithCapacity_mB93190E8A814A079EA1D711D1CE53DA0953D325D(L_3, L_4, InlinedArray_1_RemoveAtWithCapacity_mB93190E8A814A079EA1D711D1CE53DA0953D325D_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:673>
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_5 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_6 = ___0_screen;
|
|
FingerAndTouchState_RemoveFingers_m04B1A6EE0792D7E9BF46E26950D2B15931BE8F99(L_5, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:677>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25278
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch_BeginUpdate_mDE8739575E49E8BA2F9FCD789F8962ED390A9EEC (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:694>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_0 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
bool L_1 = L_0->___haveActiveTouchesNeedingRefreshNextUpdate;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:695>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* L_2 = (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*)(&(&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState)->___playerState);
|
|
L_2->___haveBuiltActiveTouches = (bool)0;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:696>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25279
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A Touch_CreateGlobalState_mE34FA561BE9E79EC7FDD8E60DF092FC90C678C02 (const RuntimeMethod* method)
|
|
{
|
|
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:720>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A));
|
|
(&V_0)->___historyLengthPerFinger = ((int32_t)64);
|
|
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25280
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Touch_SaveAndResetState_mE9CFADFE47C36EFB00C1096C37C7BF6FD696BDF4 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SavedStructState_1__ctor_m3C152C71C4CF020B00FFFDB88B7A667A8192389B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CSaveAndResetStateU3Eb__80_0_m68DC728969026B2343ABDBBD11BAECB90104CE76_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CSaveAndResetStateU3Eb__80_1_mE5C6C813958FEFF5A8AED050324F4B777D62B991_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* G_B2_0 = NULL;
|
|
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* G_B2_1 = NULL;
|
|
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* G_B1_0 = NULL;
|
|
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* G_B1_1 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B4_0 = NULL;
|
|
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* G_B4_1 = NULL;
|
|
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* G_B4_2 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B3_0 = NULL;
|
|
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* G_B3_1 = NULL;
|
|
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* G_B3_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:728>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:729>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:730>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:731>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var);
|
|
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* L_0 = ((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9__80_0;
|
|
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* L_1 = L_0;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
G_B2_1 = (&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState);
|
|
goto IL_0024;
|
|
}
|
|
G_B1_0 = L_1;
|
|
G_B1_1 = (&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState);
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* L_2 = ((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* L_3 = (TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021*)il2cpp_codegen_object_new(TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021_il2cpp_TypeInfo_var);
|
|
TypedRestore__ctor_mA8D10118E8FDB2DDFBF5EC33A5A7183E01348EAE(L_3, L_2, (intptr_t)((void*)U3CU3Ec_U3CSaveAndResetStateU3Eb__80_0_m68DC728969026B2343ABDBBD11BAECB90104CE76_RuntimeMethod_var), NULL);
|
|
TypedRestore_tF41616CAC9C704AF3A7828B2599868F7AD11A021* L_4 = L_3;
|
|
((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9__80_0 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9__80_0), (void*)L_4);
|
|
G_B2_0 = L_4;
|
|
G_B2_1 = G_B1_1;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_5 = ((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9__80_1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_6 = L_5;
|
|
if (L_6)
|
|
{
|
|
G_B4_0 = L_6;
|
|
G_B4_1 = G_B2_0;
|
|
G_B4_2 = G_B2_1;
|
|
goto IL_0043;
|
|
}
|
|
G_B3_0 = L_6;
|
|
G_B3_1 = G_B2_0;
|
|
G_B3_2 = G_B2_1;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* L_7 = ((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_8, L_7, (intptr_t)((void*)U3CU3Ec_U3CSaveAndResetStateU3Eb__80_1_mE5C6C813958FEFF5A8AED050324F4B777D62B991_RuntimeMethod_var), NULL);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = L_8;
|
|
((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9__80_1 = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9__80_1), (void*)L_9);
|
|
G_B4_0 = L_9;
|
|
G_B4_1 = G_B3_1;
|
|
G_B4_2 = G_B3_2;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B* L_10 = (SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B*)il2cpp_codegen_object_new(SavedStructState_1_t5003987A6C1D94F36DB31EB8FECFD8FFD81B7C1B_il2cpp_TypeInfo_var);
|
|
SavedStructState_1__ctor_m3C152C71C4CF020B00FFFDB88B7A667A8192389B(L_10, G_B4_2, G_B4_1, G_B4_0, SavedStructState_1__ctor_m3C152C71C4CF020B00FFFDB88B7A667A8192389B_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:734>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A L_11;
|
|
L_11 = Touch_CreateGlobalState_mE34FA561BE9E79EC7FDD8E60DF092FC90C678C02(NULL);
|
|
((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___touchscreens))->___firstValue), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___touchscreens))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_Callbacks))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_Callbacks))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_CallbacksToAdd))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_CallbacksToAdd))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_CallbacksToRemove))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_CallbacksToRemove))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_Callbacks))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_Callbacks))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_CallbacksToAdd))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_CallbacksToAdd))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_CallbacksToRemove))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_CallbacksToRemove))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_Callbacks))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_Callbacks))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_CallbacksToAdd))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_CallbacksToAdd))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_CallbacksToRemove))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_CallbacksToRemove))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___playerState))->___fingers), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___playerState))->___activeFingers), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___playerState))->___activeTouches), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___playerState))->___activeTouchState), (void*)NULL);
|
|
#endif
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:736>
|
|
return L_10;
|
|
}
|
|
}
|
|
// Method Definition Index: 25281
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Touch__cctor_m5AE9759652C846EFEF18D990618080A73B73302F (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:723>
|
|
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A L_0;
|
|
L_0 = Touch_CreateGlobalState_mE34FA561BE9E79EC7FDD8E60DF092FC90C678C02(NULL);
|
|
((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___touchscreens))->___firstValue), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___touchscreens))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_Callbacks))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_Callbacks))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_CallbacksToAdd))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_CallbacksToAdd))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_CallbacksToRemove))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_CallbacksToRemove))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_Callbacks))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_Callbacks))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_CallbacksToAdd))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_CallbacksToAdd))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_CallbacksToRemove))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_CallbacksToRemove))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_Callbacks))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_Callbacks))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_CallbacksToAdd))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_CallbacksToAdd))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_CallbacksToRemove))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_CallbacksToRemove))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___playerState))->___fingers), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___playerState))->___activeFingers), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___playerState))->___activeTouches), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___playerState))->___activeTouchState), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
|
|
|
|
IL2CPP_EXTERN_C void GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshal_pinvoke(const GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A& unmarshaled, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A____touchscreens_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___touchscreensException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A____touchscreens_FieldInfo_var, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___touchscreensException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshal_pinvoke_back(const GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_pinvoke& marshaled, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A____touchscreens_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___touchscreensException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A____touchscreens_FieldInfo_var, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___touchscreensException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshal_pinvoke_cleanup(GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
|
|
|
|
IL2CPP_EXTERN_C void GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshal_com(const GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A& unmarshaled, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A____touchscreens_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___touchscreensException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A____touchscreens_FieldInfo_var, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___touchscreensException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshal_com_back(const GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_com& marshaled, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A____touchscreens_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___touchscreensException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A____touchscreens_FieldInfo_var, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___touchscreensException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshal_com_cleanup(GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
|
|
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_pinvoke(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D____fingers_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___fingersException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D____fingers_FieldInfo_var, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___fingersException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_pinvoke_back(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke& marshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D____fingers_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___fingersException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D____fingers_FieldInfo_var, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___fingersException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_pinvoke_cleanup(FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
|
|
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_com(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D____fingers_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___fingersException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D____fingers_FieldInfo_var, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___fingersException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_com_back(const FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com& marshaled, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D____fingers_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___fingersException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s': Reference type field marshaling is not supported.", FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D____fingers_FieldInfo_var, FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___fingersException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshal_com_cleanup(FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// Method Definition Index: 25282
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_AddFingers_m6A1B4053B31CEFE25B8F1DA4CE10312134F15888 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_screen, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mB1214C732EDE19508DB2D6FFC732BA6C36725CCF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_EnsureCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mF8379BFCD36AC20A6B37E3145EA3F3B403301DC6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
int32_t V_2 = 0;
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* V_3 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:769>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = ___0_screen;
|
|
NullCheck(L_0);
|
|
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_1;
|
|
L_1 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_0, NULL);
|
|
V_1 = L_1;
|
|
int32_t L_2;
|
|
L_2 = ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_inline((&V_1), ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:770>
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F** L_3 = (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F**)(&__this->___fingers);
|
|
int32_t L_4 = __this->___totalFingerCount;
|
|
int32_t L_5 = V_0;
|
|
ArrayHelpers_EnsureCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mF8379BFCD36AC20A6B37E3145EA3F3B403301DC6(L_3, L_4, L_5, ((int32_t)10), ArrayHelpers_EnsureCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mF8379BFCD36AC20A6B37E3145EA3F3B403301DC6_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:771>
|
|
V_2 = 0;
|
|
goto IL_004e;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:773>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_6 = ___0_screen;
|
|
int32_t L_7 = V_2;
|
|
int32_t L_8 = __this->___updateMask;
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_9 = (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A*)il2cpp_codegen_object_new(Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_il2cpp_TypeInfo_var);
|
|
Finger__ctor_m9D9ED2014F12F2FA245E5C04043F02D16B296505(L_9, L_6, L_7, L_8, NULL);
|
|
V_3 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:774>
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F** L_10 = (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F**)(&__this->___fingers);
|
|
int32_t* L_11 = (int32_t*)(&__this->___totalFingerCount);
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_12 = V_3;
|
|
int32_t L_13;
|
|
L_13 = ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mB1214C732EDE19508DB2D6FFC732BA6C36725CCF(L_10, L_11, L_12, ((int32_t)10), ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mB1214C732EDE19508DB2D6FFC732BA6C36725CCF_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:771>
|
|
int32_t L_14 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1));
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:771>
|
|
int32_t L_15 = V_2;
|
|
int32_t L_16 = V_0;
|
|
if ((((int32_t)L_15) < ((int32_t)L_16)))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:776>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_AddFingers_m6A1B4053B31CEFE25B8F1DA4CE10312134F15888_AdjustorThunk (RuntimeObject* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_screen, const RuntimeMethod* method)
|
|
{
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*>(__this + _offset);
|
|
FingerAndTouchState_AddFingers_m6A1B4053B31CEFE25B8F1DA4CE10312134F15888(_thisAdjusted, ___0_screen, method);
|
|
}
|
|
// Method Definition Index: 25283
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_RemoveFingers_m04B1A6EE0792D7E9BF46E26950D2B15931BE8F99 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_screen, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_EraseSliceWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m9AA46EEAF8D235726A766F9CBDE46A3587732F54_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:780>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = ___0_screen;
|
|
NullCheck(L_0);
|
|
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_1;
|
|
L_1 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_0, NULL);
|
|
V_1 = L_1;
|
|
int32_t L_2;
|
|
L_2 = ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_inline((&V_1), ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:781>
|
|
V_2 = 0;
|
|
goto IL_005c;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:783>
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_3 = __this->___fingers;
|
|
int32_t L_4 = V_2;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_6);
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_7;
|
|
L_7 = Finger_get_screen_mBA2D1364604CB55F7386EFB844B12B7CFA7EE744_inline(L_6, NULL);
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_8 = ___0_screen;
|
|
if ((!(((RuntimeObject*)(Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)L_7) == ((RuntimeObject*)(Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)L_8))))
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:787>
|
|
V_3 = 0;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:788>
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_9 = __this->___fingers;
|
|
int32_t L_10 = V_2;
|
|
int32_t L_11 = V_3;
|
|
NullCheck(L_9);
|
|
int32_t L_12 = ((int32_t)il2cpp_codegen_add(L_10, L_11));
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_13 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
|
|
NullCheck(L_13);
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_14 = L_13->___m_StateHistory;
|
|
NullCheck(L_14);
|
|
InputStateHistory_Dispose_m7DD7D063D0D205BB33BBCBA682F7BB98884CCE15(L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:787>
|
|
int32_t L_15 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_15, 1));
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:787>
|
|
int32_t L_16 = V_3;
|
|
int32_t L_17 = V_0;
|
|
if ((((int32_t)L_16) < ((int32_t)L_17)))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:791>
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F** L_18 = (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F**)(&__this->___fingers);
|
|
int32_t* L_19 = (int32_t*)(&__this->___totalFingerCount);
|
|
int32_t L_20 = V_2;
|
|
int32_t L_21 = V_0;
|
|
ArrayHelpers_EraseSliceWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m9AA46EEAF8D235726A766F9CBDE46A3587732F54(L_18, L_19, L_20, L_21, ArrayHelpers_EraseSliceWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_m9AA46EEAF8D235726A766F9CBDE46A3587732F54_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:792>
|
|
goto IL_0067;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:781>
|
|
int32_t L_22 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:781>
|
|
int32_t L_23 = V_2;
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_24 = __this->___fingers;
|
|
NullCheck(L_24);
|
|
if ((((int32_t)L_23) < ((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:796>
|
|
__this->___haveBuiltActiveTouches = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:797>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_RemoveFingers_m04B1A6EE0792D7E9BF46E26950D2B15931BE8F99_AdjustorThunk (RuntimeObject* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_screen, const RuntimeMethod* method)
|
|
{
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*>(__this + _offset);
|
|
FingerAndTouchState_RemoveFingers_m04B1A6EE0792D7E9BF46E26950D2B15931BE8F99(_thisAdjusted, ___0_screen, method);
|
|
}
|
|
// Method Definition Index: 25284
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_Destroy_mA11DBC6D12D70F40AA14283E65322FAFC602572B (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* G_B5_0 = NULL;
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* G_B4_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:801>
|
|
V_0 = 0;
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:802>
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_0 = __this->___fingers;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
NullCheck(L_3);
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_4 = L_3->___m_StateHistory;
|
|
NullCheck(L_4);
|
|
InputStateHistory_Dispose_m7DD7D063D0D205BB33BBCBA682F7BB98884CCE15(L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:801>
|
|
int32_t L_5 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:801>
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7 = __this->___totalFingerCount;
|
|
if ((((int32_t)L_6) < ((int32_t)L_7)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:803>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_8 = __this->___activeTouchState;
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_9 = L_8;
|
|
if (L_9)
|
|
{
|
|
G_B5_0 = L_9;
|
|
goto IL_002f;
|
|
}
|
|
G_B4_0 = L_9;
|
|
}
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
NullCheck(G_B5_0);
|
|
InputStateHistory_Dispose_m7DD7D063D0D205BB33BBCBA682F7BB98884CCE15(G_B5_0, NULL);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:804>
|
|
__this->___activeTouchState = (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___activeTouchState), (void*)(InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:805>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_Destroy_mA11DBC6D12D70F40AA14283E65322FAFC602572B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*>(__this + _offset);
|
|
FingerAndTouchState_Destroy_mA11DBC6D12D70F40AA14283E65322FAFC602572B(_thisAdjusted, method);
|
|
}
|
|
// Method Definition Index: 25285
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_UpdateActiveFingers_m21F725BF5EC6E4953C44FFBA63F4C7ABFA0FBE49 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mB1214C732EDE19508DB2D6FFC732BA6C36725CCF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* V_1 = NULL;
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:811>
|
|
__this->___activeFingerCount = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:812>
|
|
V_0 = 0;
|
|
goto IL_003d;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:814>
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_0 = __this->___fingers;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
V_1 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:815>
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_4 = V_1;
|
|
NullCheck(L_4);
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_5;
|
|
L_5 = Finger_get_currentTouch_m53721DA3C8AB5C0D600499C33CCD5854E757890D(L_4, NULL);
|
|
V_2 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:816>
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = Touch_get_valid_mE080F315B12790875B5A6194456ABF0C0FB04044((&V_2), NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:817>
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F** L_7 = (FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F**)(&__this->___activeFingers);
|
|
int32_t* L_8 = (int32_t*)(&__this->___activeFingerCount);
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_9 = V_1;
|
|
int32_t L_10;
|
|
L_10 = ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mB1214C732EDE19508DB2D6FFC732BA6C36725CCF(L_7, L_8, L_9, ((int32_t)10), ArrayHelpers_AppendWithCapacity_TisFinger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A_mB1214C732EDE19508DB2D6FFC732BA6C36725CCF_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:812>
|
|
int32_t L_11 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:812>
|
|
int32_t L_12 = V_0;
|
|
int32_t L_13 = __this->___totalFingerCount;
|
|
if ((((int32_t)L_12) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:819>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_UpdateActiveFingers_m21F725BF5EC6E4953C44FFBA63F4C7ABFA0FBE49_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*>(__this + _offset);
|
|
FingerAndTouchState_UpdateActiveFingers_m21F725BF5EC6E4953C44FFBA63F4C7ABFA0FBE49(_thisAdjusted, method);
|
|
}
|
|
// Method Definition Index: 25286
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FingerAndTouchState_UpdateActiveTouches_m48D632ECA4B568270B458D9CED54AC591FBFBF43 (FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_AppendWithCapacity_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_mD1EB70229BA4FCE7BB48A627BDB2246259B0B02A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_Clear_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_m145582A0849DC8B8158800E6C42F8C0715633546_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_InsertAtWithCapacity_TisTouch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_m98321242121000D55966FF534E3B042044932B60_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1__ctor_m760ABD5FDD38AF6C3FF42B641B3FC8383E4A91DB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Item_mF7217A9697E8EAA3A574FCDCB611597EC9C1836A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Record__ctor_m1CACECB022FDAACE6482C208E6552F7614445895_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_SizeOf_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mFE961AB914D8126DC425FAFC788195746A8CBA59_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint32_t V_0 = 0;
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
int32_t V_2 = 0;
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A** V_3 = NULL;
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_8 = NULL;
|
|
int32_t V_9 = 0;
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* V_10 = NULL;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
int32_t V_13 = 0;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_14 = NULL;
|
|
bool V_15 = false;
|
|
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* V_16 = NULL;
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* V_17 = NULL;
|
|
int32_t V_18 = 0;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* V_19 = NULL;
|
|
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* V_20 = NULL;
|
|
int32_t V_21 = 0;
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 V_22;
|
|
memset((&V_22), 0, sizeof(V_22));
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 V_23;
|
|
memset((&V_23), 0, sizeof(V_23));
|
|
ReadOnlyArray_1_tA1DF7A256AD2BF17FB155224CB2611ED215EFCD3 V_24;
|
|
memset((&V_24), 0, sizeof(V_24));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:823>
|
|
bool L_0 = __this->___haveBuiltActiveTouches;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:824>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:827>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_1 = __this->___activeTouchState;
|
|
if (L_1)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:829>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:830>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:831>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:832>
|
|
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28));
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_2 = V_1;
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_3 = (InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798*)il2cpp_codegen_object_new(InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798_il2cpp_TypeInfo_var);
|
|
InputStateHistory_1__ctor_m760ABD5FDD38AF6C3FF42B641B3FC8383E4A91DB(L_3, L_2, InputStateHistory_1__ctor_m760ABD5FDD38AF6C3FF42B641B3FC8383E4A91DB_RuntimeMethod_var);
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_4 = L_3;
|
|
int32_t L_5;
|
|
L_5 = UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_inline(UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_RuntimeMethod_var);
|
|
NullCheck(L_4);
|
|
InputStateHistory_set_extraMemoryPerRecord_m6907893F41CB2EB06B4C04B2E8B35E0E5E800786(L_4, L_5, NULL);
|
|
__this->___activeTouchState = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___activeTouchState), (void*)L_4);
|
|
goto IL_0059;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:836>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_6 = __this->___activeTouchState;
|
|
NullCheck(L_6);
|
|
InputStateHistory_Clear_m7B9A241840171E7224D0A01969F36CF294D227F3(L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:837>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_7 = __this->___activeTouchState;
|
|
NullCheck(L_7);
|
|
((InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480*)L_7)->___m_ControlCount = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:838>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_8 = __this->___activeTouchState;
|
|
NullCheck(L_8);
|
|
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17* L_9 = ((InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480*)L_8)->___m_Controls;
|
|
ArrayHelpers_Clear_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_m145582A0849DC8B8158800E6C42F8C0715633546(L_9, ArrayHelpers_Clear_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_m145582A0849DC8B8158800E6C42F8C0715633546_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:840>
|
|
__this->___activeTouchCount = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:841>
|
|
__this->___haveActiveTouchesNeedingRefreshNextUpdate = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:842>
|
|
uint32_t L_10 = ((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_UpdateStepCount;
|
|
V_0 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:849>
|
|
V_2 = 0;
|
|
goto IL_031c;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:851>
|
|
FingerU5BU5D_t7D581BC6C3943F4482AA079AE68BBE33F3E58D7F* L_11 = __this->___fingers;
|
|
int32_t L_12 = V_2;
|
|
NullCheck(L_11);
|
|
V_3 = ((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:856>
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A** L_13 = V_3;
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_14 = *((Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A**)L_13);
|
|
NullCheck(L_14);
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_15 = L_14->___m_StateHistory;
|
|
V_4 = L_15;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:857>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_16 = V_4;
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = InputStateHistory_get_Count_m23DF78272A6C97F6C8782A953482772CDF6FFA81_inline(L_16, NULL);
|
|
V_5 = L_17;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:858>
|
|
int32_t L_18 = V_5;
|
|
if (!L_18)
|
|
{
|
|
goto IL_0318;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:866>
|
|
int32_t L_19 = __this->___activeTouchCount;
|
|
V_6 = L_19;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:872>
|
|
V_7 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:873>
|
|
il2cpp_codegen_initobj((&V_8), sizeof(TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:874>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_20 = V_4;
|
|
int32_t L_21 = V_5;
|
|
NullCheck(L_20);
|
|
int32_t L_22;
|
|
L_22 = InputStateHistory_UserIndexToRecordIndex_m81D4D6EE19ED80607BAAA31F3159168AC3B5B678(L_20, ((int32_t)il2cpp_codegen_subtract(L_21, 1)), NULL);
|
|
V_9 = L_22;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:875>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_23 = V_4;
|
|
int32_t L_24 = V_9;
|
|
NullCheck(L_23);
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_25;
|
|
L_25 = InputStateHistory_GetRecordUnchecked_m569EB10E4D93B81BEA6699746C15C720F48E42F6(L_23, L_24, NULL);
|
|
V_10 = L_25;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:876>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_26 = V_4;
|
|
NullCheck(L_26);
|
|
int32_t L_27;
|
|
L_27 = InputStateHistory_get_bytesPerRecord_mAF516CE1E45E3EBA46EDFFF2923908D6B672D114(L_26, NULL);
|
|
V_11 = L_27;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:877>
|
|
int32_t L_28 = V_11;
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_29 = V_4;
|
|
NullCheck(L_29);
|
|
int32_t L_30;
|
|
L_30 = InputStateHistory_get_extraMemoryPerRecord_m4E4C9D89BC37B9CD7E6AFFD58D95A9030F92E653_inline(L_29, NULL);
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_28, L_30));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:878>
|
|
V_13 = 0;
|
|
goto IL_030f;
|
|
}
|
|
|
|
IL_00e2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:880>
|
|
int32_t L_31 = V_13;
|
|
if (!L_31)
|
|
{
|
|
goto IL_0110;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:882>
|
|
int32_t L_32 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_subtract(L_32, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:883>
|
|
int32_t L_33 = V_9;
|
|
if ((((int32_t)L_33) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0109;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:887>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_34 = V_4;
|
|
NullCheck(L_34);
|
|
int32_t L_35;
|
|
L_35 = InputStateHistory_get_historyDepth_mBAFA4592E170099C0E8BB360B148A854517AA561_inline(L_34, NULL);
|
|
V_9 = ((int32_t)il2cpp_codegen_subtract(L_35, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:888>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_36 = V_4;
|
|
int32_t L_37 = V_9;
|
|
NullCheck(L_36);
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_38;
|
|
L_38 = InputStateHistory_GetRecordUnchecked_m569EB10E4D93B81BEA6699746C15C720F48E42F6(L_36, L_37, NULL);
|
|
V_10 = L_38;
|
|
goto IL_0110;
|
|
}
|
|
|
|
IL_0109:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:892>
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_39 = V_10;
|
|
int32_t L_40 = V_11;
|
|
V_10 = ((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)il2cpp_codegen_subtract((intptr_t)L_39, L_40));
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:897>
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_41 = V_10;
|
|
uint8_t* L_42;
|
|
L_42 = RecordHeader_get_statePtrWithoutControlIndex_m06FC191CB4801F442A0B972DA23B48ECE629922C((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)L_41, NULL);
|
|
V_14 = (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_42;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:898>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_43 = V_14;
|
|
NullCheck(L_43);
|
|
uint32_t L_44 = L_43->___updateStepCount;
|
|
uint32_t L_45 = V_0;
|
|
V_15 = (bool)((((int32_t)L_44) == ((int32_t)L_45))? 1 : 0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:899>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_46 = V_14;
|
|
NullCheck(L_46);
|
|
int32_t L_47 = L_46->___touchId;
|
|
int32_t L_48 = V_7;
|
|
if ((!(((uint32_t)L_47) == ((uint32_t)L_48))))
|
|
{
|
|
goto IL_0181;
|
|
}
|
|
}
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_49 = V_14;
|
|
int32_t L_50;
|
|
L_50 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_49, NULL);
|
|
bool L_51;
|
|
L_51 = InputExtensions_IsEndedOrCanceled_m00A006256F424472010DDC115CBAEFC4F9A024CA(L_50, NULL);
|
|
if (L_51)
|
|
{
|
|
goto IL_0181;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:903>
|
|
bool L_52 = V_15;
|
|
if (!L_52)
|
|
{
|
|
goto IL_0309;
|
|
}
|
|
}
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_53 = V_14;
|
|
int32_t L_54;
|
|
L_54 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_53, NULL);
|
|
if ((!(((uint32_t)L_54) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0309;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:907>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_55 = V_8;
|
|
TouchState_set_phase_mCC48A355F50B41E745BDCE383BD083A69BD8644A((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_55, 1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:908>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_56 = V_8;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_57 = V_14;
|
|
NullCheck(L_57);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_58 = L_57->___position;
|
|
NullCheck(L_56);
|
|
L_56->___position = L_58;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:909>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_59 = V_8;
|
|
NullCheck(L_59);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_60 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&L_59->___delta);
|
|
il2cpp_codegen_initobj(L_60, sizeof(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:911>
|
|
__this->___haveActiveTouchesNeedingRefreshNextUpdate = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:917>
|
|
goto IL_0309;
|
|
}
|
|
|
|
IL_0181:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:923>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_61 = V_14;
|
|
int32_t L_62;
|
|
L_62 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_61, NULL);
|
|
bool L_63;
|
|
L_63 = InputExtensions_IsEndedOrCanceled_m00A006256F424472010DDC115CBAEFC4F9A024CA(L_62, NULL);
|
|
if (!L_63)
|
|
{
|
|
goto IL_01ab;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:928>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:929>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_64 = V_14;
|
|
bool L_65;
|
|
L_65 = TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_64, NULL);
|
|
if (!L_65)
|
|
{
|
|
goto IL_01a4;
|
|
}
|
|
}
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_66 = V_14;
|
|
NullCheck(L_66);
|
|
uint32_t L_67 = L_66->___updateStepCount;
|
|
uint32_t L_68 = V_0;
|
|
if ((((int32_t)L_67) == ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_68, 1)))))
|
|
{
|
|
goto IL_01ab;
|
|
}
|
|
}
|
|
|
|
IL_01a4:
|
|
{
|
|
bool L_69 = V_15;
|
|
if (!L_69)
|
|
{
|
|
goto IL_0318;
|
|
}
|
|
}
|
|
|
|
IL_01ab:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:937>
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_70 = V_10;
|
|
int32_t L_71 = V_12;
|
|
V_16 = (ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4*)((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)il2cpp_codegen_add((intptr_t)L_70, L_71));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:938>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_72 = __this->___activeTouchState;
|
|
NullCheck(L_72);
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_73;
|
|
L_73 = InputStateHistory_AllocateRecord_mAD0E7626ECD9E937BBD46B8E84DEE7E247A8B707(L_72, (&V_18), NULL);
|
|
V_17 = L_73;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:939>
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_74 = V_17;
|
|
uint8_t* L_75;
|
|
L_75 = RecordHeader_get_statePtrWithControlIndex_m68BBA8402AF00318B40229E5121F9C5132A3B655((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)L_74, NULL);
|
|
V_19 = (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_75;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:940>
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_76 = V_17;
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_77 = __this->___activeTouchState;
|
|
NullCheck(L_77);
|
|
int32_t L_78;
|
|
L_78 = InputStateHistory_get_bytesPerRecord_mAF516CE1E45E3EBA46EDFFF2923908D6B672D114(L_77, NULL);
|
|
int32_t L_79;
|
|
L_79 = UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_inline(UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_RuntimeMethod_var);
|
|
V_20 = (ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4*)((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)il2cpp_codegen_subtract((intptr_t)((RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0*)il2cpp_codegen_add((intptr_t)L_76, L_78)), L_79));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:941>
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_80 = V_17;
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_81 = V_10;
|
|
NullCheck(L_81);
|
|
double L_82 = L_81->___time;
|
|
NullCheck(L_80);
|
|
L_80->___time = L_82;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:942>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:943>
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_83 = V_17;
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_84 = __this->___activeTouchState;
|
|
NullCheck(L_84);
|
|
InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17** L_85 = (InputControlU5BU5D_t0B951FEF1504D6340387C4735F5D6F426F40FE17**)(&((InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480*)L_84)->___m_Controls);
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_86 = __this->___activeTouchState;
|
|
NullCheck(L_86);
|
|
int32_t* L_87 = (int32_t*)(&((InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480*)L_86)->___m_ControlCount);
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A** L_88 = V_3;
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_89 = *((Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A**)L_88);
|
|
NullCheck(L_89);
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_90 = L_89->___m_StateHistory;
|
|
NullCheck(L_90);
|
|
ReadOnlyArray_1_tA1DF7A256AD2BF17FB155224CB2611ED215EFCD3 L_91;
|
|
L_91 = InputStateHistory_get_controls_m2B1056A5B21F2A8CFAAEE9136E24D27C4BFF31CC(L_90, NULL);
|
|
V_24 = L_91;
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_92;
|
|
L_92 = ReadOnlyArray_1_get_Item_mF7217A9697E8EAA3A574FCDCB611597EC9C1836A((&V_24), 0, ReadOnlyArray_1_get_Item_mF7217A9697E8EAA3A574FCDCB611597EC9C1836A_RuntimeMethod_var);
|
|
int32_t L_93;
|
|
L_93 = ArrayHelpers_AppendWithCapacity_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_mD1EB70229BA4FCE7BB48A627BDB2246259B0B02A(L_85, L_87, L_92, ((int32_t)10), ArrayHelpers_AppendWithCapacity_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_mD1EB70229BA4FCE7BB48A627BDB2246259B0B02A_RuntimeMethod_var);
|
|
NullCheck(L_83);
|
|
L_83->___controlIndex = L_93;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:945>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_94 = V_19;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_95 = V_14;
|
|
int32_t L_96;
|
|
L_96 = UnsafeUtility_SizeOf_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mFE961AB914D8126DC425FAFC788195746A8CBA59_inline(UnsafeUtility_SizeOf_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mFE961AB914D8126DC425FAFC788195746A8CBA59_RuntimeMethod_var);
|
|
UnsafeUtility_MemCpy_m5CEA91ACDADC522E584AE3A2AB2B0B74393A9177((void*)L_94, (void*)L_95, ((int64_t)L_96), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:946>
|
|
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* L_97 = V_20;
|
|
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* L_98 = V_16;
|
|
int32_t L_99;
|
|
L_99 = UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_inline(UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_RuntimeMethod_var);
|
|
UnsafeUtility_MemCpy_m5CEA91ACDADC522E584AE3A2AB2B0B74393A9177((void*)L_97, (void*)L_98, ((int64_t)L_99), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:952>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_100 = V_14;
|
|
int32_t L_101;
|
|
L_101 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_100, NULL);
|
|
V_21 = L_101;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:953>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:954>
|
|
int32_t L_102 = V_21;
|
|
if ((((int32_t)L_102) == ((int32_t)2)))
|
|
{
|
|
goto IL_0259;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_103 = V_21;
|
|
if ((!(((uint32_t)L_103) == ((uint32_t)1))))
|
|
{
|
|
goto IL_028e;
|
|
}
|
|
}
|
|
|
|
IL_0259:
|
|
{
|
|
bool L_104 = V_15;
|
|
if (L_104)
|
|
{
|
|
goto IL_028e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_105 = V_21;
|
|
if ((!(((uint32_t)L_105) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0277;
|
|
}
|
|
}
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_106 = V_14;
|
|
bool L_107;
|
|
L_107 = TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_106, NULL);
|
|
if (!L_107)
|
|
{
|
|
goto IL_0277;
|
|
}
|
|
}
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_108 = V_14;
|
|
NullCheck(L_108);
|
|
uint32_t L_109 = L_108->___updateStepCount;
|
|
uint32_t L_110 = V_0;
|
|
if ((((int32_t)L_109) == ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_110, 1)))))
|
|
{
|
|
goto IL_028e;
|
|
}
|
|
}
|
|
|
|
IL_0277:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:956>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_111 = V_19;
|
|
TouchState_set_phase_mCC48A355F50B41E745BDCE383BD083A69BD8644A((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_111, 5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:957>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_112 = V_19;
|
|
NullCheck(L_112);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_113 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&L_112->___delta);
|
|
il2cpp_codegen_initobj(L_113, sizeof(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7));
|
|
goto IL_02b8;
|
|
}
|
|
|
|
IL_028e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:960>
|
|
bool L_114 = V_15;
|
|
if (L_114)
|
|
{
|
|
goto IL_02aa;
|
|
}
|
|
}
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_115 = V_14;
|
|
bool L_116;
|
|
L_116 = TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320((TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)L_115, NULL);
|
|
if (L_116)
|
|
{
|
|
goto IL_02aa;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:962>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_117 = V_19;
|
|
NullCheck(L_117);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_118 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&L_117->___delta);
|
|
il2cpp_codegen_initobj(L_118, sizeof(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7));
|
|
goto IL_02b8;
|
|
}
|
|
|
|
IL_02aa:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:967>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_119 = V_19;
|
|
ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4* L_120 = V_20;
|
|
NullCheck(L_120);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_121 = L_120->___accumulatedDelta;
|
|
NullCheck(L_119);
|
|
L_119->___delta = L_121;
|
|
}
|
|
|
|
IL_02b8:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:970>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_122 = __this->___activeTouchState;
|
|
int32_t L_123 = V_18;
|
|
RecordHeader_t6523EF3FFB7B66D4FC75A9C96AE57A0EC6D209F0* L_124 = V_17;
|
|
Record__ctor_m1CACECB022FDAACE6482C208E6552F7614445895((&V_22), L_122, L_123, L_124, Record__ctor_m1CACECB022FDAACE6482C208E6552F7614445895_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:971>
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A** L_125 = V_3;
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_126 = *((Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A**)L_125);
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_127 = V_22;
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728((&V_23), L_126, L_127, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:973>
|
|
TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354** L_128 = (TouchU5BU5D_t32B2235E604E83356406C886C1A817C01F7C6354**)(&__this->___activeTouches);
|
|
int32_t* L_129 = (int32_t*)(&__this->___activeTouchCount);
|
|
int32_t L_130 = V_6;
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_131 = V_23;
|
|
ArrayHelpers_InsertAtWithCapacity_TisTouch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_m98321242121000D55966FF534E3B042044932B60(L_128, L_129, L_130, L_131, ((int32_t)10), ArrayHelpers_InsertAtWithCapacity_TisTouch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_m98321242121000D55966FF534E3B042044932B60_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:975>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_132 = V_14;
|
|
NullCheck(L_132);
|
|
int32_t L_133 = L_132->___touchId;
|
|
V_7 = L_133;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:976>
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* L_134 = V_19;
|
|
V_8 = L_134;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:980>
|
|
int32_t L_135;
|
|
L_135 = Touch_get_phase_m8269B0C7F19A3A0E187DADBAEC88D51D39C12939((&V_23), NULL);
|
|
if ((((int32_t)L_135) == ((int32_t)5)))
|
|
{
|
|
goto IL_0309;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:981>
|
|
__this->___haveActiveTouchesNeedingRefreshNextUpdate = (bool)1;
|
|
}
|
|
|
|
IL_0309:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:878>
|
|
int32_t L_136 = V_13;
|
|
V_13 = ((int32_t)il2cpp_codegen_add(L_136, 1));
|
|
}
|
|
|
|
IL_030f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:878>
|
|
int32_t L_137 = V_13;
|
|
int32_t L_138 = V_5;
|
|
if ((((int32_t)L_137) < ((int32_t)L_138)))
|
|
{
|
|
goto IL_00e2;
|
|
}
|
|
}
|
|
|
|
IL_0318:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:849>
|
|
int32_t L_139 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_139, 1));
|
|
}
|
|
|
|
IL_031c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:849>
|
|
int32_t L_140 = V_2;
|
|
int32_t L_141 = __this->___totalFingerCount;
|
|
if ((((int32_t)L_140) < ((int32_t)L_141)))
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:985>
|
|
__this->___haveBuiltActiveTouches = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:986>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void FingerAndTouchState_UpdateActiveTouches_m48D632ECA4B568270B458D9CED54AC591FBFBF43_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<FingerAndTouchState_tC0A8EFA38A7428736E11195294EA7F6E1BA8F82D*>(__this + _offset);
|
|
FingerAndTouchState_UpdateActiveTouches_m48D632ECA4B568270B458D9CED54AC591FBFBF43(_thisAdjusted, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25287
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m6D7B571C5F83CA82B830A0991AC446AC44EF1759 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* L_0 = (U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6*)il2cpp_codegen_object_new(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__ctor_mE31C1F868AE383042EB223A7961315337C794275(L_0, NULL);
|
|
((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6_il2cpp_TypeInfo_var))->___U3CU3E9), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25288
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mE31C1F868AE383042EB223A7961315337C794275 (U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25289
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CSaveAndResetStateU3Eb__80_0_m68DC728969026B2343ABDBBD11BAECB90104CE76 (U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* __this, GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* ___0_state, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:730>
|
|
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A* L_0 = ___0_state;
|
|
GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A L_1 = (*(GlobalState_tFDD5D3FE93083EE02E4E8987E61A5D7D5F5CE61A*)L_0);
|
|
il2cpp_codegen_runtime_class_init_inline(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___touchscreens))->___firstValue), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___touchscreens))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_Callbacks))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_Callbacks))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_CallbacksToAdd))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_CallbacksToAdd))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_CallbacksToRemove))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerDown))->___m_CallbacksToRemove))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_Callbacks))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_Callbacks))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_CallbacksToAdd))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_CallbacksToAdd))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_CallbacksToRemove))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerMove))->___m_CallbacksToRemove))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_Callbacks))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_Callbacks))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_CallbacksToAdd))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_CallbacksToAdd))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_CallbacksToRemove))->___firstValue), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___onFingerUp))->___m_CallbacksToRemove))->___additionalValues), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___playerState))->___fingers), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___playerState))->___activeFingers), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___playerState))->___activeTouches), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&((Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_StaticFields*)il2cpp_codegen_static_fields_for(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var))->___s_GlobalState))->___playerState))->___activeTouchState), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25290
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CSaveAndResetStateU3Eb__80_1_mE5C6C813958FEFF5A8AED050324F4B777D62B991 (U3CU3Ec_t8DA3DD7AAEB2E672E4D5166F6CB53BF8FD66FBF6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:731>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshal_pinvoke(const TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580& unmarshaled, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_pinvoke& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580____m_History_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_HistoryException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580____m_History_FieldInfo_var, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_HistoryException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshal_pinvoke_back(const TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_pinvoke& marshaled, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580____m_History_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_HistoryException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580____m_History_FieldInfo_var, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_HistoryException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshal_pinvoke_cleanup(TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshal_com(const TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580& unmarshaled, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_com& marshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580____m_History_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_HistoryException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580____m_History_FieldInfo_var, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_HistoryException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshal_com_back(const TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_com& marshaled, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580& unmarshaled)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580____m_History_FieldInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Exception_t* ___m_HistoryException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '%s' of type '%s'.", TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580____m_History_FieldInfo_var, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_0_0_0_var);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_HistoryException, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshal_com_cleanup(TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// Method Definition Index: 25291
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchHistory__ctor_m3416A30524B233DED1F8C753398436191ED44814 (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___0_finger, InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___1_history, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* G_B2_0 = NULL;
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* G_B1_0 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* G_B3_1 = NULL;
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* G_B5_0 = NULL;
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* G_B4_0 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* G_B6_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:24>
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0 = ___0_finger;
|
|
__this->___m_Finger = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Finger), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:25>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_1 = ___1_history;
|
|
__this->___m_History = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_History), (void*)L_1);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:26>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_2 = ___1_history;
|
|
NullCheck(L_2);
|
|
uint32_t L_3;
|
|
L_3 = InputStateHistory_get_version_m89DDB085F1210A84797C85822792F5FBF73C25F0_inline(L_2, NULL);
|
|
__this->___m_Version = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:27>
|
|
int32_t L_4 = ___3_count;
|
|
if ((((int32_t)L_4) >= ((int32_t)0)))
|
|
{
|
|
G_B2_0 = __this;
|
|
goto IL_002d;
|
|
}
|
|
G_B1_0 = __this;
|
|
}
|
|
{
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_5 = __this->___m_History;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = InputStateHistory_get_Count_m23DF78272A6C97F6C8782A953482772CDF6FFA81_inline(L_5, NULL);
|
|
G_B3_0 = L_6;
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
int32_t L_7 = ___3_count;
|
|
G_B3_0 = L_7;
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
G_B3_1->___m_Count = G_B3_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:28>
|
|
int32_t L_8 = ___2_startIndex;
|
|
if ((((int32_t)L_8) >= ((int32_t)0)))
|
|
{
|
|
G_B5_0 = __this;
|
|
goto IL_0048;
|
|
}
|
|
G_B4_0 = __this;
|
|
}
|
|
{
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_9 = __this->___m_History;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = InputStateHistory_get_Count_m23DF78272A6C97F6C8782A953482772CDF6FFA81_inline(L_9, NULL);
|
|
G_B6_0 = ((int32_t)il2cpp_codegen_subtract(L_10, 1));
|
|
G_B6_1 = G_B4_0;
|
|
goto IL_0049;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
int32_t L_11 = ___2_startIndex;
|
|
G_B6_0 = L_11;
|
|
G_B6_1 = G_B5_0;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
G_B6_1->___m_StartIndex = G_B6_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:29>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TouchHistory__ctor_m3416A30524B233DED1F8C753398436191ED44814_AdjustorThunk (RuntimeObject* __this, Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* ___0_finger, InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* ___1_history, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580*>(__this + _offset);
|
|
TouchHistory__ctor_m3416A30524B233DED1F8C753398436191ED44814(_thisAdjusted, ___0_finger, ___1_history, ___2_startIndex, ___3_count, method);
|
|
}
|
|
// Method Definition Index: 25292
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TouchHistory_GetEnumerator_mA49607C32F33B1D33F460C0E3882161F18001B7E (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:37>
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_0 = (*(TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580*)__this);
|
|
Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* L_1 = (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5*)il2cpp_codegen_object_new(Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5_il2cpp_TypeInfo_var);
|
|
Enumerator__ctor_m74864CB6B9CA6B01970FD5A8A88A9F68A00C6D72(L_1, L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* TouchHistory_GetEnumerator_mA49607C32F33B1D33F460C0E3882161F18001B7E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = TouchHistory_GetEnumerator_mA49607C32F33B1D33F460C0E3882161F18001B7E(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25293
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TouchHistory_System_Collections_IEnumerable_GetEnumerator_m4337DC86FF76C3ACE3E301937F383D911A8D20C5 (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:42>
|
|
RuntimeObject* L_0;
|
|
L_0 = TouchHistory_GetEnumerator_mA49607C32F33B1D33F460C0E3882161F18001B7E(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* TouchHistory_System_Collections_IEnumerable_GetEnumerator_m4337DC86FF76C3ACE3E301937F383D911A8D20C5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = TouchHistory_System_Collections_IEnumerable_GetEnumerator_m4337DC86FF76C3ACE3E301937F383D911A8D20C5(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25294
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277 (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:48>
|
|
int32_t L_0 = __this->___m_Count;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25295
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 TouchHistory_get_Item_m2CF5BFE3F5263F361E7CBFD083E7449DA4F42BBF (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:59>
|
|
TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:60>
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
int32_t L_2;
|
|
L_2 = TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277_inline(__this, NULL);
|
|
if ((((int32_t)L_1) < ((int32_t)L_2)))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:61>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:62>
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(il2cpp_defaults.int32_class, &L_4);
|
|
int32_t L_6;
|
|
L_6 = TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277_inline(__this, NULL);
|
|
int32_t L_7 = L_6;
|
|
RuntimeObject* L_8 = Box(il2cpp_defaults.int32_class, &L_7);
|
|
String_t* L_9;
|
|
L_9 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD408E794AF2B358E256380A4F7BA14299C3D5801)), L_5, L_8, NULL);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_10 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_10, L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TouchHistory_get_Item_m2CF5BFE3F5263F361E7CBFD083E7449DA4F42BBF_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:65>
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_11 = __this->___m_Finger;
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_12 = __this->___m_History;
|
|
int32_t L_13 = __this->___m_StartIndex;
|
|
int32_t L_14 = ___0_index;
|
|
NullCheck(L_12);
|
|
Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4 L_15;
|
|
L_15 = InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888(L_12, ((int32_t)il2cpp_codegen_subtract(L_13, L_14)), InputStateHistory_1_get_Item_m54ECCC9368B747D34D2EAA4500B6D459C35FF888_RuntimeMethod_var);
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_16;
|
|
memset((&L_16), 0, sizeof(L_16));
|
|
Touch__ctor_mD4F3EE89F869C4A4C4ED358943FC508EED0F0728((&L_16), L_11, L_15, NULL);
|
|
return L_16;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 TouchHistory_get_Item_m2CF5BFE3F5263F361E7CBFD083E7449DA4F42BBF_AdjustorThunk (RuntimeObject* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580*>(__this + _offset);
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 _returnValue;
|
|
_returnValue = TouchHistory_get_Item_m2CF5BFE3F5263F361E7CBFD083E7449DA4F42BBF(_thisAdjusted, ___0_index, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25296
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038 (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:71>
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0 = __this->___m_Finger;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_1 = __this->___m_History;
|
|
if (L_1)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:72>
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0654CF7A7652A61085CCC7B975A9FB4D7C53DD46)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:73>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_3 = __this->___m_History;
|
|
NullCheck(L_3);
|
|
uint32_t L_4;
|
|
L_4 = InputStateHistory_get_version_m89DDB085F1210A84797C85822792F5FBF73C25F0_inline(L_3, NULL);
|
|
uint32_t L_5 = __this->___m_Version;
|
|
if ((((int32_t)L_4) == ((int32_t)L_5)))
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:74>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:75>
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_6 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral80C0A09DC56E67593A40EC47DEE2A4827DB0BC33)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:76>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580*>(__this + _offset);
|
|
TouchHistory_CheckValid_m16A4AC2BB2AA62C738B2A9F916002454F83C2038(_thisAdjusted, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25297
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m74864CB6B9CA6B01970FD5A8A88A9F68A00C6D72 (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 ___0_owner, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:83>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:85>
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_0 = ___0_owner;
|
|
__this->___m_Owner = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_Owner))->___m_History), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_Owner))->___m_Finger), (void*)NULL);
|
|
#endif
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:86>
|
|
__this->___m_Index = (-1);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:87>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25298
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1E2B8AF0617D0C2729AEDE7986BFCF3BFA4EB74E (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:91>
|
|
int32_t L_0 = __this->___m_Index;
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_1 = __this->___m_Owner;
|
|
V_0 = L_1;
|
|
int32_t L_2;
|
|
L_2 = TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277_inline((&V_0), NULL);
|
|
if ((((int32_t)L_0) < ((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, 1)))))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:92>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:93>
|
|
int32_t L_3 = __this->___m_Index;
|
|
__this->___m_Index = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:94>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25299
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_mBC033BF242FA3EE5387F2E07ADA1849151824845 (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:99>
|
|
__this->___m_Index = (-1);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:100>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25300
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 Enumerator_get_Current_m063D55945EB78459BBDCE1AF96021395F5E873A6 (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:102>
|
|
TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580 L_0 = __this->___m_Owner;
|
|
V_0 = L_0;
|
|
int32_t L_1 = __this->___m_Index;
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_2;
|
|
L_2 = TouchHistory_get_Item_m2CF5BFE3F5263F361E7CBFD083E7449DA4F42BBF((&V_0), L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 25301
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m46251565F2D8EB1497DDDA07F8BC825A9BAA411F (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:104>
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_0;
|
|
L_0 = Enumerator_get_Current_m063D55945EB78459BBDCE1AF96021395F5E873A6(__this, NULL);
|
|
Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70 L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70_il2cpp_TypeInfo_var, &L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 25302
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m394A020A3119E7C53B7A3DDB7E6EAD231A26CC4A (Enumerator_tED4978E8A7E5E733B9D8095128F1BD464A0214C5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:108>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25303
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:40>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = __this->___U3CsimulatedTouchscreenU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25304
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_set_simulatedTouchscreen_m59218EBAFC13C1FF0019F59F12378749620C9EEF (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:40>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = ___0_value;
|
|
__this->___U3CsimulatedTouchscreenU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CsimulatedTouchscreenU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25305
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* TouchSimulation_get_instance_m34792E651AC9A88122F92EF633537A69B570739C (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:42>
|
|
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_0 = ((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25306
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_Enable_m86E0F695BFC248E7E28DC62C65D92E4666F49513 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_AddComponent_TisTouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_m3332B854D47D58542E9A5D19442054BDFC92FD85_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:46>
|
|
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_0;
|
|
L_0 = TouchSimulation_get_instance_m34792E651AC9A88122F92EF633537A69B570739C_inline(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:49>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2 = (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)il2cpp_codegen_object_new(GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
GameObject__ctor_m7D0340DE160786E6EFA8DABD39EC3B694DA30AAD(L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:50>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3 = L_2;
|
|
NullCheck(L_3);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_3, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:51>
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4 = L_3;
|
|
NullCheck(L_4);
|
|
Object_set_hideFlags_mACB8BFC903FB3B01BBD427753E791BF28B5E33D4(L_4, ((int32_t)61), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:52>
|
|
NullCheck(L_4);
|
|
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_5;
|
|
L_5 = GameObject_AddComponent_TisTouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_m3332B854D47D58542E9A5D19442054BDFC92FD85(L_4, GameObject_AddComponent_TisTouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_m3332B854D47D58542E9A5D19442054BDFC92FD85_RuntimeMethod_var);
|
|
((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance), (void*)L_5);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:53>
|
|
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_6;
|
|
L_6 = TouchSimulation_get_instance_m34792E651AC9A88122F92EF633537A69B570739C_inline(NULL);
|
|
NullCheck(L_6);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_7;
|
|
L_7 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_6, NULL);
|
|
NullCheck(L_7);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_7, (bool)1, NULL);
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:55>
|
|
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_8;
|
|
L_8 = TouchSimulation_get_instance_m34792E651AC9A88122F92EF633537A69B570739C_inline(NULL);
|
|
NullCheck(L_8);
|
|
Behaviour_set_enabled_mF1DCFE60EB09E0529FE9476CA804A3AA2D72B16A(L_8, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:56>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25307
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_Disable_m321E8840F88BE92343D64A728694FFA942EEC69E (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:60>
|
|
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_0;
|
|
L_0 = TouchSimulation_get_instance_m34792E651AC9A88122F92EF633537A69B570739C_inline(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:61>
|
|
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_2;
|
|
L_2 = TouchSimulation_get_instance_m34792E651AC9A88122F92EF633537A69B570739C_inline(NULL);
|
|
NullCheck(L_2);
|
|
Behaviour_set_enabled_mF1DCFE60EB09E0529FE9476CA804A3AA2D72B16A(L_2, (bool)0, NULL);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:62>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25308
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_Destroy_mC3AABFD5B70AE4DF4F47BEDEFEFE5D5DC6AA837F (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:66>
|
|
TouchSimulation_Disable_m321E8840F88BE92343D64A728694FFA942EEC69E(NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:68>
|
|
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_0 = ((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:70>
|
|
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_2 = ((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance;
|
|
NullCheck(L_2);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3;
|
|
L_3 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
Object_Destroy_mE97D0A766419A81296E8D4E5C23D01D3FE91ACBB(L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:71>
|
|
((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance = (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance), (void*)(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0*)NULL);
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:73>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25309
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_AddPointer_mAF311DF959277CE67860C36E4650A3EE734194C1 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___0_pointer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_AppendWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m4A3CE75746FB1AFC8283C6E8B76E923666A07961_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_Append_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m28BB0D48547AE7FA146E50EEFC61673CA9694DBD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_Append_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_mA5858F11A337989656D8E979F1262C06642475A4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_ContainsReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_mF487A3E7CDC1C0B29B2BB3178D9CB4398D6A37D7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:77>
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_0 = ___0_pointer;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:78>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0D74755D51876350D4B4382E014E2E93AD3D3B73)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TouchSimulation_AddPointer_mAF311DF959277CE67860C36E4650A3EE734194C1_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:81>
|
|
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* L_2 = __this->___m_Pointers;
|
|
int32_t L_3 = __this->___m_NumPointers;
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_4 = ___0_pointer;
|
|
bool L_5;
|
|
L_5 = ArrayHelpers_ContainsReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_mF487A3E7CDC1C0B29B2BB3178D9CB4398D6A37D7(L_2, L_3, L_4, ArrayHelpers_ContainsReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_mF487A3E7CDC1C0B29B2BB3178D9CB4398D6A37D7_RuntimeMethod_var);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:82>
|
|
return;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:85>
|
|
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5** L_6 = (PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5**)(&__this->___m_Pointers);
|
|
int32_t* L_7 = (int32_t*)(&__this->___m_NumPointers);
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_8 = ___0_pointer;
|
|
int32_t L_9;
|
|
L_9 = ArrayHelpers_AppendWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m4A3CE75746FB1AFC8283C6E8B76E923666A07961(L_6, L_7, L_8, ((int32_t)10), ArrayHelpers_AppendWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m4A3CE75746FB1AFC8283C6E8B76E923666A07961_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:86>
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA** L_10 = (Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA**)(&__this->___m_CurrentPositions);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11 = V_0;
|
|
int32_t L_12;
|
|
L_12 = ArrayHelpers_Append_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_mA5858F11A337989656D8E979F1262C06642475A4(L_10, L_11, ArrayHelpers_Append_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_mA5858F11A337989656D8E979F1262C06642475A4_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:87>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** L_13 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C**)(&__this->___m_CurrentDisplayIndices);
|
|
int32_t L_14;
|
|
L_14 = ArrayHelpers_Append_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m28BB0D48547AE7FA146E50EEFC61673CA9694DBD(L_13, 0, ArrayHelpers_Append_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m28BB0D48547AE7FA146E50EEFC61673CA9694DBD_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:89>
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_15 = ___0_pointer;
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_DisableDevice_m19E310307F986FDBCC83048107E4BDC25F9FD26B(L_15, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:90>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25310
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_RemovePointer_m787BDB97748ADD4B28C3AFB85304B6A938889B42 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* ___0_pointer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_EraseAtWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m0C0B81FF19D0A1AB73D89611640C2DA671D3389E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_EraseAt_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6B80DBFF93497B94276E989C8357A7A72C454144_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_EraseAt_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_mB1BC8BA75E0736148AAEC3C83444128EE5BA0049_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_mAF4E5E77C2382FF511F4C4F6C5A3ABFB6182785C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* V_2 = NULL;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:94>
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_0 = ___0_pointer;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:95>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0D74755D51876350D4B4382E014E2E93AD3D3B73)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TouchSimulation_RemovePointer_m787BDB97748ADD4B28C3AFB85304B6A938889B42_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:98>
|
|
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* L_2 = __this->___m_Pointers;
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_3 = ___0_pointer;
|
|
int32_t L_4 = __this->___m_NumPointers;
|
|
int32_t L_5;
|
|
L_5 = ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_mAF4E5E77C2382FF511F4C4F6C5A3ABFB6182785C(L_2, L_3, L_4, ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_mAF4E5E77C2382FF511F4C4F6C5A3ABFB6182785C_RuntimeMethod_var);
|
|
V_0 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:99>
|
|
int32_t L_6 = V_0;
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:100>
|
|
return;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:103>
|
|
V_1 = 0;
|
|
goto IL_0055;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:105>
|
|
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_7 = __this->___m_Touches;
|
|
int32_t L_8 = V_1;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
V_2 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:106>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_11 = V_2;
|
|
if (!L_11)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_12 = V_2;
|
|
NullCheck(L_12);
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_13;
|
|
L_13 = InputControl_get_device_mAB3E013F566CF3407B8C36BC781EBD751DFAB324_inline(L_12, NULL);
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_14 = ___0_pointer;
|
|
if ((!(((RuntimeObject*)(InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)L_13) == ((RuntimeObject*)(Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*)L_14))))
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:109>
|
|
int32_t L_15 = V_1;
|
|
int32_t L_16 = V_0;
|
|
il2cpp_codegen_initobj((&V_3), sizeof(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0));
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_17 = V_3;
|
|
TouchSimulation_UpdateTouch_mFC046EBC56223C3DAED35D7BB52C39C1B11450CE(__this, L_15, L_16, 4, L_17, NULL);
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:103>
|
|
int32_t L_18 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_18, 1));
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:103>
|
|
int32_t L_19 = V_1;
|
|
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_20 = __this->___m_Touches;
|
|
NullCheck(L_20);
|
|
if ((((int32_t)L_19) < ((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length)))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:113>
|
|
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* L_21 = __this->___m_Pointers;
|
|
int32_t* L_22 = (int32_t*)(&__this->___m_NumPointers);
|
|
int32_t L_23 = V_0;
|
|
ArrayHelpers_EraseAtWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m0C0B81FF19D0A1AB73D89611640C2DA671D3389E(L_21, L_22, L_23, ArrayHelpers_EraseAtWithCapacity_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m0C0B81FF19D0A1AB73D89611640C2DA671D3389E_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:114>
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA** L_24 = (Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA**)(&__this->___m_CurrentPositions);
|
|
int32_t L_25 = V_0;
|
|
ArrayHelpers_EraseAt_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_mB1BC8BA75E0736148AAEC3C83444128EE5BA0049(L_24, L_25, ArrayHelpers_EraseAt_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_mB1BC8BA75E0736148AAEC3C83444128EE5BA0049_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:115>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** L_26 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C**)(&__this->___m_CurrentDisplayIndices);
|
|
int32_t L_27 = V_0;
|
|
ArrayHelpers_EraseAt_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6B80DBFF93497B94276E989C8357A7A72C454144(L_26, L_27, ArrayHelpers_EraseAt_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6B80DBFF93497B94276E989C8357A7A72C454144_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:118>
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_28 = ___0_pointer;
|
|
NullCheck(L_28);
|
|
bool L_29;
|
|
L_29 = InputDevice_get_added_m27CF78B0777E142AAF9139ABFD88F67BBAABA15C(L_28, NULL);
|
|
if (!L_29)
|
|
{
|
|
goto IL_0098;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:119>
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_30 = ___0_pointer;
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_EnableDevice_mED1442951B67B1B8742C29CE7F3ED2828B3B44F7(L_30, NULL);
|
|
}
|
|
|
|
IL_0098:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:120>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25311
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_OnEvent_m1D309DAE95183E20C72075AE2B502EC6C0066414 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_eventPtr, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___1_device, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_mB09BF2856995673BC9969B5E877CC8A9B8BCD443_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_mCF9137BEBBCF508C0D1E21C926C31E9A44FABA97_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisInputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B_m7255E2EDA1E06E6C8F99AF1564A17FCA40A970BB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControl_1_ReadValueFromState_m1748B48FE53C7B329B8138F43857E231AC6FC24E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControl_1_ReadValueFromState_m8653D1564BFE81C2D6C0AB381F9CD84492F350F7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControl_1_ReadValueFromState_m90076063D4500290705DBD1D85DA8743D4652C37_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* V_2 = NULL;
|
|
void* V_3 = NULL;
|
|
IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB* V_4 = NULL;
|
|
void* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* V_7 = NULL;
|
|
void* V_8 = NULL;
|
|
InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
InputEventControlCollection_t63B58F806FC82F1D8E18E88557E8FCC26388F3BE V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* V_11 = NULL;
|
|
void* V_12 = NULL;
|
|
float V_13 = 0.0f;
|
|
int32_t V_14 = 0;
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* G_B9_0 = NULL;
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* G_B8_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:124>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = ___1_device;
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_1;
|
|
L_1 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
|
|
if ((!(((RuntimeObject*)(InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)L_0) == ((RuntimeObject*)(Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)L_1))))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:127>
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:130>
|
|
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* L_2 = __this->___m_Pointers;
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_3 = ___1_device;
|
|
int32_t L_4 = __this->___m_NumPointers;
|
|
int32_t L_5;
|
|
L_5 = ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisInputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B_m7255E2EDA1E06E6C8F99AF1564A17FCA40A970BB(L_2, L_3, L_4, ArrayHelpers_IndexOfReference_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_TisInputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B_m7255E2EDA1E06E6C8F99AF1564A17FCA40A970BB_RuntimeMethod_var);
|
|
V_0 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:131>
|
|
int32_t L_6 = V_0;
|
|
if ((((int32_t)L_6) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:132>
|
|
return;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:134>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_7;
|
|
L_7 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69((&___0_eventPtr), NULL);
|
|
V_1 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:135>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_8 = V_1;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_9;
|
|
L_9 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1398030676), NULL);
|
|
bool L_10;
|
|
L_10 = FourCC_op_Inequality_m8E764B9EF56D488E40480A3E69230EF623C7B92B_inline(L_8, L_9, NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_11 = V_1;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_12;
|
|
L_12 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1145852993), NULL);
|
|
bool L_13;
|
|
L_13 = FourCC_op_Inequality_m8E764B9EF56D488E40480A3E69230EF623C7B92B_inline(L_11, L_12, NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:136>
|
|
return;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:140>
|
|
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* L_14 = __this->___m_Pointers;
|
|
int32_t L_15 = V_0;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:143>
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_18 = L_17;
|
|
NullCheck(L_18);
|
|
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* L_19;
|
|
L_19 = Pointer_get_position_m4286004169788483EEDA6AF833CEFDB04FEDF3D8_inline(L_18, NULL);
|
|
V_2 = L_19;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:144>
|
|
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* L_20 = V_2;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_21 = ___0_eventPtr;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_22 = V_1;
|
|
void* L_23;
|
|
L_23 = InputControlExtensions_GetStatePtrFromStateEventUnchecked_m8076A50F95247F90A0C8C06EF4D74C8F0F73AAA6(L_20, L_21, L_22, NULL);
|
|
V_3 = L_23;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:145>
|
|
void* L_24 = V_3;
|
|
if ((((intptr_t)L_24) == ((intptr_t)((uintptr_t)0))))
|
|
{
|
|
G_B9_0 = L_18;
|
|
goto IL_007f;
|
|
}
|
|
G_B8_0 = L_18;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:146>
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* L_25 = __this->___m_CurrentPositions;
|
|
int32_t L_26 = V_0;
|
|
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* L_27 = V_2;
|
|
void* L_28 = V_3;
|
|
NullCheck(L_27);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_29;
|
|
L_29 = InputControl_1_ReadValueFromState_m90076063D4500290705DBD1D85DA8743D4652C37(L_27, L_28, InputControl_1_ReadValueFromState_m90076063D4500290705DBD1D85DA8743D4652C37_RuntimeMethod_var);
|
|
NullCheck(L_25);
|
|
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(L_26), (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7)L_29);
|
|
G_B9_0 = G_B8_0;
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:149>
|
|
NullCheck(G_B9_0);
|
|
IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB* L_30;
|
|
L_30 = Pointer_get_displayIndex_mD4258A9C397671E55D04352B04A2E7AB56C11AB5_inline(G_B9_0, NULL);
|
|
V_4 = L_30;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:150>
|
|
IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB* L_31 = V_4;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_32 = ___0_eventPtr;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_33 = V_1;
|
|
void* L_34;
|
|
L_34 = InputControlExtensions_GetStatePtrFromStateEventUnchecked_m8076A50F95247F90A0C8C06EF4D74C8F0F73AAA6(L_31, L_32, L_33, NULL);
|
|
V_5 = L_34;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:151>
|
|
void* L_35 = V_5;
|
|
if ((((intptr_t)L_35) == ((intptr_t)((uintptr_t)0))))
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:152>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_36 = __this->___m_CurrentDisplayIndices;
|
|
int32_t L_37 = V_0;
|
|
IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB* L_38 = V_4;
|
|
void* L_39 = V_5;
|
|
NullCheck(L_38);
|
|
int32_t L_40;
|
|
L_40 = InputControl_1_ReadValueFromState_m8653D1564BFE81C2D6C0AB381F9CD84492F350F7(L_38, L_39, InputControl_1_ReadValueFromState_m8653D1564BFE81C2D6C0AB381F9CD84492F350F7_RuntimeMethod_var);
|
|
NullCheck(L_36);
|
|
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_37), (int32_t)L_40);
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:156>
|
|
V_6 = 0;
|
|
goto IL_0110;
|
|
}
|
|
|
|
IL_00ad:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:158>
|
|
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_41 = __this->___m_Touches;
|
|
int32_t L_42 = V_6;
|
|
NullCheck(L_41);
|
|
int32_t L_43 = L_42;
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_44 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
|
|
V_7 = L_44;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:159>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_45 = V_7;
|
|
if (!L_45)
|
|
{
|
|
goto IL_010a;
|
|
}
|
|
}
|
|
{
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_46 = V_7;
|
|
NullCheck(L_46);
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_47;
|
|
L_47 = InputControl_get_device_mAB3E013F566CF3407B8C36BC781EBD751DFAB324_inline(L_46, NULL);
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_48 = ___1_device;
|
|
if ((!(((RuntimeObject*)(InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)L_47) == ((RuntimeObject*)(InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)L_48))))
|
|
{
|
|
goto IL_010a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:162>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_49 = V_7;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_50 = ___0_eventPtr;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_51 = V_1;
|
|
void* L_52;
|
|
L_52 = InputControlExtensions_GetStatePtrFromStateEventUnchecked_m8076A50F95247F90A0C8C06EF4D74C8F0F73AAA6(L_49, L_50, L_51, NULL);
|
|
V_8 = L_52;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:163>
|
|
void* L_53 = V_8;
|
|
if ((!(((uintptr_t)L_53) == ((uintptr_t)((uintptr_t)0)))))
|
|
{
|
|
goto IL_00e9;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:168>
|
|
void* L_54 = V_3;
|
|
if ((((intptr_t)L_54) == ((intptr_t)((uintptr_t)0))))
|
|
{
|
|
goto IL_010a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:169>
|
|
int32_t L_55 = V_6;
|
|
int32_t L_56 = V_0;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_57 = ___0_eventPtr;
|
|
TouchSimulation_UpdateTouch_mFC046EBC56223C3DAED35D7BB52C39C1B11450CE(__this, L_55, L_56, 2, L_57, NULL);
|
|
goto IL_010a;
|
|
}
|
|
|
|
IL_00e9:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:171>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_58 = V_7;
|
|
void* L_59 = V_8;
|
|
NullCheck(L_58);
|
|
float L_60;
|
|
L_60 = InputControl_1_ReadValueFromState_m1748B48FE53C7B329B8138F43857E231AC6FC24E(L_58, L_59, InputControl_1_ReadValueFromState_m1748B48FE53C7B329B8138F43857E231AC6FC24E_RuntimeMethod_var);
|
|
float L_61 = ((ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_StaticFields*)il2cpp_codegen_static_fields_for(ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_il2cpp_TypeInfo_var))->___s_GlobalDefaultButtonPressPoint;
|
|
float L_62 = ((ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_StaticFields*)il2cpp_codegen_static_fields_for(ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_il2cpp_TypeInfo_var))->___s_GlobalDefaultButtonReleaseThreshold;
|
|
if ((!(((float)L_60) < ((float)((float)il2cpp_codegen_multiply(L_61, L_62))))))
|
|
{
|
|
goto IL_010a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:172>
|
|
int32_t L_63 = V_6;
|
|
int32_t L_64 = V_0;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_65 = ___0_eventPtr;
|
|
TouchSimulation_UpdateTouch_mFC046EBC56223C3DAED35D7BB52C39C1B11450CE(__this, L_63, L_64, 3, L_65, NULL);
|
|
}
|
|
|
|
IL_010a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:156>
|
|
int32_t L_66 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_66, 1));
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:156>
|
|
int32_t L_67 = V_6;
|
|
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_68 = __this->___m_Touches;
|
|
NullCheck(L_68);
|
|
if ((((int32_t)L_67) < ((int32_t)((int32_t)(((RuntimeArray*)L_68)->max_length)))))
|
|
{
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:176>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_69 = ___0_eventPtr;
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_70 = ___1_device;
|
|
InputEventControlCollection_t63B58F806FC82F1D8E18E88557E8FCC26388F3BE L_71;
|
|
L_71 = InputControlExtensions_EnumerateControls_m9D7E9EAACBDCB1D105D829B9E9FFD2B3E8CF7BC0(L_69, 1, L_70, (0.0f), NULL);
|
|
V_10 = L_71;
|
|
InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB L_72;
|
|
L_72 = InputEventControlCollection_GetEnumerator_m04011F47500AE715F1268E93152514FBE4209869((&V_10), NULL);
|
|
V_9 = L_72;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_01d6:
|
|
{
|
|
InputEventControlEnumerator_Dispose_mE7168656062DFF53F7C09478087ADAA636EA2FAB((&V_9), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_01c8_1;
|
|
}
|
|
|
|
IL_0139_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:176>
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_73;
|
|
L_73 = InputEventControlEnumerator_get_Current_mD0540A0B5BE8EC847B80D28B66BA8389A1AF17BB_inline((&V_9), NULL);
|
|
V_11 = L_73;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:178>
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_74 = V_11;
|
|
NullCheck(L_74);
|
|
bool L_75;
|
|
L_75 = InputControl_get_isButton_m4634F4F40450AA969DA851B73E2A2226239F3BEF(L_74, NULL);
|
|
if (!L_75)
|
|
{
|
|
goto IL_01c8_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:182>
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_76 = V_11;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_77 = ___0_eventPtr;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_78 = V_1;
|
|
void* L_79;
|
|
L_79 = InputControlExtensions_GetStatePtrFromStateEventUnchecked_m8076A50F95247F90A0C8C06EF4D74C8F0F73AAA6(L_76, L_77, L_78, NULL);
|
|
V_12 = L_79;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:184>
|
|
V_13 = (0.0f);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:185>
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_80 = V_11;
|
|
void* L_81 = V_12;
|
|
void* L_82;
|
|
L_82 = il2cpp_codegen_unsafe_cast((&V_13));
|
|
NullCheck(L_80);
|
|
VirtualActionInvoker3< void*, void*, int32_t >::Invoke(9, L_80, L_81, L_82, 4);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:186>
|
|
float L_83 = V_13;
|
|
float L_84 = ((ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_StaticFields*)il2cpp_codegen_static_fields_for(ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_il2cpp_TypeInfo_var))->___s_GlobalDefaultButtonPressPoint;
|
|
if ((((float)L_83) <= ((float)L_84)))
|
|
{
|
|
goto IL_01c8_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:190>
|
|
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_85 = __this->___m_Touches;
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_86 = V_11;
|
|
int32_t L_87;
|
|
L_87 = ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_mCF9137BEBBCF508C0D1E21C926C31E9A44FABA97(L_85, L_86, (-1), ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisInputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E_mCF9137BEBBCF508C0D1E21C926C31E9A44FABA97_RuntimeMethod_var);
|
|
V_14 = L_87;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:191>
|
|
int32_t L_88 = V_14;
|
|
if ((((int32_t)L_88) >= ((int32_t)0)))
|
|
{
|
|
goto IL_01bd_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:194>
|
|
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_89 = __this->___m_Touches;
|
|
int32_t L_90;
|
|
L_90 = ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_mB09BF2856995673BC9969B5E877CC8A9B8BCD443(L_89, (ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF*)NULL, (-1), ArrayHelpers_IndexOfReference_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_mB09BF2856995673BC9969B5E877CC8A9B8BCD443_RuntimeMethod_var);
|
|
V_14 = L_90;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:195>
|
|
int32_t L_91 = V_14;
|
|
if ((((int32_t)L_91) < ((int32_t)0)))
|
|
{
|
|
goto IL_01c8_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:197>
|
|
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_92 = __this->___m_Touches;
|
|
int32_t L_93 = V_14;
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_94 = V_11;
|
|
NullCheck(L_92);
|
|
ArrayElementTypeCheck (L_92, ((ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF*)CastclassClass((RuntimeObject*)L_94, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_il2cpp_TypeInfo_var)));
|
|
(L_92)->SetAt(static_cast<il2cpp_array_size_t>(L_93), (ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF*)((ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF*)CastclassClass((RuntimeObject*)L_94, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_il2cpp_TypeInfo_var)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:198>
|
|
int32_t L_95 = V_14;
|
|
int32_t L_96 = V_0;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_97 = ___0_eventPtr;
|
|
TouchSimulation_UpdateTouch_mFC046EBC56223C3DAED35D7BB52C39C1B11450CE(__this, L_95, L_96, 1, L_97, NULL);
|
|
goto IL_01c8_1;
|
|
}
|
|
|
|
IL_01bd_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:204>
|
|
int32_t L_98 = V_14;
|
|
int32_t L_99 = V_0;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_100 = ___0_eventPtr;
|
|
TouchSimulation_UpdateTouch_mFC046EBC56223C3DAED35D7BB52C39C1B11450CE(__this, L_98, L_99, 2, L_100, NULL);
|
|
}
|
|
|
|
IL_01c8_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:176>
|
|
bool L_101;
|
|
L_101 = InputEventControlEnumerator_MoveNext_m0A9182DFD78818A01CC3B038519B8B9ACCC55107((&V_9), NULL);
|
|
if (L_101)
|
|
{
|
|
goto IL_0139_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01e4;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_01e4:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:208>
|
|
InputEventPtr_set_handled_m855A75D4B98470B0A814FB8627608595FC9E9EF0((&___0_eventPtr), (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:209>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25312
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_OnDeviceChange_mBBFFE124D77C484CF2AFC391E9A53C408F4689B7 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, int32_t ___1_change, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* V_0 = NULL;
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:214>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = ___0_device;
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_1;
|
|
L_1 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
|
|
if ((!(((RuntimeObject*)(InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)L_0) == ((RuntimeObject*)(Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)L_1))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___1_change;
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:216>
|
|
TouchSimulation_Disable_m321E8840F88BE92343D64A728694FFA942EEC69E(NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:217>
|
|
return;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_3 = ___1_change;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4 = ___1_change;
|
|
if ((((int32_t)L_4) == ((int32_t)1)))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:224>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_5 = ___0_device;
|
|
V_0 = ((Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*)IsInstClass((RuntimeObject*)L_5, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_il2cpp_TypeInfo_var));
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_6 = V_0;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:226>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_7 = ___0_device;
|
|
if (!((Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)IsInstClass((RuntimeObject*)L_7, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:227>
|
|
return;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:229>
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_8 = V_0;
|
|
TouchSimulation_AddPointer_mAF311DF959277CE67860C36E4650A3EE734194C1(__this, L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:231>
|
|
return;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:236>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_9 = ___0_device;
|
|
V_1 = ((Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A*)IsInstClass((RuntimeObject*)L_9, Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_il2cpp_TypeInfo_var));
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_10 = V_1;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:237>
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_11 = V_1;
|
|
TouchSimulation_RemovePointer_m787BDB97748ADD4B28C3AFB85304B6A938889B42(__this, L_11, NULL);
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:241>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25313
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_OnEnable_m37DCAA82A4054B9D9A6E7C861F17907CB50F2F9F (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_AddDevice_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_mD79344B098B9A9FB343FF886B1570591ABE366F5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchSimulation_OnDeviceChange_mBBFFE124D77C484CF2AFC391E9A53C408F4689B7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchSimulation_OnEvent_m1D309DAE95183E20C72075AE2B502EC6C0066414_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A5AC4668ADDA05D44CC58641856CAE1ADB66D24);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* V_3 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:245>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0;
|
|
L_0 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:247>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_1;
|
|
L_1 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = InputDevice_get_added_m27CF78B0777E142AAF9139ABFD88F67BBAABA15C(L_1, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:248>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_3;
|
|
L_3 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_AddDevice_m376584E1F76AFF2176913A885355E4F317E7323A(L_3, NULL);
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:252>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_4;
|
|
L_4 = InputSystem_GetDevice_m88ED9934452B1049D926A08063E287DB0E60AFF1(_stringLiteral2A5AC4668ADDA05D44CC58641856CAE1ADB66D24, NULL);
|
|
TouchSimulation_set_simulatedTouchscreen_m59218EBAFC13C1FF0019F59F12378749620C9EEF_inline(__this, ((Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE*)IsInstClass((RuntimeObject*)L_4, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_il2cpp_TypeInfo_var)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:253>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_5;
|
|
L_5 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:254>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_6;
|
|
L_6 = InputSystem_AddDevice_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_mD79344B098B9A9FB343FF886B1570591ABE366F5(_stringLiteral2A5AC4668ADDA05D44CC58641856CAE1ADB66D24, InputSystem_AddDevice_TisTouchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE_mD79344B098B9A9FB343FF886B1570591ABE366F5_RuntimeMethod_var);
|
|
TouchSimulation_set_simulatedTouchscreen_m59218EBAFC13C1FF0019F59F12378749620C9EEF_inline(__this, L_6, NULL);
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:257>
|
|
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_7 = __this->___m_Touches;
|
|
if (L_7)
|
|
{
|
|
goto IL_0075;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:258>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_8;
|
|
L_8 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
|
|
NullCheck(L_8);
|
|
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_9;
|
|
L_9 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_8, NULL);
|
|
V_0 = L_9;
|
|
int32_t L_10;
|
|
L_10 = ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_inline((&V_0), ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_RuntimeMethod_var);
|
|
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_11 = (ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7*)(ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7*)SZArrayNew(ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7_il2cpp_TypeInfo_var, (uint32_t)L_10);
|
|
__this->___m_Touches = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Touches), (void*)L_11);
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:260>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12 = __this->___m_TouchIds;
|
|
if (L_12)
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:261>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_13;
|
|
L_13 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
|
|
NullCheck(L_13);
|
|
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_14;
|
|
L_14 = Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline(L_13, NULL);
|
|
V_0 = L_14;
|
|
int32_t L_15;
|
|
L_15 = ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_inline((&V_0), ReadOnlyArray_1_get_Count_m322B2C406CB93A8BB27DDBA287593AE863B8AA03_RuntimeMethod_var);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_16 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)L_15);
|
|
__this->___m_TouchIds = L_16;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TouchIds), (void*)L_16);
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:263>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
ReadOnlyArray_1_t21E90B3F1DF1E9A2088EA0523F03C47910735BCA L_17;
|
|
L_17 = InputSystem_get_devices_mBE599285E43211ACE15248654A3E3D7DB42C85CA(NULL);
|
|
V_2 = L_17;
|
|
Enumerator_t81E72BA990D25C50893E883131DA5DF2157A185B L_18;
|
|
L_18 = ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C((&V_2), ReadOnlyArray_1_GetEnumerator_m40DC2BB2BC3C855369753E8780E2B2DE6F38E88C_RuntimeMethod_var);
|
|
V_1 = L_18;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00c6:
|
|
{
|
|
Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB((&V_1), Enumerator_Dispose_mF7167BCE82C30E7D09082FFCA3F3EFFD32B186CB_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_00bb_1;
|
|
}
|
|
|
|
IL_00ab_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:263>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_19;
|
|
L_19 = Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945((&V_1), Enumerator_get_Current_mFB31F2643918A411B2F1539CA180A763D0200945_RuntimeMethod_var);
|
|
V_3 = L_19;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:264>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_20 = V_3;
|
|
TouchSimulation_OnDeviceChange_mBBFFE124D77C484CF2AFC391E9A53C408F4689B7(__this, L_20, 0, NULL);
|
|
}
|
|
|
|
IL_00bb_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:263>
|
|
bool L_21;
|
|
L_21 = Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC((&V_1), Enumerator_MoveNext_mFAC408E08BBD06FE731A9E84F5E79461F23EACBC_RuntimeMethod_var);
|
|
if (L_21)
|
|
{
|
|
goto IL_00ab_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00d4;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00d4:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:266>
|
|
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* L_22 = __this->___m_OnDeviceChange;
|
|
if (L_22)
|
|
{
|
|
goto IL_00ee;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:267>
|
|
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* L_23 = (Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333*)il2cpp_codegen_object_new(Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333_il2cpp_TypeInfo_var);
|
|
Action_2__ctor_m23A4911D82F290811EDC6BFC315C339857526804(L_23, __this, (intptr_t)((void*)TouchSimulation_OnDeviceChange_mBBFFE124D77C484CF2AFC391E9A53C408F4689B7_RuntimeMethod_var), NULL);
|
|
__this->___m_OnDeviceChange = L_23;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OnDeviceChange), (void*)L_23);
|
|
}
|
|
|
|
IL_00ee:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:268>
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_24 = __this->___m_OnEvent;
|
|
if (L_24)
|
|
{
|
|
goto IL_0108;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:269>
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_25 = (Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA*)il2cpp_codegen_object_new(Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
|
|
Action_2__ctor_m43B5BA62418FAB32773B12CEFF46A46855BF5B10(L_25, __this, (intptr_t)((void*)TouchSimulation_OnEvent_m1D309DAE95183E20C72075AE2B502EC6C0066414_RuntimeMethod_var), NULL);
|
|
__this->___m_OnEvent = L_25;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OnEvent), (void*)L_25);
|
|
}
|
|
|
|
IL_0108:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:271>
|
|
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* L_26 = __this->___m_OnDeviceChange;
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_add_onDeviceChange_mC1BAF8DE08B2B3F6D0A98D80AE1E4FF5531C60FA(L_26, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:272>
|
|
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_27;
|
|
L_27 = InputSystem_get_onEvent_mADCC1DBC03BC468ABF3AF7FB9BF2A0D9E1740510(NULL);
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_28 = __this->___m_OnEvent;
|
|
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_29;
|
|
L_29 = InputEventListener_op_Addition_mE4193B2988A4BA5E50D618112E188CEFAB5B6AFC(L_27, L_28, NULL);
|
|
InputSystem_set_onEvent_m8FD1599425D2F0408F6001E4D1663D53105D7F21(L_29, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:273>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25314
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_OnDisable_mE30E1DE15C94403CBA3FA54BD7E18C89C5CEF584 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_Clear_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_mBDC379B2F0C95AC42366BF126E7830F8AADBE0EC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_Clear_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m161A17E48623F7125BC715564D82E7095F4400F1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:277>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0;
|
|
L_0 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_1;
|
|
L_1 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = InputDevice_get_added_m27CF78B0777E142AAF9139ABFD88F67BBAABA15C(L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:278>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_3;
|
|
L_3 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_RemoveDevice_mBA895DEE9FCFC53AC9040DE72860D95ABFB5E858(L_3, NULL);
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:281>
|
|
V_0 = 0;
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:282>
|
|
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* L_4 = __this->___m_Pointers;
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_EnableDevice_mED1442951B67B1B8742C29CE7F3ED2828B3B44F7(L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:281>
|
|
int32_t L_8 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:281>
|
|
int32_t L_9 = V_0;
|
|
int32_t L_10 = __this->___m_NumPointers;
|
|
if ((((int32_t)L_9) < ((int32_t)L_10)))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:284>
|
|
PointerU5BU5D_t6F6E984891F08931C028795EC4B34CEE20568FE5* L_11 = __this->___m_Pointers;
|
|
int32_t L_12 = __this->___m_NumPointers;
|
|
ArrayHelpers_Clear_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m161A17E48623F7125BC715564D82E7095F4400F1(L_11, L_12, ArrayHelpers_Clear_TisPointer_t800EF2832B62E889AC9C182E3B18098AF220E32A_m161A17E48623F7125BC715564D82E7095F4400F1_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:285>
|
|
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_13 = __this->___m_Touches;
|
|
ArrayHelpers_Clear_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_mBDC379B2F0C95AC42366BF126E7830F8AADBE0EC(L_13, ArrayHelpers_Clear_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_mBDC379B2F0C95AC42366BF126E7830F8AADBE0EC_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:287>
|
|
__this->___m_NumPointers = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:288>
|
|
__this->___m_LastTouchId = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:290>
|
|
Action_2_tB79528C85CFEF7DFF52C575DDAA398D2FE6BC333* L_14 = __this->___m_OnDeviceChange;
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_remove_onDeviceChange_mD08F75C263C2D687B2E6E68E86105829075BF717(L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:291>
|
|
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_15;
|
|
L_15 = InputSystem_get_onEvent_mADCC1DBC03BC468ABF3AF7FB9BF2A0D9E1740510(NULL);
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_16 = __this->___m_OnEvent;
|
|
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_17;
|
|
L_17 = InputEventListener_op_Subtraction_m1F22563B9F83525FF3046236D787006F931913FA(L_15, L_16, NULL);
|
|
InputSystem_set_onEvent_m8FD1599425D2F0408F6001E4D1663D53105D7F21(L_17, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:292>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25315
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_UpdateTouch_mFC046EBC56223C3DAED35D7BB52C39C1B11450CE (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, int32_t ___0_touchIndex, int32_t ___1_pointerIndex, int32_t ___2_phase, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___3_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_QueueStateEvent_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_m75F650C67ACBF9096BDC8A3C1EC71482303F92EF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
uint8_t V_1 = 0x0;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
int32_t V_4 = 0;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* G_B3_0 = NULL;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* G_B2_0 = NULL;
|
|
double G_B4_0 = 0.0;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* G_B4_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:296>
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* L_0 = __this->___m_CurrentPositions;
|
|
int32_t L_1 = ___1_pointerIndex;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:298>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = __this->___m_CurrentDisplayIndices;
|
|
int32_t L_5 = ___1_pointerIndex;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
int32_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
V_1 = (uint8_t)((int32_t)(uint8_t)L_7);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:303>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:304>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:305>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:306>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:307>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:308>
|
|
il2cpp_codegen_initobj((&V_3), sizeof(TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97));
|
|
int32_t L_8 = ___2_phase;
|
|
TouchState_set_phase_mCC48A355F50B41E745BDCE383BD083A69BD8644A((&V_3), L_8, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = V_0;
|
|
(&V_3)->___position = L_9;
|
|
uint8_t L_10 = V_1;
|
|
(&V_3)->___displayIndex = L_10;
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 L_11 = V_3;
|
|
V_2 = L_11;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:310>
|
|
int32_t L_12 = ___2_phase;
|
|
if ((!(((uint32_t)L_12) == ((uint32_t)1))))
|
|
{
|
|
goto IL_008e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:312>
|
|
bool L_13;
|
|
L_13 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012((&___3_eventPtr), NULL);
|
|
if (L_13)
|
|
{
|
|
G_B3_0 = (&V_2);
|
|
goto IL_004f;
|
|
}
|
|
G_B2_0 = (&V_2);
|
|
}
|
|
{
|
|
double L_14;
|
|
L_14 = InputState_get_currentTime_m9C0661AF1D774AF749A9B9207EEB6090D77AA364(NULL);
|
|
G_B4_0 = L_14;
|
|
G_B4_1 = G_B2_0;
|
|
goto IL_0056;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
double L_15;
|
|
L_15 = InputEventPtr_get_time_mD2C90C66C334E767E2F9B5B9A3711B500027B185((&___3_eventPtr), NULL);
|
|
G_B4_0 = L_15;
|
|
G_B4_1 = G_B3_0;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
G_B4_1->___startTime = G_B4_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:313>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_16 = V_0;
|
|
(&V_2)->___startPosition = L_16;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:314>
|
|
int32_t L_17 = __this->___m_LastTouchId;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
int32_t L_18 = V_4;
|
|
__this->___m_LastTouchId = L_18;
|
|
int32_t L_19 = V_4;
|
|
(&V_2)->___touchId = L_19;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:315>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_20 = __this->___m_TouchIds;
|
|
int32_t L_21 = ___0_touchIndex;
|
|
int32_t L_22 = __this->___m_LastTouchId;
|
|
NullCheck(L_20);
|
|
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (int32_t)L_22);
|
|
goto IL_009d;
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:319>
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_23 = __this->___m_TouchIds;
|
|
int32_t L_24 = ___0_touchIndex;
|
|
NullCheck(L_23);
|
|
int32_t L_25 = L_24;
|
|
int32_t L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
|
|
(&V_2)->___touchId = L_26;
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:323>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_27;
|
|
L_27 = TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline(__this, NULL);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97 L_28 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_QueueStateEvent_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_m75F650C67ACBF9096BDC8A3C1EC71482303F92EF(L_27, L_28, (-1.0), InputSystem_QueueStateEvent_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_m75F650C67ACBF9096BDC8A3C1EC71482303F92EF_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:325>
|
|
int32_t L_29 = ___2_phase;
|
|
bool L_30;
|
|
L_30 = InputExtensions_IsEndedOrCanceled_m00A006256F424472010DDC115CBAEFC4F9A024CA(L_29, NULL);
|
|
if (!L_30)
|
|
{
|
|
goto IL_00c3;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:327>
|
|
ButtonControlU5BU5D_tB9DA99391F4FFB9835CF78F4F7A3DC7894AC83D7* L_31 = __this->___m_Touches;
|
|
int32_t L_32 = ___0_touchIndex;
|
|
NullCheck(L_31);
|
|
ArrayElementTypeCheck (L_31, NULL);
|
|
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF*)NULL);
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:329>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25316
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_UnityEngine_InputSystem_LowLevel_IInputStateChangeMonitor_NotifyControlStateChanged_mF012C5A1AD1EA8C32B4FF1B011C31A5801451E0A (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___0_control, double ___1_time, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___2_eventPtr, int64_t ___3_monitorIndex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:386>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25317
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_UnityEngine_InputSystem_LowLevel_IInputStateChangeMonitor_NotifyTimerExpired_m292855FB683F1265F57B928E334CE7811224C017 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___0_control, double ___1_time, int64_t ___2_monitorIndex, int32_t ___3_timerIndex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:390>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25318
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_InstallStateChangeMonitors_m6A4D2E63CC69C7B0E3EDB4E352FAEB22EFA7B887 (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, int32_t ___0_startIndex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:398>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25319
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_OnSourceControlChangedValue_mCAF5DD63A8245A3FCFFAC17B9957E7ED0B9C207C (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___0_control, double ___1_time, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___2_eventPtr, int64_t ___3_sourceDeviceAndButtonIndex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:404>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25320
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation_UninstallStateChangeMonitors_m36421CFF36C6D25B2908E198DA84319399FA5E3E (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, int32_t ___0_startIndex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:409>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25321
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchSimulation__ctor_mD23258BB77D50A88698EFDB77C080768C959CF7C (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25322
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_touchpadButton_m33F34E0003CD6A0A142D5AABBD46F15274EBD717 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:26>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CtouchpadButtonU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25323
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_touchpadButton_m85056E5E5A92D34208235FB409393690A472601D (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:26>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CtouchpadButtonU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CtouchpadButtonU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25324
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_optionsButton_m81F0B73F0684D62940FB49FC46FB5349B8808FAC (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:34>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CoptionsButtonU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25325
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_optionsButton_m1FE2766F3657D92F605EB85A030FE7C89D0DD580 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:34>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CoptionsButtonU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CoptionsButtonU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25326
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_shareButton_m38595382611E0D4E69CBCB790A5262378939D3AF (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:42>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CshareButtonU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25327
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_shareButton_mE3EF1DF6E0E1B8EFF21AC7DD493CC0494AEC6155 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:42>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CshareButtonU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CshareButtonU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25328
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_L1_mC7CB0827550909C24137A0950C6383324574D754 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:49>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CL1U3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25329
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_L1_m53A630A39C6EA91CD8A806D739D51782A7062D8E (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:49>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CL1U3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CL1U3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25330
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_R1_mE43AAC862C5D6D64A02EFA93F35218FFCCAED34E (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:56>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CR1U3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25331
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_R1_m578DFA09EC86DB70693B666AC53AE39E97C6F22C (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:56>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CR1U3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CR1U3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25332
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_L2_m3523F1717A80493C97323BD6B171A21362D71EFB (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:63>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CL2U3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25333
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_L2_m944079645ACBBB274527C169EE5670D1ED142616 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:63>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CL2U3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CL2U3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25334
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_R2_m5675E03208D86D1F1A1883160E215F76A3BD88E1 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:70>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CR2U3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25335
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_R2_mCCFF64B80DC2E5DA8920AB9B9A9CEB61AB8C0079 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:70>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CR2U3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CR2U3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25336
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_L3_mE7EC33FF04222C97781FD25BD54662B1D456054D (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:77>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CL3U3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25337
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_L3_mD8C16E42401A03362170FB255D0F2E0A70F36531 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:77>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CL3U3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CL3U3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25338
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* DualShockGamepad_get_R3_m6D8CA00F1ED8FDF97131917AFD87AE1AC2705941 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:84>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CR3U3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25339
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_R3_mF4834C8E3EB76B2C7C91F874D6022770604A5CDC (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:84>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CR3U3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CR3U3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25340
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* DualShockGamepad_get_current_m14AB6A8C82AC70EDE7B1FF5E1FEAEC501F0CE325 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:90>
|
|
DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* L_0 = ((DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_StaticFields*)il2cpp_codegen_static_fields_for(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var))->___U3CcurrentU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25341
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_current_m93FA2FA12D03CECB36DB8B0305B863BC19FAA2B7 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:90>
|
|
DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* L_0 = ___0_value;
|
|
((DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_StaticFields*)il2cpp_codegen_static_fields_for(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var))->___U3CcurrentU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_StaticFields*)il2cpp_codegen_static_fields_for(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var))->___U3CcurrentU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25342
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 DualShockGamepad_get_hidDescriptor_mAC7CA8436E5D0B6AB8C7D8ABFB8272AE443CB963 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:95>
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_0 = __this->___U3ChidDescriptorU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25343
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_set_hidDescriptor_m1F5D94BCCA35B4EACABD048AA7E097E24EC6233B (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:95>
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_0 = ___0_value;
|
|
__this->___U3ChidDescriptorU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3ChidDescriptorU3Ek__BackingField))->___elements), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3ChidDescriptorU3Ek__BackingField))->___collections), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25344
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_MakeCurrent_m9AC673C62EC29FECCEE14566A4947A6A9E58F22A (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:100>
|
|
Gamepad_MakeCurrent_m78B45631A8F9D2189CDABC3E67C1E849166748BA(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:101>
|
|
DualShockGamepad_set_current_m93FA2FA12D03CECB36DB8B0305B863BC19FAA2B7_inline(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:102>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25345
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_OnRemoved_m87BD66DA0C5210BFAFF90671D8AB78FCA75DEF32 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:107>
|
|
Gamepad_OnRemoved_m3B43B26E9BA2751108CFAEAFD9581F2C674EF6AF(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:108>
|
|
DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* L_0;
|
|
L_0 = DualShockGamepad_get_current_m14AB6A8C82AC70EDE7B1FF5E1FEAEC501F0CE325_inline(NULL);
|
|
if ((!(((RuntimeObject*)(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B*)L_0) == ((RuntimeObject*)(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B*)__this))))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:109>
|
|
DualShockGamepad_set_current_m93FA2FA12D03CECB36DB8B0305B863BC19FAA2B7_inline((DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B*)NULL, NULL);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:110>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25346
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_FinishSetup_m4679E4AAE337082EC03207BEC0E43ADC1894E1B0 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControl_GetChildControl_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m37B3269440E54D5C867480E334993426D47F9044_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral05B5896E41F6CE375015DD206C28094820DE1498);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE4026E40BC769AEFB28610F5FE8D1C5507EA2B4);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:115>
|
|
Gamepad_FinishSetup_m8D639C19146BC2138F31DCEA1B03BC0B4390DAC7(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:117>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0;
|
|
L_0 = InputControl_GetChildControl_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m37B3269440E54D5C867480E334993426D47F9044(__this, _stringLiteral05B5896E41F6CE375015DD206C28094820DE1498, InputControl_GetChildControl_TisButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF_m37B3269440E54D5C867480E334993426D47F9044_RuntimeMethod_var);
|
|
DualShockGamepad_set_touchpadButton_m85056E5E5A92D34208235FB409393690A472601D_inline(__this, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:118>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_1;
|
|
L_1 = Gamepad_get_startButton_m29450F01D3AC6A6377DD6820C1E8A19E3FB257B1_inline(__this, NULL);
|
|
DualShockGamepad_set_optionsButton_m1FE2766F3657D92F605EB85A030FE7C89D0DD580_inline(__this, L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:119>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_2;
|
|
L_2 = Gamepad_get_selectButton_mE20183D2C1EBD7B7EF87EE29C24E56F1731E85BE_inline(__this, NULL);
|
|
DualShockGamepad_set_shareButton_mE3EF1DF6E0E1B8EFF21AC7DD493CC0494AEC6155_inline(__this, L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:121>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_3;
|
|
L_3 = Gamepad_get_leftShoulder_m2522E913D1A9361FE16FE01D717BF49D3B1632AE_inline(__this, NULL);
|
|
DualShockGamepad_set_L1_m53A630A39C6EA91CD8A806D739D51782A7062D8E_inline(__this, L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:122>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_4;
|
|
L_4 = Gamepad_get_rightShoulder_m221A61E28BDBABD1B1E51A0E325D9A55BB5E347A_inline(__this, NULL);
|
|
DualShockGamepad_set_R1_m578DFA09EC86DB70693B666AC53AE39E97C6F22C_inline(__this, L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:123>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_5;
|
|
L_5 = Gamepad_get_leftTrigger_mE19F2FCA9A7F195107FA0C14293732C0F3075A38_inline(__this, NULL);
|
|
DualShockGamepad_set_L2_m944079645ACBBB274527C169EE5670D1ED142616_inline(__this, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:124>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_6;
|
|
L_6 = Gamepad_get_rightTrigger_mD1587CDED475B78A56BE8B6FC493EDA08AE6F3A6_inline(__this, NULL);
|
|
DualShockGamepad_set_R2_mCCFF64B80DC2E5DA8920AB9B9A9CEB61AB8C0079_inline(__this, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:125>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_7;
|
|
L_7 = Gamepad_get_leftStickButton_mEACF0F726788DA012905DCD7A44AA88DF91593ED_inline(__this, NULL);
|
|
DualShockGamepad_set_L3_mD8C16E42401A03362170FB255D0F2E0A70F36531_inline(__this, L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:126>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_8;
|
|
L_8 = Gamepad_get_rightStickButton_m9A8377135FDA7EA2EA6219A715092F0E62ADBC55_inline(__this, NULL);
|
|
DualShockGamepad_set_R3_mF4834C8E3EB76B2C7C91F874D6022770604A5CDC_inline(__this, L_8, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:128>
|
|
InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* L_9 = (InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F*)(&((InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)__this)->___m_Description);
|
|
String_t* L_10;
|
|
L_10 = InputDeviceDescription_get_capabilities_mEBF36ED5663709FCA039D1AEA87F6B6C404E76CD_inline(L_9, NULL);
|
|
if (!L_10)
|
|
{
|
|
goto IL_00b1;
|
|
}
|
|
}
|
|
{
|
|
InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* L_11 = (InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F*)(&((InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)__this)->___m_Description);
|
|
String_t* L_12;
|
|
L_12 = InputDeviceDescription_get_interfaceName_m087CF7E83BAF1E6C6375B3F16A9FAA3A71717D07_inline(L_11, NULL);
|
|
bool L_13;
|
|
L_13 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_12, _stringLiteralCE4026E40BC769AEFB28610F5FE8D1C5507EA2B4, NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_00b1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:129>
|
|
InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* L_14 = (InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F*)(&((InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)__this)->___m_Description);
|
|
String_t* L_15;
|
|
L_15 = InputDeviceDescription_get_capabilities_mEBF36ED5663709FCA039D1AEA87F6B6C404E76CD_inline(L_14, NULL);
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_16;
|
|
L_16 = HIDDeviceDescriptor_FromJson_mEEA8B6998BD6C495ECD4B184C678106ACDFC0A73(L_15, NULL);
|
|
DualShockGamepad_set_hidDescriptor_m1F5D94BCCA35B4EACABD048AA7E097E24EC6233B_inline(__this, L_16, NULL);
|
|
}
|
|
|
|
IL_00b1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:130>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25347
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad_SetLightBarColor_m5954BEB6A9865125CB4F2097085AD53708327564 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_color, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:135>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25348
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockGamepad__ctor_mFF8B00E0E1592EA1F5A104826CD996F936732733 (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Gamepad__ctor_m91DEC6DDDA705B1A49C7964389CA1880CBFD9748(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25349
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualShockSupport_Initialize_m6EBD97B94FF8D5B04FA836953B404F3D2FE213E4 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_RegisterLayout_TisDualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_m617DEC2AD87CDA6CA84F62125F4B1041BDC62777_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockSupport.cs:17>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C));
|
|
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_0 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_RegisterLayout_TisDualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_m617DEC2AD87CDA6CA84F62125F4B1041BDC62777((String_t*)NULL, L_0, InputSystem_RegisterLayout_TisDualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_m617DEC2AD87CDA6CA84F62125F4B1041BDC62777_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockSupport.cs:71>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25351
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SampleFrequencyCalculator__ctor_mFC0C981C7D16F99D4BE8629692EA42AFB360E9E5 (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, float ___0_targetFrequency, double ___1_realtimeSinceStartup, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:15>
|
|
float L_0 = ___0_targetFrequency;
|
|
SampleFrequencyCalculator_set_targetFrequency_m5C9C189395BF81AF093FC0B3AA3B4B3451F83796_inline(__this, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:16>
|
|
__this->___m_SampleCount = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:17>
|
|
SampleFrequencyCalculator_set_frequency_m57646D030EE810C64AB8E041112CEF1E1170ECB9_inline(__this, (0.0f), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:18>
|
|
double L_1 = ___1_realtimeSinceStartup;
|
|
__this->___m_LastUpdateTime = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:19>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SampleFrequencyCalculator__ctor_mFC0C981C7D16F99D4BE8629692EA42AFB360E9E5_AdjustorThunk (RuntimeObject* __this, float ___0_targetFrequency, double ___1_realtimeSinceStartup, const RuntimeMethod* method)
|
|
{
|
|
SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA*>(__this + _offset);
|
|
SampleFrequencyCalculator__ctor_mFC0C981C7D16F99D4BE8629692EA42AFB360E9E5(_thisAdjusted, ___0_targetFrequency, ___1_realtimeSinceStartup, method);
|
|
}
|
|
// Method Definition Index: 25352
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SampleFrequencyCalculator_get_targetFrequency_mBFFBC93F691EFBFD6F2F655DD6A88B8A3B6BA013 (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:21>
|
|
float L_0 = __this->___U3CtargetFrequencyU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float SampleFrequencyCalculator_get_targetFrequency_mBFFBC93F691EFBFD6F2F655DD6A88B8A3B6BA013_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = SampleFrequencyCalculator_get_targetFrequency_mBFFBC93F691EFBFD6F2F655DD6A88B8A3B6BA013_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25353
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SampleFrequencyCalculator_set_targetFrequency_m5C9C189395BF81AF093FC0B3AA3B4B3451F83796 (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:21>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CtargetFrequencyU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SampleFrequencyCalculator_set_targetFrequency_m5C9C189395BF81AF093FC0B3AA3B4B3451F83796_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA*>(__this + _offset);
|
|
SampleFrequencyCalculator_set_targetFrequency_m5C9C189395BF81AF093FC0B3AA3B4B3451F83796_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25354
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SampleFrequencyCalculator_get_frequency_mBADC20906701E18082B8E0EB05164ECB56CF23D9 (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:22>
|
|
float L_0 = __this->___U3CfrequencyU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float SampleFrequencyCalculator_get_frequency_mBADC20906701E18082B8E0EB05164ECB56CF23D9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = SampleFrequencyCalculator_get_frequency_mBADC20906701E18082B8E0EB05164ECB56CF23D9_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25355
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SampleFrequencyCalculator_set_frequency_m57646D030EE810C64AB8E041112CEF1E1170ECB9 (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:22>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CfrequencyU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SampleFrequencyCalculator_set_frequency_m57646D030EE810C64AB8E041112CEF1E1170ECB9_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA*>(__this + _offset);
|
|
SampleFrequencyCalculator_set_frequency_m57646D030EE810C64AB8E041112CEF1E1170ECB9_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25356
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SampleFrequencyCalculator_ProcessSample_mCA606CB6D52E3D92C33D19C91BDC42F980368573 (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:29>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_0 = ___0_eventPtr;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1;
|
|
L_1 = InputEventPtr_op_Implicit_mDCFA11963BDC8B0D5C92A516EBE7F9C7A0B15191((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((uintptr_t)0), NULL);
|
|
bool L_2;
|
|
L_2 = InputEventPtr_op_Inequality_m4C6AF343B2428722DAD6B7BFCD1FF40BEC63AC53(L_0, L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:30>
|
|
int32_t L_3 = __this->___m_SampleCount;
|
|
__this->___m_SampleCount = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:31>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void SampleFrequencyCalculator_ProcessSample_mCA606CB6D52E3D92C33D19C91BDC42F980368573_AdjustorThunk (RuntimeObject* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA*>(__this + _offset);
|
|
SampleFrequencyCalculator_ProcessSample_mCA606CB6D52E3D92C33D19C91BDC42F980368573(_thisAdjusted, ___0_eventPtr, method);
|
|
}
|
|
// Method Definition Index: 25357
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SampleFrequencyCalculator_Update_mAE08DDD5611304CE2F17D828A9E7BDEE19A61AE8 (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:33>
|
|
double L_0;
|
|
L_0 = Time_get_realtimeSinceStartupAsDouble_m0CACE59E6CF8330D285551AE87951FF6749975B0(NULL);
|
|
bool L_1;
|
|
L_1 = SampleFrequencyCalculator_Update_m2E66874BDF7633F10EEA268384BD9AFD40625F7C(__this, L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool SampleFrequencyCalculator_Update_mAE08DDD5611304CE2F17D828A9E7BDEE19A61AE8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = SampleFrequencyCalculator_Update_mAE08DDD5611304CE2F17D828A9E7BDEE19A61AE8(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25358
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SampleFrequencyCalculator_Update_m2E66874BDF7633F10EEA268384BD9AFD40625F7C (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, double ___0_realtimeSinceStartup, const RuntimeMethod* method)
|
|
{
|
|
double V_0 = 0.0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:37>
|
|
double L_0 = ___0_realtimeSinceStartup;
|
|
double L_1 = __this->___m_LastUpdateTime;
|
|
V_0 = ((double)il2cpp_codegen_subtract(L_0, L_1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:38>
|
|
double L_2 = V_0;
|
|
if ((!(((double)L_2) < ((double)(1.0)))))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:39>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:41>
|
|
double L_3 = ___0_realtimeSinceStartup;
|
|
__this->___m_LastUpdateTime = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:42>
|
|
int32_t L_4 = __this->___m_SampleCount;
|
|
double L_5 = V_0;
|
|
SampleFrequencyCalculator_set_frequency_m57646D030EE810C64AB8E041112CEF1E1170ECB9_inline(__this, ((float)((double)(((double)L_4)/L_5))), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:43>
|
|
__this->___m_SampleCount = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:45>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool SampleFrequencyCalculator_Update_m2E66874BDF7633F10EEA268384BD9AFD40625F7C_AdjustorThunk (RuntimeObject* __this, double ___0_realtimeSinceStartup, const RuntimeMethod* method)
|
|
{
|
|
SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = SampleFrequencyCalculator_Update_m2E66874BDF7633F10EEA268384BD9AFD40625F7C(_thisAdjusted, ___0_realtimeSinceStartup, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25359
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:20>
|
|
float L_0 = __this->___U3ClowFrequencyMotorSpeedU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25360
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_set_lowFrequencyMotorSpeed_m9872E9EFA5CD0E26E2E9F55E759D5B17FD0BC843 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:20>
|
|
float L_0 = ___0_value;
|
|
__this->___U3ClowFrequencyMotorSpeedU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DualMotorRumble_set_lowFrequencyMotorSpeed_m9872E9EFA5CD0E26E2E9F55E759D5B17FD0BC843_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
|
|
DualMotorRumble_set_lowFrequencyMotorSpeed_m9872E9EFA5CD0E26E2E9F55E759D5B17FD0BC843_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25361
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:26>
|
|
float L_0 = __this->___U3ChighFrequencyMotorSpeedU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25362
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_set_highFrequencyMotorSpeed_mBE076CAE63721822E1B23B6CBB52836CBEAF3107 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:26>
|
|
float L_0 = ___0_value;
|
|
__this->___U3ChighFrequencyMotorSpeedU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DualMotorRumble_set_highFrequencyMotorSpeed_mBE076CAE63721822E1B23B6CBB52836CBEAF3107_AdjustorThunk (RuntimeObject* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
|
|
DualMotorRumble_set_highFrequencyMotorSpeed_mBE076CAE63721822E1B23B6CBB52836CBEAF3107_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25363
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DualMotorRumble_get_isRumbling_m90556798E2C7AEC56E8AA6AA434095916F1127AC (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:38>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:39>
|
|
float L_0;
|
|
L_0 = DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6_inline(__this, NULL);
|
|
bool L_1;
|
|
L_1 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_0, (0.0f), NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
float L_2;
|
|
L_2 = DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A_inline(__this, NULL);
|
|
bool L_3;
|
|
L_3 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_2, (0.0f), NULL);
|
|
return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool DualMotorRumble_get_isRumbling_m90556798E2C7AEC56E8AA6AA434095916F1127AC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = DualMotorRumble_get_isRumbling_m90556798E2C7AEC56E8AA6AA434095916F1127AC(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25364
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_PauseHaptics_m3BE8E2167226A3C37799E19743D4F8DAD232E31A (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:53>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = ___0_device;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:54>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DualMotorRumble_PauseHaptics_m3BE8E2167226A3C37799E19743D4F8DAD232E31A_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:56>
|
|
bool L_2;
|
|
L_2 = DualMotorRumble_get_isRumbling_m90556798E2C7AEC56E8AA6AA434095916F1127AC(__this, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:57>
|
|
return;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:59>
|
|
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E L_3;
|
|
L_3 = DualMotorRumbleCommand_Create_m92353364BF75EDF5FBE7AF9ED0F136F4E74538A6((0.0f), (0.0f), NULL);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:60>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_4 = ___0_device;
|
|
NullCheck(L_4);
|
|
int64_t L_5;
|
|
L_5 = InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A(L_4, (&V_0), InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:61>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DualMotorRumble_PauseHaptics_m3BE8E2167226A3C37799E19743D4F8DAD232E31A_AdjustorThunk (RuntimeObject* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, const RuntimeMethod* method)
|
|
{
|
|
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
|
|
DualMotorRumble_PauseHaptics_m3BE8E2167226A3C37799E19743D4F8DAD232E31A(_thisAdjusted, ___0_device, method);
|
|
}
|
|
// Method Definition Index: 25365
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_ResumeHaptics_mECD40150D2AAB95F7FA25BC7BD146E0C28B76E56 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:74>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = ___0_device;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:75>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DualMotorRumble_ResumeHaptics_mECD40150D2AAB95F7FA25BC7BD146E0C28B76E56_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:77>
|
|
bool L_2;
|
|
L_2 = DualMotorRumble_get_isRumbling_m90556798E2C7AEC56E8AA6AA434095916F1127AC(__this, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:78>
|
|
return;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:80>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_3 = ___0_device;
|
|
float L_4;
|
|
L_4 = DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6_inline(__this, NULL);
|
|
float L_5;
|
|
L_5 = DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A_inline(__this, NULL);
|
|
DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59(__this, L_3, L_4, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:81>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DualMotorRumble_ResumeHaptics_mECD40150D2AAB95F7FA25BC7BD146E0C28B76E56_AdjustorThunk (RuntimeObject* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, const RuntimeMethod* method)
|
|
{
|
|
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
|
|
DualMotorRumble_ResumeHaptics_mECD40150D2AAB95F7FA25BC7BD146E0C28B76E56(_thisAdjusted, ___0_device, method);
|
|
}
|
|
// Method Definition Index: 25366
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_ResetHaptics_m0589143821BBBA3DEA22D4F88027063057FBADA5 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:94>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = ___0_device;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:95>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DualMotorRumble_ResetHaptics_m0589143821BBBA3DEA22D4F88027063057FBADA5_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:97>
|
|
bool L_2;
|
|
L_2 = DualMotorRumble_get_isRumbling_m90556798E2C7AEC56E8AA6AA434095916F1127AC(__this, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:98>
|
|
return;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:100>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_3 = ___0_device;
|
|
DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59(__this, L_3, (0.0f), (0.0f), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:101>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DualMotorRumble_ResetHaptics_m0589143821BBBA3DEA22D4F88027063057FBADA5_AdjustorThunk (RuntimeObject* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, const RuntimeMethod* method)
|
|
{
|
|
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
|
|
DualMotorRumble_ResetHaptics_m0589143821BBBA3DEA22D4F88027063057FBADA5(_thisAdjusted, ___0_device, method);
|
|
}
|
|
// Method Definition Index: 25367
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59 (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, float ___1_lowFrequency, float ___2_highFrequency, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:121>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = ___0_device;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:122>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:124>
|
|
float L_2 = ___1_lowFrequency;
|
|
float L_3;
|
|
L_3 = Mathf_Clamp_mEB9AEA827D27D20FCC787F7375156AF46BB12BBF_inline(L_2, (0.0f), (1.0f), NULL);
|
|
DualMotorRumble_set_lowFrequencyMotorSpeed_m9872E9EFA5CD0E26E2E9F55E759D5B17FD0BC843_inline(__this, L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:125>
|
|
float L_4 = ___2_highFrequency;
|
|
float L_5;
|
|
L_5 = Mathf_Clamp_mEB9AEA827D27D20FCC787F7375156AF46BB12BBF_inline(L_4, (0.0f), (1.0f), NULL);
|
|
DualMotorRumble_set_highFrequencyMotorSpeed_mBE076CAE63721822E1B23B6CBB52836CBEAF3107_inline(__this, L_5, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:127>
|
|
float L_6;
|
|
L_6 = DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6_inline(__this, NULL);
|
|
float L_7;
|
|
L_7 = DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A_inline(__this, NULL);
|
|
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E L_8;
|
|
L_8 = DualMotorRumbleCommand_Create_m92353364BF75EDF5FBE7AF9ED0F136F4E74538A6(L_6, L_7, NULL);
|
|
V_0 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:128>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_9 = ___0_device;
|
|
NullCheck(L_9);
|
|
int64_t L_10;
|
|
L_10 = InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A(L_9, (&V_0), InputDevice_ExecuteCommand_TisDualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E_m51EF57E101D5BA3D43E89FE3E01631567A26037A_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:129>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59_AdjustorThunk (RuntimeObject* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, float ___1_lowFrequency, float ___2_highFrequency, const RuntimeMethod* method)
|
|
{
|
|
DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701*>(__this + _offset);
|
|
DualMotorRumble_SetMotorSpeeds_m59E9BDD10561248589656B578B7D741DA3931A59(_thisAdjusted, ___0_device, ___1_lowFrequency, ___2_highFrequency, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25372
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DisableDeviceCommand_get_Type_m279789BEABF7A0BA1FBCE49C29E7CCD3B935C0AF (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/DisableDeviceCommand.cs:12>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)68), ((int32_t)83), ((int32_t)66), ((int32_t)76), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25373
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DisableDeviceCommand_get_typeStatic_m41138589716445D66360A9FB80B7B5BB451F4E74 (DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/DisableDeviceCommand.cs:21>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = DisableDeviceCommand_get_Type_m279789BEABF7A0BA1FBCE49C29E7CCD3B935C0AF(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DisableDeviceCommand_get_typeStatic_m41138589716445D66360A9FB80B7B5BB451F4E74_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = DisableDeviceCommand_get_typeStatic_m41138589716445D66360A9FB80B7B5BB451F4E74(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25374
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD DisableDeviceCommand_Create_mF961C217B046E6EE0622752132BDE61C765B34F0 (const RuntimeMethod* method)
|
|
{
|
|
DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/DisableDeviceCommand.cs:26>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/DisableDeviceCommand.cs:27>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/DisableDeviceCommand.cs:28>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/DisableDeviceCommand.cs:29>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = DisableDeviceCommand_get_Type_m279789BEABF7A0BA1FBCE49C29E7CCD3B935C0AF(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, 8, NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
DisableDeviceCommand_t974D69BE0CA6623C190CC3FA2EB8371165042BAD L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25375
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableDeviceCommand_get_Type_m3DFF7F0720AAB0A46EB8AE6FDF58E488B7F98CD2 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/EnableDeviceCommand.cs:12>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)69), ((int32_t)78), ((int32_t)66), ((int32_t)76), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25376
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableDeviceCommand_get_typeStatic_m54D173AC3F000FB3483D520998D28FFFA9F25599 (EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/EnableDeviceCommand.cs:21>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = EnableDeviceCommand_get_Type_m3DFF7F0720AAB0A46EB8AE6FDF58E488B7F98CD2(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableDeviceCommand_get_typeStatic_m54D173AC3F000FB3483D520998D28FFFA9F25599_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = EnableDeviceCommand_get_typeStatic_m54D173AC3F000FB3483D520998D28FFFA9F25599(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25377
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4 EnableDeviceCommand_Create_m2A37EA4A6027E10EA0A5F60E03BC91F41D996170 (const RuntimeMethod* method)
|
|
{
|
|
EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/EnableDeviceCommand.cs:26>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/EnableDeviceCommand.cs:27>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/EnableDeviceCommand.cs:28>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/EnableDeviceCommand.cs:29>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = EnableDeviceCommand_get_Type_m3DFF7F0720AAB0A46EB8AE6FDF58E488B7F98CD2(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, 8, NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
EnableDeviceCommand_tD03828E5A5F935FBF0611920EEC17719DEC8CCC4 L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25378
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableIMECompositionCommand_get_Type_m0E7ACE45765FA864C8349CE9AD47419B24A70E4A (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/EnableIMECompositionCommand.cs:12>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)73), ((int32_t)77), ((int32_t)69), ((int32_t)77), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25379
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnableIMECompositionCommand_get_imeEnabled_mD0CCBB77A6E533FDF6DE036CBA010D0CA0E9A3DA (EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/EnableIMECompositionCommand.cs:24>
|
|
uint8_t L_0 = __this->___m_ImeEnabled;
|
|
return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool EnableIMECompositionCommand_get_imeEnabled_mD0CCBB77A6E533FDF6DE036CBA010D0CA0E9A3DA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = EnableIMECompositionCommand_get_imeEnabled_mD0CCBB77A6E533FDF6DE036CBA010D0CA0E9A3DA(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25380
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableIMECompositionCommand_get_typeStatic_m6F293C39B7AC6A01CCD65F74029AFB07189A588A (EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/EnableIMECompositionCommand.cs:32>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = EnableIMECompositionCommand_get_Type_m0E7ACE45765FA864C8349CE9AD47419B24A70E4A(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED EnableIMECompositionCommand_get_typeStatic_m6F293C39B7AC6A01CCD65F74029AFB07189A588A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = EnableIMECompositionCommand_get_typeStatic_m6F293C39B7AC6A01CCD65F74029AFB07189A588A(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25381
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C EnableIMECompositionCommand_Create_mE499C433AC6F6E8A932FE9170224478ACFD9A1F0 (bool ___0_enabled, const RuntimeMethod* method)
|
|
{
|
|
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* G_B2_0 = NULL;
|
|
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* G_B1_0 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C* G_B3_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/EnableIMECompositionCommand.cs:37>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/EnableIMECompositionCommand.cs:38>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/EnableIMECompositionCommand.cs:39>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/EnableIMECompositionCommand.cs:40>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/EnableIMECompositionCommand.cs:41>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = EnableIMECompositionCommand_get_Type_m0E7ACE45765FA864C8349CE9AD47419B24A70E4A(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)9), NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
bool L_2 = ___0_enabled;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = (&V_0);
|
|
goto IL_0023;
|
|
}
|
|
G_B1_0 = (&V_0);
|
|
}
|
|
{
|
|
G_B3_0 = 0;
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
G_B3_0 = ((int32_t)255);
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
G_B3_1->___m_ImeEnabled = (uint8_t)G_B3_0;
|
|
EnableIMECompositionCommand_t334151D7E5F5213E80B473930388F6063795DA8C L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25383
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InitiateUserAccountPairingCommand_get_Type_m805213E28C12AA64A1F8F57CAA590E4FFB7BFC41 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InitiateUserAccountPairingCommand.cs:18>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)80), ((int32_t)65), ((int32_t)73), ((int32_t)82), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25384
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InitiateUserAccountPairingCommand_get_typeStatic_m7A6A7BEE8AC36FB548934F7D6E8DDE333D9BEC50 (InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InitiateUserAccountPairingCommand.cs:47>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = InitiateUserAccountPairingCommand_get_Type_m805213E28C12AA64A1F8F57CAA590E4FFB7BFC41(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InitiateUserAccountPairingCommand_get_typeStatic_m7A6A7BEE8AC36FB548934F7D6E8DDE333D9BEC50_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = InitiateUserAccountPairingCommand_get_typeStatic_m7A6A7BEE8AC36FB548934F7D6E8DDE333D9BEC50(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25385
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF InitiateUserAccountPairingCommand_Create_mDD9194009ED94184B526EF06DC91842D1207D408 (const RuntimeMethod* method)
|
|
{
|
|
InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InitiateUserAccountPairingCommand.cs:52>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InitiateUserAccountPairingCommand.cs:53>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InitiateUserAccountPairingCommand.cs:54>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InitiateUserAccountPairingCommand.cs:55>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = InitiateUserAccountPairingCommand_get_Type_m805213E28C12AA64A1F8F57CAA590E4FFB7BFC41(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, 8, NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
InitiateUserAccountPairingCommand_t2D75489C6B2746268CC6757AA10E86F8AE2733EF L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_Multicast(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___1_command, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_array_size_t length = __this->___delegates->max_length;
|
|
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
|
|
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 retVal;
|
|
memset((&retVal), 0, sizeof(retVal));
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* currentDelegate = reinterpret_cast<InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809*>(delegatesToInvoke[i]);
|
|
typedef Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 (*FunctionPointerType) (RuntimeObject*, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*, const RuntimeMethod*);
|
|
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_device, ___1_command, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
|
|
}
|
|
return retVal;
|
|
}
|
|
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenInst(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___1_command, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_device);
|
|
typedef Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 (*FunctionPointerType) (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___method_ptr)(___0_device, ___1_command, method);
|
|
}
|
|
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenStatic(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___1_command, const RuntimeMethod* method)
|
|
{
|
|
typedef Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 (*FunctionPointerType) (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___method_ptr)(___0_device, ___1_command, method);
|
|
}
|
|
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenVirtual(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___1_command, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_device);
|
|
return VirtualFuncInvoker1< Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* >::Invoke(il2cpp_codegen_method_get_slot(method), ___0_device, ___1_command);
|
|
}
|
|
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenInterface(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___1_command, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_device);
|
|
return InterfaceFuncInvoker1< Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___0_device, ___1_command);
|
|
}
|
|
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenGenericVirtual(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___1_command, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_device);
|
|
return GenericVirtualFuncInvoker1< Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* >::Invoke(method, ___0_device, ___1_command);
|
|
}
|
|
Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenGenericInterface(InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___1_command, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_device);
|
|
return GenericInterfaceFuncInvoker1< Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* >::Invoke(method, ___0_device, ___1_command);
|
|
}
|
|
// Method Definition Index: 25386
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceCommandDelegate__ctor_mC4781D31BA2ABBEA8B8E0A4C7A2BA9E0305E42B2 (InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
__this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
|
|
__this->___method = ___1_method;
|
|
__this->___m_target = ___0_object;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
|
|
int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
|
|
__this->___method_code = (intptr_t)__this;
|
|
if (MethodIsStatic((RuntimeMethod*)___1_method))
|
|
{
|
|
bool isOpen = parameterCount == 2;
|
|
if (isOpen)
|
|
__this->___invoke_impl = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenStatic;
|
|
else
|
|
{
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool isOpen = parameterCount == 1;
|
|
if (isOpen)
|
|
{
|
|
if (__this->___method_is_virtual)
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___1_method))
|
|
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
|
|
__this->___invoke_impl = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenGenericInterface;
|
|
else
|
|
__this->___invoke_impl = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenGenericVirtual;
|
|
else
|
|
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
|
|
__this->___invoke_impl = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenInterface;
|
|
else
|
|
__this->___invoke_impl = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenVirtual;
|
|
}
|
|
else
|
|
{
|
|
__this->___invoke_impl = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_OpenInst;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (___0_object == NULL)
|
|
il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
__this->___extra_arg = (intptr_t)&InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2_Multicast;
|
|
}
|
|
// Method Definition Index: 25387
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_Invoke_mBC749787F7B950D1814CC87ADE13F021BED949B2 (InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___1_command, const RuntimeMethod* method)
|
|
{
|
|
typedef Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 (*FunctionPointerType) (RuntimeObject*, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_device, ___1_command, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 25388
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputDeviceCommandDelegate_BeginInvoke_mE19CD990A108DAE875AD351212314BE96EAEEB9D (InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___1_command, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___2_callback, RuntimeObject* ___3_object, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[3] = {0};
|
|
__d_args[0] = ___0_device;
|
|
__d_args[1] = ___1_command;
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___2_callback, (RuntimeObject*)___3_object);
|
|
}
|
|
// Method Definition Index: 25389
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17 InputDeviceCommandDelegate_EndInvoke_mA8E37BB06B88962DE892B562068A5614AE2D61B4 (InputDeviceCommandDelegate_tC0083621670090AD9D172C546FE833562AABF809* __this, RuntimeObject* ___0_result, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___0_result, 0);
|
|
return *(Nullable_1_t365991B3904FDA7642A788423B28692FDC7CDB17*)UnBox ((RuntimeObject*)__result);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
int64_t InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_Multicast(InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___0_command, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_array_size_t length = __this->___delegates->max_length;
|
|
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
|
|
int64_t retVal = 0;
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* currentDelegate = reinterpret_cast<InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A*>(delegatesToInvoke[i]);
|
|
typedef int64_t (*FunctionPointerType) (RuntimeObject*, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*, const RuntimeMethod*);
|
|
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_command, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
|
|
}
|
|
return retVal;
|
|
}
|
|
int64_t InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_OpenInst(InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___0_command, const RuntimeMethod* method)
|
|
{
|
|
typedef int64_t (*FunctionPointerType) (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___method_ptr)(___0_command, method);
|
|
}
|
|
int64_t InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_OpenStatic(InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___0_command, const RuntimeMethod* method)
|
|
{
|
|
typedef int64_t (*FunctionPointerType) (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___method_ptr)(___0_command, method);
|
|
}
|
|
IL2CPP_EXTERN_C int64_t DelegatePInvokeWrapper_InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A (InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___0_command, const RuntimeMethod* method)
|
|
{
|
|
typedef int64_t (DEFAULT_CALL *PInvokeFunc)(InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*);
|
|
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
|
|
int64_t returnValue = il2cppPInvokeFunc(___0_command);
|
|
|
|
return returnValue;
|
|
}
|
|
// Method Definition Index: 25390
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceExecuteCommandDelegate__ctor_m00EA5FFE583EA0674F6756175140418B251E97D3 (InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
__this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
|
|
__this->___method = ___1_method;
|
|
__this->___m_target = ___0_object;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
|
|
int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
|
|
__this->___method_code = (intptr_t)__this;
|
|
if (MethodIsStatic((RuntimeMethod*)___1_method))
|
|
{
|
|
bool isOpen = parameterCount == 1;
|
|
if (isOpen)
|
|
__this->___invoke_impl = (intptr_t)&InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_OpenStatic;
|
|
else
|
|
{
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool isOpen = parameterCount == 0;
|
|
if (isOpen)
|
|
{
|
|
__this->___invoke_impl = (intptr_t)&InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_OpenInst;
|
|
}
|
|
else
|
|
{
|
|
if (___0_object == NULL)
|
|
il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
__this->___extra_arg = (intptr_t)&InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0_Multicast;
|
|
}
|
|
// Method Definition Index: 25391
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputDeviceExecuteCommandDelegate_Invoke_m9F281BD2D29AA9268FDA45BABE99DD6C466E40C0 (InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___0_command, const RuntimeMethod* method)
|
|
{
|
|
typedef int64_t (*FunctionPointerType) (RuntimeObject*, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_command, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 25392
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputDeviceExecuteCommandDelegate_BeginInvoke_m37EF968A7BB8349ACEC0EFA9A0C881083B95EFA1 (InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___0_command, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___1_callback, RuntimeObject* ___2_object, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
void *__d_args[2] = {0};
|
|
__d_args[0] = Box(InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E_il2cpp_TypeInfo_var, &*___0_command);
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___1_callback, (RuntimeObject*)___2_object);
|
|
}
|
|
// Method Definition Index: 25393
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputDeviceExecuteCommandDelegate_EndInvoke_m09B2B9AAE8E55E063740251A5959CBFAEE97C42E (InputDeviceExecuteCommandDelegate_t94A8BB806676141BFD8EFA497EC51C685778718A* __this, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___0_command, RuntimeObject* ___1_result, const RuntimeMethod* method)
|
|
{
|
|
void* ___out_args[] = {
|
|
___0_command,
|
|
};
|
|
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___1_result, ___out_args);
|
|
return *(int64_t*)UnBox ((RuntimeObject*)__result);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25394
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputDeviceCommand_get_payloadSizeInBytes_m65597C869B0A3AF1D1B928605A06216AB6897D11 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InputDeviceCommand.cs:55>
|
|
int32_t L_0 = __this->___sizeInBytes;
|
|
return ((int32_t)il2cpp_codegen_subtract(L_0, 8));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputDeviceCommand_get_payloadSizeInBytes_m65597C869B0A3AF1D1B928605A06216AB6897D11_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputDeviceCommand_get_payloadSizeInBytes_m65597C869B0A3AF1D1B928605A06216AB6897D11(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25395
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* InputDeviceCommand_get_payloadPtr_mCE339E6458B03F15067C3ADE7D22EEBAE4D29982 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, const RuntimeMethod* method)
|
|
{
|
|
void* V_0 = NULL;
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InputDeviceCommand.cs:60>
|
|
V_1 = __this;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InputDeviceCommand.cs:61>
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* L_0 = V_1;
|
|
V_0 = (void*)((uintptr_t)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InputDeviceCommand.cs:63>
|
|
void* L_1 = V_0;
|
|
return ((void*)il2cpp_codegen_add((intptr_t)L_1, 8));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void* InputDeviceCommand_get_payloadPtr_mCE339E6458B03F15067C3ADE7D22EEBAE4D29982_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*>(__this + _offset);
|
|
void* _returnValue;
|
|
_returnValue = InputDeviceCommand_get_payloadPtr_mCE339E6458B03F15067C3ADE7D22EEBAE4D29982(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25396
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_type, int32_t ___1_sizeInBytes, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InputDeviceCommand.cs:70>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = ___0_type;
|
|
__this->___type = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InputDeviceCommand.cs:71>
|
|
int32_t L_1 = ___1_sizeInBytes;
|
|
__this->___sizeInBytes = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InputDeviceCommand.cs:72>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01_AdjustorThunk (RuntimeObject* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_type, int32_t ___1_sizeInBytes, const RuntimeMethod* method)
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*>(__this + _offset);
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01(_thisAdjusted, ___0_type, ___1_sizeInBytes, method);
|
|
}
|
|
// Method Definition Index: 25397
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF InputDeviceCommand_AllocateNative_m4A95E5E3C7B2000E024D2D8364E08B3FAFA969EB (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_type, int32_t ___1_payloadSize, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InputDeviceCommand.cs:76>
|
|
int32_t L_0 = ___1_payloadSize;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, 8));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InputDeviceCommand.cs:77>
|
|
int32_t L_1 = V_0;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F((&L_2), L_1, 2, 1, NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InputDeviceCommand.cs:79>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_3 = L_2;
|
|
void* L_4;
|
|
L_4 = NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2(L_3, NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2_RuntimeMethod_var);
|
|
V_1 = (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*)L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InputDeviceCommand.cs:80>
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* L_5 = V_1;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_6 = ___0_type;
|
|
NullCheck(L_5);
|
|
L_5->___type = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InputDeviceCommand.cs:81>
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* L_7 = V_1;
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_7);
|
|
L_7->___sizeInBytes = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InputDeviceCommand.cs:83>
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 25398
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputDeviceCommand_get_typeStatic_m50C7C954EE7CA7B20757F2874C08D0FFF675ACE4 (InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* __this, const RuntimeMethod* method)
|
|
{
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/InputDeviceCommand.cs:88>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = V_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputDeviceCommand_get_typeStatic_m50C7C954EE7CA7B20757F2874C08D0FFF675ACE4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = InputDeviceCommand_get_typeStatic_m50C7C954EE7CA7B20757F2874C08D0FFF675ACE4(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshal_pinvoke(const QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341& unmarshaled, QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___baseCommand = unmarshaled.___baseCommand;
|
|
marshaled.___canRunInBackground = static_cast<int32_t>(unmarshaled.___canRunInBackground);
|
|
}
|
|
IL2CPP_EXTERN_C void QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshal_pinvoke_back(const QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_pinvoke& marshaled, QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341& unmarshaled)
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E unmarshaledbaseCommand_temp_0;
|
|
memset((&unmarshaledbaseCommand_temp_0), 0, sizeof(unmarshaledbaseCommand_temp_0));
|
|
unmarshaledbaseCommand_temp_0 = marshaled.___baseCommand;
|
|
unmarshaled.___baseCommand = unmarshaledbaseCommand_temp_0;
|
|
bool unmarshaledcanRunInBackground_temp_1 = false;
|
|
unmarshaledcanRunInBackground_temp_1 = static_cast<bool>(marshaled.___canRunInBackground);
|
|
unmarshaled.___canRunInBackground = unmarshaledcanRunInBackground_temp_1;
|
|
}
|
|
IL2CPP_EXTERN_C void QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshal_pinvoke_cleanup(QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshal_com(const QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341& unmarshaled, QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___baseCommand = unmarshaled.___baseCommand;
|
|
marshaled.___canRunInBackground = static_cast<int32_t>(unmarshaled.___canRunInBackground);
|
|
}
|
|
IL2CPP_EXTERN_C void QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshal_com_back(const QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_com& marshaled, QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341& unmarshaled)
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E unmarshaledbaseCommand_temp_0;
|
|
memset((&unmarshaledbaseCommand_temp_0), 0, sizeof(unmarshaledbaseCommand_temp_0));
|
|
unmarshaledbaseCommand_temp_0 = marshaled.___baseCommand;
|
|
unmarshaled.___baseCommand = unmarshaledbaseCommand_temp_0;
|
|
bool unmarshaledcanRunInBackground_temp_1 = false;
|
|
unmarshaledcanRunInBackground_temp_1 = static_cast<bool>(marshaled.___canRunInBackground);
|
|
unmarshaled.___canRunInBackground = unmarshaledcanRunInBackground_temp_1;
|
|
}
|
|
IL2CPP_EXTERN_C void QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshal_com_cleanup(QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// Method Definition Index: 25399
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryCanRunInBackground_get_Type_m63C4E82B05DB1FE6BB0DAB47C2DF931FEBA735D0 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryCanRunInBackground.cs:13>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)81), ((int32_t)82), ((int32_t)73), ((int32_t)66), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25400
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryCanRunInBackground_get_typeStatic_m18F466F00C744F3136183AD33D6E562F161A594D (QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryCanRunInBackground.cs:23>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QueryCanRunInBackground_get_Type_m63C4E82B05DB1FE6BB0DAB47C2DF931FEBA735D0(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryCanRunInBackground_get_typeStatic_m18F466F00C744F3136183AD33D6E562F161A594D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = QueryCanRunInBackground_get_typeStatic_m18F466F00C744F3136183AD33D6E562F161A594D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25401
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341 QueryCanRunInBackground_Create_m550EBF1B472C6D8F034D29EF61CCEBD1B4B25A35 (const RuntimeMethod* method)
|
|
{
|
|
QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryCanRunInBackground.cs:27>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryCanRunInBackground.cs:28>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryCanRunInBackground.cs:29>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryCanRunInBackground.cs:30>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryCanRunInBackground.cs:31>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QueryCanRunInBackground_get_Type_m63C4E82B05DB1FE6BB0DAB47C2DF931FEBA735D0(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)9), NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
(&V_0)->___canRunInBackground = (bool)0;
|
|
QueryCanRunInBackground_tC4968BE4E8005935A3747507F3652882719FE341 L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25402
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryDimensionsCommand_get_Type_mB8D7CB73A6F3D66517290078A530808988C9A3A8 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryDimensionsCommand.cs:15>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)68), ((int32_t)73), ((int32_t)77), ((int32_t)83), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25403
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryDimensionsCommand_get_typeStatic_mDCF9B62F3BF35868211DAC4674B20B649F199141 (QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryDimensionsCommand.cs:27>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QueryDimensionsCommand_get_Type_mB8D7CB73A6F3D66517290078A530808988C9A3A8(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryDimensionsCommand_get_typeStatic_mDCF9B62F3BF35868211DAC4674B20B649F199141_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = QueryDimensionsCommand_get_typeStatic_mDCF9B62F3BF35868211DAC4674B20B649F199141(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25404
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83 QueryDimensionsCommand_Create_m7F9B48EB6642DF7D6A8271D70FC291A8033CB83E (const RuntimeMethod* method)
|
|
{
|
|
QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryDimensionsCommand.cs:32>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryDimensionsCommand.cs:33>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryDimensionsCommand.cs:34>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryDimensionsCommand.cs:35>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QueryDimensionsCommand_get_Type_mB8D7CB73A6F3D66517290078A530808988C9A3A8(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)16), NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
QueryDimensionsCommand_tDE86E5E5985319C1F7B99F504214FD3612F20B83 L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshal_pinvoke(const QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4& unmarshaled, QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___baseCommand = unmarshaled.___baseCommand;
|
|
marshaled.___isEnabled = static_cast<int32_t>(unmarshaled.___isEnabled);
|
|
}
|
|
IL2CPP_EXTERN_C void QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshal_pinvoke_back(const QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_pinvoke& marshaled, QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4& unmarshaled)
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E unmarshaledbaseCommand_temp_0;
|
|
memset((&unmarshaledbaseCommand_temp_0), 0, sizeof(unmarshaledbaseCommand_temp_0));
|
|
unmarshaledbaseCommand_temp_0 = marshaled.___baseCommand;
|
|
unmarshaled.___baseCommand = unmarshaledbaseCommand_temp_0;
|
|
bool unmarshaledisEnabled_temp_1 = false;
|
|
unmarshaledisEnabled_temp_1 = static_cast<bool>(marshaled.___isEnabled);
|
|
unmarshaled.___isEnabled = unmarshaledisEnabled_temp_1;
|
|
}
|
|
IL2CPP_EXTERN_C void QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshal_pinvoke_cleanup(QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshal_com(const QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4& unmarshaled, QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___baseCommand = unmarshaled.___baseCommand;
|
|
marshaled.___isEnabled = static_cast<int32_t>(unmarshaled.___isEnabled);
|
|
}
|
|
IL2CPP_EXTERN_C void QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshal_com_back(const QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_com& marshaled, QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4& unmarshaled)
|
|
{
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E unmarshaledbaseCommand_temp_0;
|
|
memset((&unmarshaledbaseCommand_temp_0), 0, sizeof(unmarshaledbaseCommand_temp_0));
|
|
unmarshaledbaseCommand_temp_0 = marshaled.___baseCommand;
|
|
unmarshaled.___baseCommand = unmarshaledbaseCommand_temp_0;
|
|
bool unmarshaledisEnabled_temp_1 = false;
|
|
unmarshaledisEnabled_temp_1 = static_cast<bool>(marshaled.___isEnabled);
|
|
unmarshaled.___isEnabled = unmarshaledisEnabled_temp_1;
|
|
}
|
|
IL2CPP_EXTERN_C void QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshal_com_cleanup(QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// Method Definition Index: 25405
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryEnabledStateCommand_get_Type_m5A6F1768EA6D487A118F2861AE4ED9485F62ABD5 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryEnabledStateCommand.cs:12>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)81), ((int32_t)69), ((int32_t)78), ((int32_t)66), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25406
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryEnabledStateCommand_get_typeStatic_m4CE8116E064CBD6A470B8F043F1869E362216744 (QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryEnabledStateCommand.cs:22>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QueryEnabledStateCommand_get_Type_m5A6F1768EA6D487A118F2861AE4ED9485F62ABD5(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryEnabledStateCommand_get_typeStatic_m4CE8116E064CBD6A470B8F043F1869E362216744_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = QueryEnabledStateCommand_get_typeStatic_m4CE8116E064CBD6A470B8F043F1869E362216744(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25407
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4 QueryEnabledStateCommand_Create_m35BA66068A3B4897154F829D338C4CA6FF469107 (const RuntimeMethod* method)
|
|
{
|
|
QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryEnabledStateCommand.cs:26>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryEnabledStateCommand.cs:27>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryEnabledStateCommand.cs:28>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryEnabledStateCommand.cs:29>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QueryEnabledStateCommand_get_Type_m5A6F1768EA6D487A118F2861AE4ED9485F62ABD5(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)9), NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
QueryEnabledStateCommand_t32FB8F3C31DD9250FCE728E29FE6C8D580FEAED4 L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25408
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyboardLayoutCommand_get_Type_mD6B795EB9B588A1F1A3D3147A3D2CF67EFE37857 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs:13>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)75), ((int32_t)66), ((int32_t)76), ((int32_t)84), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25409
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryKeyboardLayoutCommand_ReadLayoutName_m69F50E3BC9B964A8EE56924846F0292AD4330FDE (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* __this, const RuntimeMethod* method)
|
|
{
|
|
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs:28>
|
|
V_0 = __this;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs:29>
|
|
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* L_0 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs:30>
|
|
U3CnameBufferU3Ee__FixedBuffer_t168308F70377718D2FF4ADDC61E423166ADBE1DA* L_1 = (U3CnameBufferU3Ee__FixedBuffer_t168308F70377718D2FF4ADDC61E423166ADBE1DA*)(&((QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F*)((uintptr_t)L_0))->___nameBuffer);
|
|
uint8_t* L_2 = (uint8_t*)(&L_1->___FixedElementField);
|
|
intptr_t L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_3), (void*)((uintptr_t)L_2), NULL);
|
|
String_t* L_4;
|
|
L_4 = StringHelpers_ReadStringFromBuffer_m2D73BEC46047561991586041C6195B9CC776DA0D(L_3, ((int32_t)256), NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* QueryKeyboardLayoutCommand_ReadLayoutName_m69F50E3BC9B964A8EE56924846F0292AD4330FDE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = QueryKeyboardLayoutCommand_ReadLayoutName_m69F50E3BC9B964A8EE56924846F0292AD4330FDE(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25410
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryKeyboardLayoutCommand_WriteLayoutName_mBB1067A2E35ED994C8AAF1E8C250FADBAA4AD6AE (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* __this, String_t* ___0_name, const RuntimeMethod* method)
|
|
{
|
|
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* V_0 = NULL;
|
|
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs:38>
|
|
V_1 = __this;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs:39>
|
|
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* L_0 = V_1;
|
|
V_0 = (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F*)((uintptr_t)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs:40>
|
|
String_t* L_1 = ___0_name;
|
|
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
U3CnameBufferU3Ee__FixedBuffer_t168308F70377718D2FF4ADDC61E423166ADBE1DA* L_3 = (U3CnameBufferU3Ee__FixedBuffer_t168308F70377718D2FF4ADDC61E423166ADBE1DA*)(&L_2->___nameBuffer);
|
|
uint8_t* L_4 = (uint8_t*)(&L_3->___FixedElementField);
|
|
intptr_t L_5;
|
|
memset((&L_5), 0, sizeof(L_5));
|
|
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_5), (void*)((uintptr_t)L_4), NULL);
|
|
bool L_6;
|
|
L_6 = StringHelpers_WriteStringToBuffer_m3224AFFDC9D2D04E9112B8812CDEEC6FE363D66F(L_1, L_5, ((int32_t)256), NULL);
|
|
V_1 = (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F*)((uintptr_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs:41>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void QueryKeyboardLayoutCommand_WriteLayoutName_mBB1067A2E35ED994C8AAF1E8C250FADBAA4AD6AE_AdjustorThunk (RuntimeObject* __this, String_t* ___0_name, const RuntimeMethod* method)
|
|
{
|
|
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F*>(__this + _offset);
|
|
QueryKeyboardLayoutCommand_WriteLayoutName_mBB1067A2E35ED994C8AAF1E8C250FADBAA4AD6AE(_thisAdjusted, ___0_name, method);
|
|
}
|
|
// Method Definition Index: 25411
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyboardLayoutCommand_get_typeStatic_mF9D6B9C2C598C7AA595CFC38B830112CF6389C0F (QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs:43>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QueryKeyboardLayoutCommand_get_Type_mD6B795EB9B588A1F1A3D3147A3D2CF67EFE37857(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyboardLayoutCommand_get_typeStatic_mF9D6B9C2C598C7AA595CFC38B830112CF6389C0F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = QueryKeyboardLayoutCommand_get_typeStatic_mF9D6B9C2C598C7AA595CFC38B830112CF6389C0F(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25412
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F QueryKeyboardLayoutCommand_Create_m03C609EDFB9066507281CCF36EB8961EA5D6F6F9 (const RuntimeMethod* method)
|
|
{
|
|
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs:47>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs:48>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs:49>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyboardLayoutCommand.cs:50>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QueryKeyboardLayoutCommand_get_Type_mD6B795EB9B588A1F1A3D3147A3D2CF67EFE37857(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)264), NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
QueryKeyboardLayoutCommand_tFC7F5A66A40C43E85CE0374D9845F342ECBD019F L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25413
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyNameCommand_get_Type_mF39C67F95A7EE638AEA573691AABEF1B38F7E089 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyNameCommand.cs:13>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)75), ((int32_t)89), ((int32_t)67), ((int32_t)70), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25414
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryKeyNameCommand_ReadKeyName_mE3442B7FD9CC5B3889A5908F2F87F215FF70A61E (QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* __this, const RuntimeMethod* method)
|
|
{
|
|
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyNameCommand.cs:28>
|
|
V_0 = __this;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyNameCommand.cs:29>
|
|
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* L_0 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyNameCommand.cs:31>
|
|
U3CnameBufferU3Ee__FixedBuffer_tF101426D1EE77D09C5615FAE829F3F32616ED2A4* L_1 = (U3CnameBufferU3Ee__FixedBuffer_tF101426D1EE77D09C5615FAE829F3F32616ED2A4*)(&((QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247*)((uintptr_t)L_0))->___nameBuffer);
|
|
uint8_t* L_2 = (uint8_t*)(&L_1->___FixedElementField);
|
|
intptr_t L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_3), (void*)((uintptr_t)L_2), NULL);
|
|
String_t* L_4;
|
|
L_4 = StringHelpers_ReadStringFromBuffer_m2D73BEC46047561991586041C6195B9CC776DA0D(L_3, ((int32_t)256), NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* QueryKeyNameCommand_ReadKeyName_mE3442B7FD9CC5B3889A5908F2F87F215FF70A61E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = QueryKeyNameCommand_ReadKeyName_mE3442B7FD9CC5B3889A5908F2F87F215FF70A61E(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25415
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyNameCommand_get_typeStatic_mF2D528451EEEC0E93933CF425037F4851EC1ECB3 (QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyNameCommand.cs:35>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QueryKeyNameCommand_get_Type_mF39C67F95A7EE638AEA573691AABEF1B38F7E089(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryKeyNameCommand_get_typeStatic_mF2D528451EEEC0E93933CF425037F4851EC1ECB3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = QueryKeyNameCommand_get_typeStatic_mF2D528451EEEC0E93933CF425037F4851EC1ECB3(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25416
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247 QueryKeyNameCommand_Create_m2FD778848D7D9617D247F73C8B61A032F7D52E5D (int32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyNameCommand.cs:39>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyNameCommand.cs:40>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyNameCommand.cs:41>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyNameCommand.cs:42>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryKeyNameCommand.cs:43>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QueryKeyNameCommand_get_Type_mF39C67F95A7EE638AEA573691AABEF1B38F7E089(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)268), NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
int32_t L_2 = ___0_key;
|
|
(&V_0)->___scanOrKeyCode = L_2;
|
|
QueryKeyNameCommand_tCEEA57BE2D12A0FFDCD9FE3F8A5851CC31DBE247 L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25417
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryPairedUserAccountCommand_get_Type_m44803FA194663CC41EEE3C7EF7498C07992AFED5 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:19>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)80), ((int32_t)65), ((int32_t)67), ((int32_t)67), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25418
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryPairedUserAccountCommand_get_id_mB52BF2DC2C2B3C63661056A1F9AAB47C0E7CDFCB (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:89>
|
|
U3CidBufferU3Ee__FixedBuffer_t8F8E3EAA210EF6DD3834C5C4E574ADC65AC6173A* L_0 = (U3CidBufferU3Ee__FixedBuffer_t8F8E3EAA210EF6DD3834C5C4E574ADC65AC6173A*)(&__this->___idBuffer);
|
|
uint8_t* L_1 = (uint8_t*)(&L_0->___FixedElementField);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:90>
|
|
uint8_t* L_2 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:91>
|
|
intptr_t L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_3), (void*)((uintptr_t)L_2), NULL);
|
|
String_t* L_4;
|
|
L_4 = StringHelpers_ReadStringFromBuffer_m2D73BEC46047561991586041C6195B9CC776DA0D(L_3, ((int32_t)256), NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* QueryPairedUserAccountCommand_get_id_mB52BF2DC2C2B3C63661056A1F9AAB47C0E7CDFCB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = QueryPairedUserAccountCommand_get_id_mB52BF2DC2C2B3C63661056A1F9AAB47C0E7CDFCB(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25419
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryPairedUserAccountCommand_set_id_mCA44A798D70E7F0EB7BA347652F4341221A5BDAE (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
uint8_t* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:95>
|
|
String_t* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:96>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&QueryPairedUserAccountCommand_set_id_mCA44A798D70E7F0EB7BA347652F4341221A5BDAE_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:97>
|
|
String_t* L_2 = ___0_value;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:98>
|
|
if ((((int32_t)L_3) <= ((int32_t)((int32_t)256))))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:99>
|
|
String_t* L_4 = ___0_value;
|
|
int32_t L_5 = ((int32_t)256);
|
|
RuntimeObject* L_6 = Box(il2cpp_defaults.int32_class, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF43C565EB197642FD7A61215CD152E5223F84532)), L_4, L_6, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_8, L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&QueryPairedUserAccountCommand_set_id_mCA44A798D70E7F0EB7BA347652F4341221A5BDAE_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
U3CidBufferU3Ee__FixedBuffer_t8F8E3EAA210EF6DD3834C5C4E574ADC65AC6173A* L_9 = (U3CidBufferU3Ee__FixedBuffer_t8F8E3EAA210EF6DD3834C5C4E574ADC65AC6173A*)(&__this->___idBuffer);
|
|
uint8_t* L_10 = (uint8_t*)(&L_9->___FixedElementField);
|
|
V_1 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:101>
|
|
uint8_t* L_11 = V_1;
|
|
V_0 = (uint8_t*)((uintptr_t)L_11);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:103>
|
|
String_t* L_12 = ___0_value;
|
|
uint8_t* L_13 = V_0;
|
|
intptr_t L_14;
|
|
memset((&L_14), 0, sizeof(L_14));
|
|
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_14), (void*)L_13, NULL);
|
|
bool L_15;
|
|
L_15 = StringHelpers_WriteStringToBuffer_m3224AFFDC9D2D04E9112B8812CDEEC6FE363D66F(L_12, L_14, ((int32_t)256), NULL);
|
|
V_1 = (uint8_t*)((uintptr_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:105>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void QueryPairedUserAccountCommand_set_id_mCA44A798D70E7F0EB7BA347652F4341221A5BDAE_AdjustorThunk (RuntimeObject* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582*>(__this + _offset);
|
|
QueryPairedUserAccountCommand_set_id_mCA44A798D70E7F0EB7BA347652F4341221A5BDAE(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25420
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryPairedUserAccountCommand_get_name_m405A615F44272337724373D19F46B1258C18C856 (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:114>
|
|
U3CnameBufferU3Ee__FixedBuffer_tC07F8AB4DC191B8E7EAC20B6CAD62F5D165BB91B* L_0 = (U3CnameBufferU3Ee__FixedBuffer_tC07F8AB4DC191B8E7EAC20B6CAD62F5D165BB91B*)(&__this->___nameBuffer);
|
|
uint8_t* L_1 = (uint8_t*)(&L_0->___FixedElementField);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:115>
|
|
uint8_t* L_2 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:116>
|
|
intptr_t L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_3), (void*)((uintptr_t)L_2), NULL);
|
|
String_t* L_4;
|
|
L_4 = StringHelpers_ReadStringFromBuffer_m2D73BEC46047561991586041C6195B9CC776DA0D(L_3, ((int32_t)256), NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* QueryPairedUserAccountCommand_get_name_m405A615F44272337724373D19F46B1258C18C856_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = QueryPairedUserAccountCommand_get_name_m405A615F44272337724373D19F46B1258C18C856(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25421
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueryPairedUserAccountCommand_set_name_m4C8CBE6D10186933B46DB10B494E21213805B37A (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
uint8_t* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:120>
|
|
String_t* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:121>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&QueryPairedUserAccountCommand_set_name_m4C8CBE6D10186933B46DB10B494E21213805B37A_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:122>
|
|
String_t* L_2 = ___0_value;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:123>
|
|
if ((((int32_t)L_3) <= ((int32_t)((int32_t)256))))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:124>
|
|
String_t* L_4 = ___0_value;
|
|
int32_t L_5 = ((int32_t)256);
|
|
RuntimeObject* L_6 = Box(il2cpp_defaults.int32_class, &L_5);
|
|
String_t* L_7;
|
|
L_7 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral30C9A4CE48482CFCCFE484E0EF36FF8844DDAE6E)), L_4, L_6, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_8, L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&QueryPairedUserAccountCommand_set_name_m4C8CBE6D10186933B46DB10B494E21213805B37A_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
U3CnameBufferU3Ee__FixedBuffer_tC07F8AB4DC191B8E7EAC20B6CAD62F5D165BB91B* L_9 = (U3CnameBufferU3Ee__FixedBuffer_tC07F8AB4DC191B8E7EAC20B6CAD62F5D165BB91B*)(&__this->___nameBuffer);
|
|
uint8_t* L_10 = (uint8_t*)(&L_9->___FixedElementField);
|
|
V_1 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:126>
|
|
uint8_t* L_11 = V_1;
|
|
V_0 = (uint8_t*)((uintptr_t)L_11);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:128>
|
|
String_t* L_12 = ___0_value;
|
|
uint8_t* L_13 = V_0;
|
|
intptr_t L_14;
|
|
memset((&L_14), 0, sizeof(L_14));
|
|
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_14), (void*)L_13, NULL);
|
|
bool L_15;
|
|
L_15 = StringHelpers_WriteStringToBuffer_m3224AFFDC9D2D04E9112B8812CDEEC6FE363D66F(L_12, L_14, ((int32_t)256), NULL);
|
|
V_1 = (uint8_t*)((uintptr_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:130>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void QueryPairedUserAccountCommand_set_name_m4C8CBE6D10186933B46DB10B494E21213805B37A_AdjustorThunk (RuntimeObject* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582*>(__this + _offset);
|
|
QueryPairedUserAccountCommand_set_name_m4C8CBE6D10186933B46DB10B494E21213805B37A(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25422
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryPairedUserAccountCommand_get_typeStatic_mD6966C188315C0D8C6AF75D21C3FA053ED4EF3CC (QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:133>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QueryPairedUserAccountCommand_get_Type_m44803FA194663CC41EEE3C7EF7498C07992AFED5(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryPairedUserAccountCommand_get_typeStatic_mD6966C188315C0D8C6AF75D21C3FA053ED4EF3CC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = QueryPairedUserAccountCommand_get_typeStatic_mD6966C188315C0D8C6AF75D21C3FA053ED4EF3CC(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25423
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582 QueryPairedUserAccountCommand_Create_mD699C083C57921B9351687A695502FF1BA97E205 (const RuntimeMethod* method)
|
|
{
|
|
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:137>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:138>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:139>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryPairedUserAccountCommand.cs:140>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QueryPairedUserAccountCommand_get_Type_m44803FA194663CC41EEE3C7EF7498C07992AFED5(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)1040), NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
QueryPairedUserAccountCommand_t0E05ACE98295E34BA26542A994F2F66027E09582 L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25424
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QuerySamplingFrequencyCommand_get_Type_mA94B1820A73693A4F09714A60DCE94FD47727984 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QuerySamplingFrequencyCommand.cs:9>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)83), ((int32_t)77), ((int32_t)80), ((int32_t)76), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25425
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QuerySamplingFrequencyCommand_get_typeStatic_mC6E13673C19A972E625C2B37AD3881354663F096 (QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QuerySamplingFrequencyCommand.cs:21>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QuerySamplingFrequencyCommand_get_Type_mA94B1820A73693A4F09714A60DCE94FD47727984(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QuerySamplingFrequencyCommand_get_typeStatic_mC6E13673C19A972E625C2B37AD3881354663F096_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = QuerySamplingFrequencyCommand_get_typeStatic_mC6E13673C19A972E625C2B37AD3881354663F096(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25426
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA QuerySamplingFrequencyCommand_Create_m8A863E390A5F7AB5B521A20F6CD91C772AFA922B (const RuntimeMethod* method)
|
|
{
|
|
QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QuerySamplingFrequencyCommand.cs:26>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QuerySamplingFrequencyCommand.cs:27>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QuerySamplingFrequencyCommand.cs:28>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QuerySamplingFrequencyCommand.cs:29>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QuerySamplingFrequencyCommand_get_Type_mA94B1820A73693A4F09714A60DCE94FD47727984(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)12), NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
QuerySamplingFrequencyCommand_t4AC08C713EA92FEEDC2BCFBDBC4FB32C7E7E36CA L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25427
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryUserIdCommand_get_Type_mDC11398A8251D3A0A5C51FFEEBF3537FC8771964 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryUserIdCommand.cs:12>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)85), ((int32_t)83), ((int32_t)69), ((int32_t)82), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25428
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* QueryUserIdCommand_ReadId_m3BB974A34A9905F046569754836F889575C349AF (QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* __this, const RuntimeMethod* method)
|
|
{
|
|
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryUserIdCommand.cs:24>
|
|
V_0 = __this;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryUserIdCommand.cs:25>
|
|
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* L_0 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryUserIdCommand.cs:27>
|
|
U3CidBufferU3Ee__FixedBuffer_tE4CA52A47737D5043418F9D66A282E93248BF2BD* L_1 = (U3CidBufferU3Ee__FixedBuffer_tE4CA52A47737D5043418F9D66A282E93248BF2BD*)(&((QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD*)((uintptr_t)L_0))->___idBuffer);
|
|
uint8_t* L_2 = (uint8_t*)(&L_1->___FixedElementField);
|
|
intptr_t L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_3), (void*)((uintptr_t)L_2), NULL);
|
|
String_t* L_4;
|
|
L_4 = StringHelpers_ReadStringFromBuffer_m2D73BEC46047561991586041C6195B9CC776DA0D(L_3, ((int32_t)256), NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* QueryUserIdCommand_ReadId_m3BB974A34A9905F046569754836F889575C349AF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = QueryUserIdCommand_ReadId_m3BB974A34A9905F046569754836F889575C349AF(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25429
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryUserIdCommand_get_typeStatic_mC5794F2A38D12A8E38BD4EF3B30B6604AE183793 (QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryUserIdCommand.cs:33>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QueryUserIdCommand_get_Type_mDC11398A8251D3A0A5C51FFEEBF3537FC8771964(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED QueryUserIdCommand_get_typeStatic_mC5794F2A38D12A8E38BD4EF3B30B6604AE183793_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = QueryUserIdCommand_get_typeStatic_mC5794F2A38D12A8E38BD4EF3B30B6604AE183793(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25430
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD QueryUserIdCommand_Create_m02BD05F3617D5CCB31766E52153189A543F67477 (const RuntimeMethod* method)
|
|
{
|
|
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryUserIdCommand.cs:38>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryUserIdCommand.cs:39>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryUserIdCommand.cs:40>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/QueryUserIdCommand.cs:41>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = QueryUserIdCommand_get_Type_mDC11398A8251D3A0A5C51FFEEBF3537FC8771964(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)520), NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
QueryUserIdCommand_t163DCC35DCA11E44183A1A0234919417C005B5CD L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25431
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestResetCommand_get_Type_mBFCCB98A93084DE3F0D4D1C63EF39D994639862B (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/RequestResetCommand.cs:16>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)82), ((int32_t)83), ((int32_t)69), ((int32_t)84), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25432
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestResetCommand_get_typeStatic_m682DBD857C38B26B39B9679C35C98A2AE5B3C0DC (RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/RequestResetCommand.cs:23>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = RequestResetCommand_get_Type_mBFCCB98A93084DE3F0D4D1C63EF39D994639862B(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestResetCommand_get_typeStatic_m682DBD857C38B26B39B9679C35C98A2AE5B3C0DC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = RequestResetCommand_get_typeStatic_m682DBD857C38B26B39B9679C35C98A2AE5B3C0DC(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25433
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968 RequestResetCommand_Create_m7B9F7F083BB993038D340C252D45D2BFD65B1664 (const RuntimeMethod* method)
|
|
{
|
|
RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/RequestResetCommand.cs:27>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/RequestResetCommand.cs:28>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/RequestResetCommand.cs:29>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/RequestResetCommand.cs:30>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = RequestResetCommand_get_Type_mBFCCB98A93084DE3F0D4D1C63EF39D994639862B(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, 8, NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
RequestResetCommand_tE0530BE3081FF0C347BA0BCAFF3D88F34DED4968 L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25434
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestSyncCommand_get_Type_mED04D668D73150BA972012E47FFC6E4E91C2E7D7 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/RequestSyncCommand.cs:16>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)83), ((int32_t)89), ((int32_t)78), ((int32_t)67), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25435
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestSyncCommand_get_typeStatic_m27687F65BCDB472A0D9BE03B1D60C602913172A2 (RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/RequestSyncCommand.cs:23>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = RequestSyncCommand_get_Type_mED04D668D73150BA972012E47FFC6E4E91C2E7D7(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED RequestSyncCommand_get_typeStatic_m27687F65BCDB472A0D9BE03B1D60C602913172A2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = RequestSyncCommand_get_typeStatic_m27687F65BCDB472A0D9BE03B1D60C602913172A2(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25436
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8 RequestSyncCommand_Create_m1CEF0BDAA25EB7714FF72C82CBD073E5FFE2363A (const RuntimeMethod* method)
|
|
{
|
|
RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/RequestSyncCommand.cs:27>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/RequestSyncCommand.cs:28>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/RequestSyncCommand.cs:29>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/RequestSyncCommand.cs:30>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = RequestSyncCommand_get_Type_mED04D668D73150BA972012E47FFC6E4E91C2E7D7(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, 8, NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
RequestSyncCommand_t3766C746434641EF91025D272D9A53B4DF5387B8 L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25437
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetIMECursorPositionCommand_get_Type_mB8A471D0593D8F1497D2280D4271B5A2B56783CC (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetIMECursorPositionCommand.cs:13>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)73), ((int32_t)77), ((int32_t)69), ((int32_t)80), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25438
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 SetIMECursorPositionCommand_get_position_m50765F077E0164B5205064B7A1B141F2C81C085C (SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetIMECursorPositionCommand.cs:22>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_Position;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 SetIMECursorPositionCommand_get_position_m50765F077E0164B5205064B7A1B141F2C81C085C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46*>(__this + _offset);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
|
|
_returnValue = SetIMECursorPositionCommand_get_position_m50765F077E0164B5205064B7A1B141F2C81C085C_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25439
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetIMECursorPositionCommand_get_typeStatic_m99FCCDF1E9DA6575073F31F84C0B670340281D02 (SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetIMECursorPositionCommand.cs:30>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = SetIMECursorPositionCommand_get_Type_mB8A471D0593D8F1497D2280D4271B5A2B56783CC(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetIMECursorPositionCommand_get_typeStatic_m99FCCDF1E9DA6575073F31F84C0B670340281D02_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = SetIMECursorPositionCommand_get_typeStatic_m99FCCDF1E9DA6575073F31F84C0B670340281D02(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25440
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46 SetIMECursorPositionCommand_Create_mB7AEE0A2411BC7E167B99F614D12D2AADFC2E34A (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_cursorPosition, const RuntimeMethod* method)
|
|
{
|
|
SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetIMECursorPositionCommand.cs:35>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetIMECursorPositionCommand.cs:36>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetIMECursorPositionCommand.cs:37>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetIMECursorPositionCommand.cs:38>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetIMECursorPositionCommand.cs:39>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = SetIMECursorPositionCommand_get_Type_mB8A471D0593D8F1497D2280D4271B5A2B56783CC(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)16), NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___0_cursorPosition;
|
|
(&V_0)->___m_Position = L_2;
|
|
SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46 L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25441
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetSamplingFrequencyCommand_get_Type_m31A3BC9DC7519D60876AD367992CAF8642960739 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetSamplingFrequencyCommand.cs:15>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)83), ((int32_t)83), ((int32_t)80), ((int32_t)76), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25442
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetSamplingFrequencyCommand_get_typeStatic_mD878C128408D8125024D0C962C3AE58BBF44780A (SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetSamplingFrequencyCommand.cs:27>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = SetSamplingFrequencyCommand_get_Type_m31A3BC9DC7519D60876AD367992CAF8642960739(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED SetSamplingFrequencyCommand_get_typeStatic_mD878C128408D8125024D0C962C3AE58BBF44780A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = SetSamplingFrequencyCommand_get_typeStatic_mD878C128408D8125024D0C962C3AE58BBF44780A(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25443
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88 SetSamplingFrequencyCommand_Create_m926845CF089450028AB95F980E1538B7E75A1F6D (float ___0_frequency, const RuntimeMethod* method)
|
|
{
|
|
SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetSamplingFrequencyCommand.cs:32>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetSamplingFrequencyCommand.cs:33>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetSamplingFrequencyCommand.cs:34>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetSamplingFrequencyCommand.cs:35>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetSamplingFrequencyCommand.cs:36>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = SetSamplingFrequencyCommand_get_Type_m31A3BC9DC7519D60876AD367992CAF8642960739(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)12), NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
float L_2 = ___0_frequency;
|
|
(&V_0)->___frequency = L_2;
|
|
SetSamplingFrequencyCommand_t2629221ED175F235C8221C64640B3737AF751D88 L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25444
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED WarpMousePositionCommand_get_Type_m96B4AE75DD0E2509966E4C723E5B3C5CA6F3135A (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/WarpMousePositionCommand.cs:9>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)87), ((int32_t)80), ((int32_t)77), ((int32_t)83), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25445
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED WarpMousePositionCommand_get_typeStatic_m7C173947D66A532E7F49ED7B48898BEB1529E56A (WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/WarpMousePositionCommand.cs:21>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = WarpMousePositionCommand_get_Type_m96B4AE75DD0E2509966E4C723E5B3C5CA6F3135A(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED WarpMousePositionCommand_get_typeStatic_m7C173947D66A532E7F49ED7B48898BEB1529E56A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = WarpMousePositionCommand_get_typeStatic_m7C173947D66A532E7F49ED7B48898BEB1529E56A(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25446
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0 WarpMousePositionCommand_Create_m39A1846CF1D388004F229D0C66600059A422636F (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_position, const RuntimeMethod* method)
|
|
{
|
|
WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/WarpMousePositionCommand.cs:26>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/WarpMousePositionCommand.cs:27>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/WarpMousePositionCommand.cs:28>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/WarpMousePositionCommand.cs:29>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/WarpMousePositionCommand.cs:30>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = WarpMousePositionCommand_get_Type_m96B4AE75DD0E2509966E4C723E5B3C5CA6F3135A(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)16), NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___0_position;
|
|
(&V_0)->___warpPositionInPlayerDisplaySpace = L_2;
|
|
WarpMousePositionCommand_t7E08561BB4C9C77F171BACDCE2D71E8B7BA79FB0 L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25447
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GamepadState_get_Format_m10C6A4E403B15DB3F5EC44F8D825D00FC19F3A2B (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:82>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)71), ((int32_t)80), ((int32_t)65), ((int32_t)68), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25448
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GamepadState_get_format_mF617D1EE8D57686B6BAEAA2AF8BF1F6BDAC5E1CF (GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:181>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = GamepadState_get_Format_m10C6A4E403B15DB3F5EC44F8D825D00FC19F3A2B(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GamepadState_get_format_mF617D1EE8D57686B6BAEAA2AF8BF1F6BDAC5E1CF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = GamepadState_get_format_mF617D1EE8D57686B6BAEAA2AF8BF1F6BDAC5E1CF(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25449
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GamepadState__ctor_mD69F20EFA852648DFB4A97AC8B91692FBA793373 (GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* __this, GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* ___0_buttons, const RuntimeMethod* method)
|
|
{
|
|
GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
uint32_t V_3 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:189>
|
|
il2cpp_codegen_initobj(__this, sizeof(GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:191>
|
|
GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* L_0 = ___0_buttons;
|
|
if (L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:192>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2E967EC47C0181B3A2E25F28AF8F0061B4E2A296)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GamepadState__ctor_mD69F20EFA852648DFB4A97AC8B91692FBA793373_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:194>
|
|
GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* L_2 = ___0_buttons;
|
|
V_0 = L_2;
|
|
V_1 = 0;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:194>
|
|
GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* L_3 = V_0;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
int32_t L_6 = (int32_t)(L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
V_2 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:197>
|
|
int32_t L_7 = V_2;
|
|
V_3 = ((int32_t)(1<<((int32_t)((int32_t)L_7&((int32_t)31)))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:198>
|
|
uint32_t L_8 = __this->___buttons;
|
|
uint32_t L_9 = V_3;
|
|
__this->___buttons = ((int32_t)((int32_t)L_8|(int32_t)L_9));
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:194>
|
|
int32_t L_11 = V_1;
|
|
GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* L_12 = V_0;
|
|
NullCheck(L_12);
|
|
if ((((int32_t)L_11) < ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:200>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void GamepadState__ctor_mD69F20EFA852648DFB4A97AC8B91692FBA793373_AdjustorThunk (RuntimeObject* __this, GamepadButtonU5BU5D_t3E19FA8DC50C271DC9FE0EB267FC730CA80BD2C6* ___0_buttons, const RuntimeMethod* method)
|
|
{
|
|
GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1*>(__this + _offset);
|
|
GamepadState__ctor_mD69F20EFA852648DFB4A97AC8B91692FBA793373(_thisAdjusted, ___0_buttons, method);
|
|
}
|
|
// Method Definition Index: 25450
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1 GamepadState_WithButton_m61BE4689DE621A285913BC0BD69D0560DBBD91DF (GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* __this, int32_t ___0_button, bool ___1_value, const RuntimeMethod* method)
|
|
{
|
|
uint32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:212>
|
|
int32_t L_0 = ___0_button;
|
|
V_0 = ((int32_t)(1<<((int32_t)((int32_t)L_0&((int32_t)31)))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:213>
|
|
bool L_1 = ___1_value;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:214>
|
|
uint32_t L_2 = __this->___buttons;
|
|
uint32_t L_3 = V_0;
|
|
__this->___buttons = ((int32_t)((int32_t)L_2|(int32_t)L_3));
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:216>
|
|
uint32_t L_4 = __this->___buttons;
|
|
uint32_t L_5 = V_0;
|
|
__this->___buttons = ((int32_t)((int32_t)L_4&((~((int32_t)L_5)))));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:217>
|
|
GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1 L_6 = (*(GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1*)__this);
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1 GamepadState_WithButton_m61BE4689DE621A285913BC0BD69D0560DBBD91DF_AdjustorThunk (RuntimeObject* __this, int32_t ___0_button, bool ___1_value, const RuntimeMethod* method)
|
|
{
|
|
GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1*>(__this + _offset);
|
|
GamepadState_t67129410D0628817FD6E93A77307E84CA41BA5B1 _returnValue;
|
|
_returnValue = GamepadState_WithButton_m61BE4689DE621A285913BC0BD69D0560DBBD91DF(_thisAdjusted, ___0_button, ___1_value, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25451
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DualMotorRumbleCommand_get_Type_mAD127730406B6F876EDEB19A8761419054E40ED7 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumbleCommand.cs:9>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)82), ((int32_t)77), ((int32_t)66), ((int32_t)76), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25452
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DualMotorRumbleCommand_get_typeStatic_mEDF2C976B44C2BB0C0C0271CC56391992AF37C2D (DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumbleCommand.cs:24>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = DualMotorRumbleCommand_get_Type_mAD127730406B6F876EDEB19A8761419054E40ED7(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DualMotorRumbleCommand_get_typeStatic_mEDF2C976B44C2BB0C0C0271CC56391992AF37C2D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = DualMotorRumbleCommand_get_typeStatic_mEDF2C976B44C2BB0C0C0271CC56391992AF37C2D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25453
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E DualMotorRumbleCommand_Create_m92353364BF75EDF5FBE7AF9ED0F136F4E74538A6 (float ___0_lowFrequency, float ___1_highFrequency, const RuntimeMethod* method)
|
|
{
|
|
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumbleCommand.cs:29>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumbleCommand.cs:30>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumbleCommand.cs:31>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumbleCommand.cs:32>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumbleCommand.cs:33>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumbleCommand.cs:34>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = DualMotorRumbleCommand_get_Type_mAD127730406B6F876EDEB19A8761419054E40ED7(NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputDeviceCommand__ctor_m2782FEC7CC073D375910E91EBFA992FAD238FC01((&L_1), L_0, ((int32_t)16), NULL);
|
|
(&V_0)->___baseCommand = L_1;
|
|
float L_2 = ___0_lowFrequency;
|
|
(&V_0)->___lowFrequencyMotorSpeed = L_2;
|
|
float L_3 = ___1_highFrequency;
|
|
(&V_0)->___highFrequencyMotorSpeed = L_3;
|
|
DualMotorRumbleCommand_t75FFA626B609E72A4FA3A861A77A90416477ED3E L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25460
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED JoystickState_get_kFormat_mB35BC874893BA099ACA62F6A7B49994988DA221A (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Joystick.cs:10>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)74), ((int32_t)79), ((int32_t)89), ((int32_t)32), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25461
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED JoystickState_get_format_mEDDE745E9821149E8287DA5EA621814B832088E2 (JoystickState_t03D95BB2BA3497FA34F7F2C395126FE079DBAD23* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Joystick.cs:29>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = JoystickState_get_kFormat_mB35BC874893BA099ACA62F6A7B49994988DA221A(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED JoystickState_get_format_mEDDE745E9821149E8287DA5EA621814B832088E2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
JoystickState_t03D95BB2BA3497FA34F7F2C395126FE079DBAD23* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<JoystickState_t03D95BB2BA3497FA34F7F2C395126FE079DBAD23*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = JoystickState_get_format_mEDDE745E9821149E8287DA5EA621814B832088E2(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25462
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED KeyboardState_get_Format_mE0B5DE1F97B5462ACD54D45ABD419E7B5C6B824C (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:47>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)75), ((int32_t)69), ((int32_t)89), ((int32_t)83), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25463
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState__ctor_m06346BD84C3DE0C9392359B3ABC584E7B0ED9E0C (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* ___0_pressedKeys, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:190>
|
|
KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* L_0 = ___0_pressedKeys;
|
|
KeyboardState__ctor_m154082608F16AC4438753E4814D9BA61AA3EB2D2(__this, (bool)0, L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:192>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void KeyboardState__ctor_m06346BD84C3DE0C9392359B3ABC584E7B0ED9E0C_AdjustorThunk (RuntimeObject* __this, KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* ___0_pressedKeys, const RuntimeMethod* method)
|
|
{
|
|
KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E*>(__this + _offset);
|
|
KeyboardState__ctor_m06346BD84C3DE0C9392359B3ABC584E7B0ED9E0C(_thisAdjusted, ___0_pressedKeys, method);
|
|
}
|
|
// Method Definition Index: 25464
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState__ctor_m154082608F16AC4438753E4814D9BA61AA3EB2D2 (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, bool ___0_IMESelected, KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* ___1_pressedKeys, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
uint8_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:202>
|
|
KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* L_0 = ___1_pressedKeys;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:203>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE94EF447B7CA22BD133EBC24A4C29384FD843DB0)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyboardState__ctor_m154082608F16AC4438753E4814D9BA61AA3EB2D2_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
U3CkeysU3Ee__FixedBuffer_t042985C8A4742730483B7863D903A899805230F3* L_2 = (U3CkeysU3Ee__FixedBuffer_t042985C8A4742730483B7863D903A899805230F3*)(&__this->___keys);
|
|
uint8_t* L_3 = (uint8_t*)(&L_2->___FixedElementField);
|
|
V_1 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:204>
|
|
uint8_t* L_4 = V_1;
|
|
V_0 = (uint8_t*)((uintptr_t)L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:206>
|
|
uint8_t* L_5 = V_0;
|
|
UnsafeUtility_MemClear_m6C4377117084A11A667A567BC2F5E606A632A7C1((void*)L_5, ((int64_t)((int32_t)16)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:208>
|
|
bool L_6 = ___0_IMESelected;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:210>
|
|
uint8_t* L_7 = V_0;
|
|
MemoryHelpers_WriteSingleBit_m6FB3C85EBB9DDA18339E225887E933F17A7408EB((void*)L_7, ((int32_t)111), (bool)1, NULL);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:213>
|
|
V_2 = 0;
|
|
goto IL_0044;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:214>
|
|
uint8_t* L_8 = V_0;
|
|
KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* L_9 = ___1_pressedKeys;
|
|
int32_t L_10 = V_2;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
int32_t L_12 = (int32_t)(L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
MemoryHelpers_WriteSingleBit_m6FB3C85EBB9DDA18339E225887E933F17A7408EB((void*)L_8, L_12, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:213>
|
|
int32_t L_13 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:213>
|
|
int32_t L_14 = V_2;
|
|
KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* L_15 = ___1_pressedKeys;
|
|
NullCheck(L_15);
|
|
if ((((int32_t)L_14) < ((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (uint8_t*)((uintptr_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:216>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void KeyboardState__ctor_m154082608F16AC4438753E4814D9BA61AA3EB2D2_AdjustorThunk (RuntimeObject* __this, bool ___0_IMESelected, KeyU5BU5D_t36B88478D8047AEA42192694C4CC174C4DC9854A* ___1_pressedKeys, const RuntimeMethod* method)
|
|
{
|
|
KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E*>(__this + _offset);
|
|
KeyboardState__ctor_m154082608F16AC4438753E4814D9BA61AA3EB2D2(_thisAdjusted, ___0_IMESelected, ___1_pressedKeys, method);
|
|
}
|
|
// Method Definition Index: 25465
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState_Set_m0F5B5B6EC7F702F695F0F03B71E19EF450EC3D9C (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, int32_t ___0_key, bool ___1_state, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:219>
|
|
U3CkeysU3Ee__FixedBuffer_t042985C8A4742730483B7863D903A899805230F3* L_0 = (U3CkeysU3Ee__FixedBuffer_t042985C8A4742730483B7863D903A899805230F3*)(&__this->___keys);
|
|
uint8_t* L_1 = (uint8_t*)(&L_0->___FixedElementField);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:220>
|
|
uint8_t* L_2 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:221>
|
|
int32_t L_3 = ___0_key;
|
|
bool L_4 = ___1_state;
|
|
MemoryHelpers_WriteSingleBit_m6FB3C85EBB9DDA18339E225887E933F17A7408EB((void*)((uintptr_t)L_2), L_3, L_4, NULL);
|
|
V_0 = (uint8_t*)((uintptr_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:222>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void KeyboardState_Set_m0F5B5B6EC7F702F695F0F03B71E19EF450EC3D9C_AdjustorThunk (RuntimeObject* __this, int32_t ___0_key, bool ___1_state, const RuntimeMethod* method)
|
|
{
|
|
KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E*>(__this + _offset);
|
|
KeyboardState_Set_m0F5B5B6EC7F702F695F0F03B71E19EF450EC3D9C(_thisAdjusted, ___0_key, ___1_state, method);
|
|
}
|
|
// Method Definition Index: 25466
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool KeyboardState_Get_mD77C19D6F340B7A06BB9C33058A7F8BD65BDBB44 (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, int32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:225>
|
|
U3CkeysU3Ee__FixedBuffer_t042985C8A4742730483B7863D903A899805230F3* L_0 = (U3CkeysU3Ee__FixedBuffer_t042985C8A4742730483B7863D903A899805230F3*)(&__this->___keys);
|
|
uint8_t* L_1 = (uint8_t*)(&L_0->___FixedElementField);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:226>
|
|
uint8_t* L_2 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:228>
|
|
int32_t L_3 = ___0_key;
|
|
bool L_4;
|
|
L_4 = MemoryHelpers_ReadSingleBit_m2195F4D85BE5077C89B8C6DBA2C5A2D25F83CD57((void*)((uintptr_t)L_2), L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool KeyboardState_Get_mD77C19D6F340B7A06BB9C33058A7F8BD65BDBB44_AdjustorThunk (RuntimeObject* __this, int32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = KeyboardState_Get_mD77C19D6F340B7A06BB9C33058A7F8BD65BDBB44(_thisAdjusted, ___0_key, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25467
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState_Press_mB5882428AD8FD1CCD5A238215551DFEC3BA577A0 (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, int32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:234>
|
|
int32_t L_0 = ___0_key;
|
|
KeyboardState_Set_m0F5B5B6EC7F702F695F0F03B71E19EF450EC3D9C(__this, L_0, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:235>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void KeyboardState_Press_mB5882428AD8FD1CCD5A238215551DFEC3BA577A0_AdjustorThunk (RuntimeObject* __this, int32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E*>(__this + _offset);
|
|
KeyboardState_Press_mB5882428AD8FD1CCD5A238215551DFEC3BA577A0(_thisAdjusted, ___0_key, method);
|
|
}
|
|
// Method Definition Index: 25468
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardState_Release_m779EAACE3BB019436503948C3DEBAB7F7B7BCE1A (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, int32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:239>
|
|
int32_t L_0 = ___0_key;
|
|
KeyboardState_Set_m0F5B5B6EC7F702F695F0F03B71E19EF450EC3D9C(__this, L_0, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:240>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void KeyboardState_Release_m779EAACE3BB019436503948C3DEBAB7F7B7BCE1A_AdjustorThunk (RuntimeObject* __this, int32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E*>(__this + _offset);
|
|
KeyboardState_Release_m779EAACE3BB019436503948C3DEBAB7F7B7BCE1A(_thisAdjusted, ___0_key, method);
|
|
}
|
|
// Method Definition Index: 25469
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED KeyboardState_get_format_mD8CB0AA30DC616A09DC3152ED0342B2945DC43C9 (KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Keyboard.cs:242>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = KeyboardState_get_Format_mE0B5DE1F97B5462ACD54D45ABD419E7B5C6B824C(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED KeyboardState_get_format_mD8CB0AA30DC616A09DC3152ED0342B2945DC43C9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<KeyboardState_t0329332A3CC9A0DC406D9E4C59E2C3F1CCCAD28E*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = KeyboardState_get_format_mD8CB0AA30DC616A09DC3152ED0342B2945DC43C9(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25470
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED MouseState_get_Format_mF26144ED65F47F6A3DE5E19D5C8A21F5D1A840AE (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Mouse.cs:23>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)77), ((int32_t)79), ((int32_t)85), ((int32_t)83), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25471
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1 MouseState_WithButton_m97B000A09778AED62A2DB09058C31318CFDA479E (MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1* __this, int32_t ___0_button, bool ___1_state, const RuntimeMethod* method)
|
|
{
|
|
uint32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Mouse.cs:116>
|
|
int32_t L_0 = ___0_button;
|
|
V_0 = ((int32_t)(1<<((int32_t)((int32_t)L_0&((int32_t)31)))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Mouse.cs:117>
|
|
bool L_1 = ___1_state;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Mouse.cs:118>
|
|
uint16_t L_2 = __this->___buttons;
|
|
uint32_t L_3 = V_0;
|
|
__this->___buttons = (uint16_t)((int32_t)(uint16_t)((int32_t)((int32_t)L_2|((int32_t)(uint16_t)L_3))));
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Mouse.cs:120>
|
|
uint16_t L_4 = __this->___buttons;
|
|
uint32_t L_5 = V_0;
|
|
__this->___buttons = (uint16_t)((int32_t)(uint16_t)((int32_t)((int32_t)L_4&((int32_t)(uint16_t)((~((int32_t)L_5)))))));
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Mouse.cs:121>
|
|
MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1 L_6 = (*(MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1*)__this);
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1 MouseState_WithButton_m97B000A09778AED62A2DB09058C31318CFDA479E_AdjustorThunk (RuntimeObject* __this, int32_t ___0_button, bool ___1_state, const RuntimeMethod* method)
|
|
{
|
|
MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1*>(__this + _offset);
|
|
MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1 _returnValue;
|
|
_returnValue = MouseState_WithButton_m97B000A09778AED62A2DB09058C31318CFDA479E(_thisAdjusted, ___0_button, ___1_state, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25472
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED MouseState_get_format_m4E1CACEDD70E431F2B4F122FBF9790D61523E160 (MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Mouse.cs:128>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = MouseState_get_Format_mF26144ED65F47F6A3DE5E19D5C8A21F5D1A840AE(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED MouseState_get_format_m4E1CACEDD70E431F2B4F122FBF9790D61523E160_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<MouseState_t0D9AD9D7629CA3F363E7C2AFD710A11D965408E1*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = MouseState_get_format_m4E1CACEDD70E431F2B4F122FBF9790D61523E160(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25473
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PenState_get_Format_m9259B29BFA0F5EE072663FDEC63C32B852B128E8 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Pen.cs:31>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)80), ((int32_t)69), ((int32_t)78), ((int32_t)32), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25474
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144 PenState_WithButton_mE073BEA72B2BF7B87BC1E31B171A71207A876652 (PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144* __this, int32_t ___0_button, bool ___1_state, const RuntimeMethod* method)
|
|
{
|
|
uint32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Pen.cs:117>
|
|
int32_t L_0 = ___0_button;
|
|
V_0 = ((int32_t)(1<<((int32_t)((int32_t)L_0&((int32_t)31)))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Pen.cs:118>
|
|
bool L_1 = ___1_state;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Pen.cs:119>
|
|
uint16_t L_2 = __this->___buttons;
|
|
uint32_t L_3 = V_0;
|
|
__this->___buttons = (uint16_t)((int32_t)(uint16_t)((int32_t)((int32_t)L_2|((int32_t)(uint16_t)L_3))));
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Pen.cs:121>
|
|
uint16_t L_4 = __this->___buttons;
|
|
uint32_t L_5 = V_0;
|
|
__this->___buttons = (uint16_t)((int32_t)(uint16_t)((int32_t)((int32_t)L_4&((int32_t)(uint16_t)((~((int32_t)L_5)))))));
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Pen.cs:122>
|
|
PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144 L_6 = (*(PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144*)__this);
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144 PenState_WithButton_mE073BEA72B2BF7B87BC1E31B171A71207A876652_AdjustorThunk (RuntimeObject* __this, int32_t ___0_button, bool ___1_state, const RuntimeMethod* method)
|
|
{
|
|
PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144*>(__this + _offset);
|
|
PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144 _returnValue;
|
|
_returnValue = PenState_WithButton_mE073BEA72B2BF7B87BC1E31B171A71207A876652(_thisAdjusted, ___0_button, ___1_state, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25475
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PenState_get_format_m8B58953CF86A69E6AEAD9670C02822A400FB2DCF (PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Pen.cs:126>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = PenState_get_Format_m9259B29BFA0F5EE072663FDEC63C32B852B128E8(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PenState_get_format_m8B58953CF86A69E6AEAD9670C02822A400FB2DCF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<PenState_t3F58DE5AE5474B877BE31169449DFB4ED6331144*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = PenState_get_format_m8B58953CF86A69E6AEAD9670C02822A400FB2DCF(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25476
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PointerState_get_kFormat_m6C5521A8BDE6EB0B106686BB3E1571C96E9B2741 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Pointer.cs:36>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)80), ((int32_t)84), ((int32_t)82), ((int32_t)32), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25477
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PointerState_get_format_mC5180FCEAE996C3D5E43E1A77174886E49F4EBEA (PointerState_t3BD79772D06D5CC227EBE757B27F8262EB46A919* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Pointer.cs:66>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = PointerState_get_kFormat_m6C5521A8BDE6EB0B106686BB3E1571C96E9B2741(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED PointerState_get_format_mC5180FCEAE996C3D5E43E1A77174886E49F4EBEA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
PointerState_t3BD79772D06D5CC227EBE757B27F8262EB46A919* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<PointerState_t3BD79772D06D5CC227EBE757B27F8262EB46A919*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = PointerState_get_format_mC5180FCEAE996C3D5E43E1A77174886E49F4EBEA(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25478
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AccelerometerState_get_kFormat_mA36F0610529BA98558BEFEEA1CEB010A667C7664 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Sensor.cs:16>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)65), ((int32_t)67), ((int32_t)67), ((int32_t)76), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25479
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AccelerometerState_get_format_m8417A35B21D4D21382BAA3E099EB81FA6A681290 (AccelerometerState_tBC7006B5431DF59DC2A9AF2E08FD06674EA8372A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Sensor.cs:21>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = AccelerometerState_get_kFormat_mA36F0610529BA98558BEFEEA1CEB010A667C7664(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AccelerometerState_get_format_m8417A35B21D4D21382BAA3E099EB81FA6A681290_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
AccelerometerState_tBC7006B5431DF59DC2A9AF2E08FD06674EA8372A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<AccelerometerState_tBC7006B5431DF59DC2A9AF2E08FD06674EA8372A*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = AccelerometerState_get_format_m8417A35B21D4D21382BAA3E099EB81FA6A681290(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25480
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GyroscopeState_get_kFormat_m4EA13F15BEBBC929DB6AFAFE2DB12D6DC1E51E0D (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Sensor.cs:26>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)71), ((int32_t)89), ((int32_t)82), ((int32_t)79), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25481
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GyroscopeState_get_format_m04C008EEC0A8E98488D68D7DB508D03F4D40CB6D (GyroscopeState_t6C1BC700557D943111882E3634CA7411EE531B87* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Sensor.cs:31>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = GyroscopeState_get_kFormat_m4EA13F15BEBBC929DB6AFAFE2DB12D6DC1E51E0D(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GyroscopeState_get_format_m04C008EEC0A8E98488D68D7DB508D03F4D40CB6D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
GyroscopeState_t6C1BC700557D943111882E3634CA7411EE531B87* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<GyroscopeState_t6C1BC700557D943111882E3634CA7411EE531B87*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = GyroscopeState_get_format_m04C008EEC0A8E98488D68D7DB508D03F4D40CB6D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25482
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GravityState_get_kFormat_mA940D0FAD178A87388C4A75F88D3DB41B2842662 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Sensor.cs:36>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)71), ((int32_t)82), ((int32_t)86), ((int32_t)32), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25483
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GravityState_get_format_mACAC4174A37C72A4229268A765EA95B60CD1EE1D (GravityState_tD607A716F9E0D00477CECC5C019929633E66ACFF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Sensor.cs:41>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = GravityState_get_kFormat_mA940D0FAD178A87388C4A75F88D3DB41B2842662(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED GravityState_get_format_mACAC4174A37C72A4229268A765EA95B60CD1EE1D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
GravityState_tD607A716F9E0D00477CECC5C019929633E66ACFF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<GravityState_tD607A716F9E0D00477CECC5C019929633E66ACFF*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = GravityState_get_format_mACAC4174A37C72A4229268A765EA95B60CD1EE1D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25484
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AttitudeState_get_kFormat_m2CF2884AE8CBAC5F08B7A4229B4190CC48D04552 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Sensor.cs:46>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)65), ((int32_t)84), ((int32_t)84), ((int32_t)68), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25485
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AttitudeState_get_format_mE181225DD179C3C77FBE1996F22C2B858C2620A8 (AttitudeState_tE01F02CAD17A08F2D35660E017437AC72BC45745* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Sensor.cs:51>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = AttitudeState_get_kFormat_m2CF2884AE8CBAC5F08B7A4229B4190CC48D04552(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED AttitudeState_get_format_mE181225DD179C3C77FBE1996F22C2B858C2620A8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
AttitudeState_tE01F02CAD17A08F2D35660E017437AC72BC45745* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<AttitudeState_tE01F02CAD17A08F2D35660E017437AC72BC45745*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = AttitudeState_get_format_mE181225DD179C3C77FBE1996F22C2B858C2620A8(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25486
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED LinearAccelerationState_get_kFormat_mBE3CCC46BAEA98A317E165C1F0E8DA3E1FAB1775 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Sensor.cs:56>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)76), ((int32_t)65), ((int32_t)65), ((int32_t)67), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25487
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED LinearAccelerationState_get_format_m082958E987DDE7BCF30BEB84C1A2C8F2EB0D2A8A (LinearAccelerationState_tD14025B444097A9A3CA0B3ADBA153C775A316F24* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Sensor.cs:61>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = LinearAccelerationState_get_kFormat_mBE3CCC46BAEA98A317E165C1F0E8DA3E1FAB1775(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED LinearAccelerationState_get_format_m082958E987DDE7BCF30BEB84C1A2C8F2EB0D2A8A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
LinearAccelerationState_tD14025B444097A9A3CA0B3ADBA153C775A316F24* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<LinearAccelerationState_tD14025B444097A9A3CA0B3ADBA153C775A316F24*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = LinearAccelerationState_get_format_m082958E987DDE7BCF30BEB84C1A2C8F2EB0D2A8A(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25488
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchState_get_Format_mE473D3097A050EF38348C8E25E6C5A19D0C034C0 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:77>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)84), ((int32_t)79), ((int32_t)85), ((int32_t)67), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25489
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:214>
|
|
uint8_t L_0 = __this->___phaseId;
|
|
return (int32_t)(L_0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25490
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_phase_mCC48A355F50B41E745BDCE383BD083A69BD8644A (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:215>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___phaseId = (uint8_t)((int32_t)(uint8_t)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TouchState_set_phase_mCC48A355F50B41E745BDCE383BD083A69BD8644A_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
TouchState_set_phase_mCC48A355F50B41E745BDCE383BD083A69BD8644A(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25491
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isNoneEndedOrCanceled_mC2000BF710D7EDFC3590D18253215FCA67E3F464 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:218>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:219>
|
|
int32_t L_0;
|
|
L_0 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1;
|
|
L_1 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(__this, NULL);
|
|
if ((((int32_t)L_1) == ((int32_t)3)))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(__this, NULL);
|
|
return (bool)((((int32_t)L_2) == ((int32_t)4))? 1 : 0);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TouchState_get_isNoneEndedOrCanceled_mC2000BF710D7EDFC3590D18253215FCA67E3F464_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TouchState_get_isNoneEndedOrCanceled_mC2000BF710D7EDFC3590D18253215FCA67E3F464(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25492
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isInProgress_mF14BA2786F207B08DA487C4FD9F010F85107D902 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:220>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:221>
|
|
int32_t L_0;
|
|
L_0 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(__this, NULL);
|
|
if ((((int32_t)L_0) == ((int32_t)1)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1;
|
|
L_1 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(__this, NULL);
|
|
if ((((int32_t)L_1) == ((int32_t)2)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(__this, NULL);
|
|
return (bool)((((int32_t)L_2) == ((int32_t)5))? 1 : 0);
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TouchState_get_isInProgress_mF14BA2786F207B08DA487C4FD9F010F85107D902_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TouchState_get_isInProgress_mF14BA2786F207B08DA487C4FD9F010F85107D902(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25493
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isPrimaryTouch_mC8E83D45028722D5456CB65A19C9DBB2B1DC8615 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:232>
|
|
uint8_t L_0 = __this->___flags;
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&8))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TouchState_get_isPrimaryTouch_mC8E83D45028722D5456CB65A19C9DBB2B1DC8615_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TouchState_get_isPrimaryTouch_mC8E83D45028722D5456CB65A19C9DBB2B1DC8615(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25494
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isPrimaryTouch_m6BB43521B2EDD8EFD435C5890590A51DE183AAA6 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:235>
|
|
bool L_0 = ___0_value;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:236>
|
|
uint8_t L_1 = __this->___flags;
|
|
__this->___flags = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_1|8)));
|
|
return;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:238>
|
|
uint8_t L_2 = __this->___flags;
|
|
__this->___flags = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_2&((int32_t)247))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:239>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TouchState_set_isPrimaryTouch_m6BB43521B2EDD8EFD435C5890590A51DE183AAA6_AdjustorThunk (RuntimeObject* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
TouchState_set_isPrimaryTouch_m6BB43521B2EDD8EFD435C5890590A51DE183AAA6(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25495
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isOrphanedPrimaryTouch_m692F6F3BB4886A4ADC7578416BDA2CF43190CEF5 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:244>
|
|
uint8_t L_0 = __this->___flags;
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)64)))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TouchState_get_isOrphanedPrimaryTouch_m692F6F3BB4886A4ADC7578416BDA2CF43190CEF5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TouchState_get_isOrphanedPrimaryTouch_m692F6F3BB4886A4ADC7578416BDA2CF43190CEF5(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25496
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isOrphanedPrimaryTouch_m2610EBB9B4DB8D920EC53D3785CD88C1537957D7 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:247>
|
|
bool L_0 = ___0_value;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:248>
|
|
uint8_t L_1 = __this->___flags;
|
|
__this->___flags = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_1|((int32_t)64))));
|
|
return;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:250>
|
|
uint8_t L_2 = __this->___flags;
|
|
__this->___flags = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_2&((int32_t)191))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:251>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TouchState_set_isOrphanedPrimaryTouch_m2610EBB9B4DB8D920EC53D3785CD88C1537957D7_AdjustorThunk (RuntimeObject* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
TouchState_set_isOrphanedPrimaryTouch_m2610EBB9B4DB8D920EC53D3785CD88C1537957D7(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25497
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isIndirectTouch_m5059A78582DBB4534309A43F49BD7DDC86DCB912 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:256>
|
|
uint8_t L_0 = __this->___flags;
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&1))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TouchState_get_isIndirectTouch_m5059A78582DBB4534309A43F49BD7DDC86DCB912_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TouchState_get_isIndirectTouch_m5059A78582DBB4534309A43F49BD7DDC86DCB912(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25498
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isIndirectTouch_m76D60019EA3E6AE3D32D41D7918E2F4D874D1CF4 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:259>
|
|
bool L_0 = ___0_value;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:260>
|
|
uint8_t L_1 = __this->___flags;
|
|
__this->___flags = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_1|1)));
|
|
return;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:262>
|
|
uint8_t L_2 = __this->___flags;
|
|
__this->___flags = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_2&((int32_t)254))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:263>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TouchState_set_isIndirectTouch_m76D60019EA3E6AE3D32D41D7918E2F4D874D1CF4_AdjustorThunk (RuntimeObject* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
TouchState_set_isIndirectTouch_m76D60019EA3E6AE3D32D41D7918E2F4D874D1CF4(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25499
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isTap_m6C2D3CC78A3AA9705CBFD2A9E817FCFD8AB25EFB (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:268>
|
|
bool L_0;
|
|
L_0 = TouchState_get_isTapPress_m76B3B03716530BC461CCDEE942D80B797A82D1FE(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TouchState_get_isTap_m6C2D3CC78A3AA9705CBFD2A9E817FCFD8AB25EFB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TouchState_get_isTap_m6C2D3CC78A3AA9705CBFD2A9E817FCFD8AB25EFB(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25500
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isTap_m31B4AEE4DC8A6CE2174728244C0A1D1539D30B15 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:269>
|
|
bool L_0 = ___0_value;
|
|
TouchState_set_isTapPress_m42BC799213916CA303DCE59FFCF3F39DF43F5642(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TouchState_set_isTap_m31B4AEE4DC8A6CE2174728244C0A1D1539D30B15_AdjustorThunk (RuntimeObject* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
TouchState_set_isTap_m31B4AEE4DC8A6CE2174728244C0A1D1539D30B15(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25501
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isTapPress_m76B3B03716530BC461CCDEE942D80B797A82D1FE (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:274>
|
|
uint8_t L_0 = __this->___flags;
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)16)))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TouchState_get_isTapPress_m76B3B03716530BC461CCDEE942D80B797A82D1FE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TouchState_get_isTapPress_m76B3B03716530BC461CCDEE942D80B797A82D1FE(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25502
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isTapPress_m42BC799213916CA303DCE59FFCF3F39DF43F5642 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:277>
|
|
bool L_0 = ___0_value;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:278>
|
|
uint8_t L_1 = __this->___flags;
|
|
__this->___flags = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_1|((int32_t)16))));
|
|
return;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:280>
|
|
uint8_t L_2 = __this->___flags;
|
|
__this->___flags = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_2&((int32_t)239))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:281>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TouchState_set_isTapPress_m42BC799213916CA303DCE59FFCF3F39DF43F5642_AdjustorThunk (RuntimeObject* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
TouchState_set_isTapPress_m42BC799213916CA303DCE59FFCF3F39DF43F5642(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25503
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_isTapRelease_m2330F3A5BFF42425B21423B2257619666A05CE7D (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:286>
|
|
uint8_t L_0 = __this->___flags;
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)32)))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TouchState_get_isTapRelease_m2330F3A5BFF42425B21423B2257619666A05CE7D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TouchState_get_isTapRelease_m2330F3A5BFF42425B21423B2257619666A05CE7D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25504
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_isTapRelease_m8CECE48CDFD6955A73D24CB052BF1BD8E506E178 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:289>
|
|
bool L_0 = ___0_value;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:290>
|
|
uint8_t L_1 = __this->___flags;
|
|
__this->___flags = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_1|((int32_t)32))));
|
|
return;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:292>
|
|
uint8_t L_2 = __this->___flags;
|
|
__this->___flags = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_2&((int32_t)223))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:293>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TouchState_set_isTapRelease_m8CECE48CDFD6955A73D24CB052BF1BD8E506E178_AdjustorThunk (RuntimeObject* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
TouchState_set_isTapRelease_m8CECE48CDFD6955A73D24CB052BF1BD8E506E178(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25505
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:298>
|
|
uint8_t L_0 = __this->___flags;
|
|
return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&((int32_t)128)))) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TouchState_get_beganInSameFrame_mC72ACA3EBA9BE5426C6B19ED7130F7A1CE177320(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25506
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TouchState_set_beganInSameFrame_m46F1C71775E825310242C59E608D5F20908A8D39 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:301>
|
|
bool L_0 = ___0_value;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:302>
|
|
uint8_t L_1 = __this->___flags;
|
|
__this->___flags = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_1|((int32_t)128))));
|
|
return;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:304>
|
|
uint8_t L_2 = __this->___flags;
|
|
__this->___flags = (uint8_t)((int32_t)(uint8_t)((int32_t)((int32_t)L_2&((int32_t)127))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:305>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TouchState_set_beganInSameFrame_m46F1C71775E825310242C59E608D5F20908A8D39_AdjustorThunk (RuntimeObject* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
TouchState_set_beganInSameFrame_m46F1C71775E825310242C59E608D5F20908A8D39(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25507
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchState_get_format_m27F8D5F420FE4D7F11C4676B5FD94FAF08586AE5 (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:309>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = TouchState_get_Format_mE473D3097A050EF38348C8E25E6C5A19D0C034C0(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchState_get_format_m27F8D5F420FE4D7F11C4676B5FD94FAF08586AE5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = TouchState_get_format_m27F8D5F420FE4D7F11C4676B5FD94FAF08586AE5(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25508
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TouchState_ToString_mEA29180E6539B2C38587D293C96E5E56728E661D (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchPhase_tC280DE0C3DA3652019BF3605D57099E6CE2F3B14_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral62F4F3914DA44EFA764CD7207FD98C1D7D603493);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:317>
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)7);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
|
|
int32_t L_2 = __this->___touchId;
|
|
int32_t L_3 = L_2;
|
|
RuntimeObject* L_4 = Box(il2cpp_defaults.int32_class, &L_3);
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, L_4);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_4);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_1;
|
|
int32_t L_6;
|
|
L_6 = TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline(__this, NULL);
|
|
int32_t L_7 = L_6;
|
|
RuntimeObject* L_8 = Box(TouchPhase_tC280DE0C3DA3652019BF3605D57099E6CE2F3B14_il2cpp_TypeInfo_var, &L_7);
|
|
NullCheck(L_5);
|
|
ArrayElementTypeCheck (L_5, L_8);
|
|
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_8);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = L_5;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = __this->___position;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11 = L_10;
|
|
RuntimeObject* L_12 = Box(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var, &L_11);
|
|
NullCheck(L_9);
|
|
ArrayElementTypeCheck (L_9, L_12);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_12);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_13 = L_9;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_14 = __this->___delta;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_15 = L_14;
|
|
RuntimeObject* L_16 = Box(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var, &L_15);
|
|
NullCheck(L_13);
|
|
ArrayElementTypeCheck (L_13, L_16);
|
|
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject*)L_16);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_17 = L_13;
|
|
float L_18 = __this->___pressure;
|
|
float L_19 = L_18;
|
|
RuntimeObject* L_20 = Box(il2cpp_defaults.single_class, &L_19);
|
|
NullCheck(L_17);
|
|
ArrayElementTypeCheck (L_17, L_20);
|
|
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject*)L_20);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_21 = L_17;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22 = __this->___radius;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_23 = L_22;
|
|
RuntimeObject* L_24 = Box(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var, &L_23);
|
|
NullCheck(L_21);
|
|
ArrayElementTypeCheck (L_21, L_24);
|
|
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject*)L_24);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_25 = L_21;
|
|
bool L_26;
|
|
L_26 = TouchState_get_isPrimaryTouch_mC8E83D45028722D5456CB65A19C9DBB2B1DC8615(__this, NULL);
|
|
bool L_27 = L_26;
|
|
RuntimeObject* L_28 = Box(il2cpp_defaults.boolean_class, &L_27);
|
|
NullCheck(L_25);
|
|
ArrayElementTypeCheck (L_25, L_28);
|
|
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject*)L_28);
|
|
String_t* L_29;
|
|
L_29 = String_Format_m918500C1EFB475181349A79989BB79BB36102894(_stringLiteral62F4F3914DA44EFA764CD7207FD98C1D7D603493, L_25, NULL);
|
|
return L_29;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* TouchState_ToString_mEA29180E6539B2C38587D293C96E5E56728E661D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = TouchState_ToString_mEA29180E6539B2C38587D293C96E5E56728E661D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25509
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchscreenState_get_Format_mF9C584A0C19B90EBBFC257022A48BFC56BDE6E95 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:343>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)84), ((int32_t)83), ((int32_t)67), ((int32_t)82), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25510
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* TouchscreenState_get_primaryTouch_m2F7795A41B5BD5B36686E513EB0626BEB94F03FB (TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* __this, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:390>
|
|
U3CprimaryTouchDataU3Ee__FixedBuffer_t843D75C0F089EEBE01C3063B14726D4B99B56258* L_0 = (U3CprimaryTouchDataU3Ee__FixedBuffer_t843D75C0F089EEBE01C3063B14726D4B99B56258*)(&__this->___primaryTouchData);
|
|
uint8_t* L_1 = (uint8_t*)(&L_0->___FixedElementField);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:391>
|
|
uint8_t* L_2 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:392>
|
|
return (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)(((uintptr_t)L_2));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* TouchscreenState_get_primaryTouch_m2F7795A41B5BD5B36686E513EB0626BEB94F03FB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F*>(__this + _offset);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _returnValue;
|
|
_returnValue = TouchscreenState_get_primaryTouch_m2F7795A41B5BD5B36686E513EB0626BEB94F03FB(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25511
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* TouchscreenState_get_touches_m58B38F7D585C7D053B2D6C9B17B9AB36F6E6D14F (TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* __this, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:399>
|
|
U3CtouchDataU3Ee__FixedBuffer_t6436C7ECCAE275554BE674C0A81E0C42D5213DAE* L_0 = (U3CtouchDataU3Ee__FixedBuffer_t6436C7ECCAE275554BE674C0A81E0C42D5213DAE*)(&__this->___touchData);
|
|
uint8_t* L_1 = (uint8_t*)(&L_0->___FixedElementField);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:400>
|
|
uint8_t* L_2 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:401>
|
|
return (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97*)(((uintptr_t)L_2));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* TouchscreenState_get_touches_m58B38F7D585C7D053B2D6C9B17B9AB36F6E6D14F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F*>(__this + _offset);
|
|
TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* _returnValue;
|
|
_returnValue = TouchscreenState_get_touches_m58B38F7D585C7D053B2D6C9B17B9AB36F6E6D14F(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25512
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchscreenState_get_format_m599BFB770E5FFC16A3AF0BBD32473D89B9F6F0A0 (TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:405>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = TouchscreenState_get_Format_mF9C584A0C19B90EBBFC257022A48BFC56BDE6E95(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TouchscreenState_get_format_m599BFB770E5FFC16A3AF0BBD32473D89B9F6F0A0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TouchscreenState_t5833F6C5BEB32CE3754312A43E981897B97FF91F*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = TouchscreenState_get_format_m599BFB770E5FFC16A3AF0BBD32473D89B9F6F0A0(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25513
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ActionEvent_get_Type_m71EE0E777186515C32D7710F110D746C0EE47DDD (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:22>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)65), ((int32_t)67), ((int32_t)84), ((int32_t)78), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25514
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double ActionEvent_get_startTime_mFC441D783C0FF36A0DCF844F6CB4C51F7B507DC9 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:37>
|
|
double L_0 = __this->___m_StartTime;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C double ActionEvent_get_startTime_mFC441D783C0FF36A0DCF844F6CB4C51F7B507DC9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
double _returnValue;
|
|
_returnValue = ActionEvent_get_startTime_mFC441D783C0FF36A0DCF844F6CB4C51F7B507DC9_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25515
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_startTime_m421136E6914BF478860D9A2A4C302A8E5C0128F2 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:38>
|
|
double L_0 = ___0_value;
|
|
__this->___m_StartTime = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ActionEvent_set_startTime_m421136E6914BF478860D9A2A4C302A8E5C0128F2_AdjustorThunk (RuntimeObject* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
ActionEvent_set_startTime_m421136E6914BF478860D9A2A4C302A8E5C0128F2_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25516
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_phase_mA5D0A72C4C5DD7D0F562AAC03812667D7D467AC9 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:43>
|
|
uint8_t L_0 = __this->___m_Phase;
|
|
return (int32_t)(L_0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t ActionEvent_get_phase_mA5D0A72C4C5DD7D0F562AAC03812667D7D467AC9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = ActionEvent_get_phase_mA5D0A72C4C5DD7D0F562AAC03812667D7D467AC9_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25517
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_phase_mF8ACF6B2396E2351BA691A53450A4013BD011A9F (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:44>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_Phase = (uint8_t)((int32_t)(uint8_t)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ActionEvent_set_phase_mF8ACF6B2396E2351BA691A53450A4013BD011A9F_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
ActionEvent_set_phase_mF8ACF6B2396E2351BA691A53450A4013BD011A9F(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25518
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* ActionEvent_get_valueData_m90D8EEC0EBFC775772BCF3FCB60FCBFA282D3E4C (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:50>
|
|
U3Cm_ValueDataU3Ee__FixedBuffer_t94746BF84FF1BD9ACDDDA17AE7155A9AA40DB97A* L_0 = (U3Cm_ValueDataU3Ee__FixedBuffer_t94746BF84FF1BD9ACDDDA17AE7155A9AA40DB97A*)(&__this->___m_ValueData);
|
|
uint8_t* L_1 = (uint8_t*)(&L_0->___FixedElementField);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:51>
|
|
uint8_t* L_2 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:53>
|
|
return (uint8_t*)(((uintptr_t)L_2));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint8_t* ActionEvent_get_valueData_m90D8EEC0EBFC775772BCF3FCB60FCBFA282D3E4C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
uint8_t* _returnValue;
|
|
_returnValue = ActionEvent_get_valueData_m90D8EEC0EBFC775772BCF3FCB60FCBFA282D3E4C(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25519
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_valueSizeInBytes_m76C6A128C9C3E3747FE7917EA1760B74647FD19C (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:58>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)(&__this->___baseEvent);
|
|
uint32_t L_1;
|
|
L_1 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307(L_0, NULL);
|
|
return ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract((int32_t)L_1, ((int32_t)20))), ((int32_t)16)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t ActionEvent_get_valueSizeInBytes_m76C6A128C9C3E3747FE7917EA1760B74647FD19C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = ActionEvent_get_valueSizeInBytes_m76C6A128C9C3E3747FE7917EA1760B74647FD19C(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25520
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_stateIndex_m9B25D23E723CFD517FEA65A61D0D3587E4205450 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:62>
|
|
uint8_t L_0 = __this->___m_StateIndex;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t ActionEvent_get_stateIndex_m9B25D23E723CFD517FEA65A61D0D3587E4205450_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = ActionEvent_get_stateIndex_m9B25D23E723CFD517FEA65A61D0D3587E4205450_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25521
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_stateIndex_m6A5B88C7CD64D3BC75B8211484AF25280C5E520B (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:66>
|
|
int32_t L_0 = ___0_value;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_value;
|
|
if ((((int32_t)L_1) <= ((int32_t)((int32_t)255))))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:67>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_2 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD04950964E883490D4CCE5E2BB5659308B237EA5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ActionEvent_set_stateIndex_m6A5B88C7CD64D3BC75B8211484AF25280C5E520B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:68>
|
|
int32_t L_3 = ___0_value;
|
|
__this->___m_StateIndex = (uint8_t)((int32_t)(uint8_t)L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:69>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ActionEvent_set_stateIndex_m6A5B88C7CD64D3BC75B8211484AF25280C5E520B_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
ActionEvent_set_stateIndex_m6A5B88C7CD64D3BC75B8211484AF25280C5E520B(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25522
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_controlIndex_m6AD8C96BCD3A38D6FFC823F98673549CAADB1715 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:74>
|
|
uint16_t L_0 = __this->___m_ControlIndex;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t ActionEvent_get_controlIndex_m6AD8C96BCD3A38D6FFC823F98673549CAADB1715_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = ActionEvent_get_controlIndex_m6AD8C96BCD3A38D6FFC823F98673549CAADB1715_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25523
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_controlIndex_m2AC91D48B3CCA9C73415A1F85648CB93B05711E7 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:78>
|
|
int32_t L_0 = ___0_value;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_value;
|
|
if ((((int32_t)L_1) <= ((int32_t)((int32_t)65535))))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:79>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_2 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C63C93EC2E14069C02301603969E78DB054EF8E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ActionEvent_set_controlIndex_m2AC91D48B3CCA9C73415A1F85648CB93B05711E7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:80>
|
|
int32_t L_3 = ___0_value;
|
|
__this->___m_ControlIndex = (uint16_t)((int32_t)(uint16_t)L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:81>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ActionEvent_set_controlIndex_m2AC91D48B3CCA9C73415A1F85648CB93B05711E7_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
ActionEvent_set_controlIndex_m2AC91D48B3CCA9C73415A1F85648CB93B05711E7(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25524
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_bindingIndex_m95BC43710F538E6E696644A9CABD5EC4FAA97400 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:86>
|
|
uint16_t L_0 = __this->___m_BindingIndex;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t ActionEvent_get_bindingIndex_m95BC43710F538E6E696644A9CABD5EC4FAA97400_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = ActionEvent_get_bindingIndex_m95BC43710F538E6E696644A9CABD5EC4FAA97400_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25525
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_bindingIndex_mF620F2E875C9E6EC9B51271D6E8F469C4E855708 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:90>
|
|
int32_t L_0 = ___0_value;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_value;
|
|
if ((((int32_t)L_1) <= ((int32_t)((int32_t)65535))))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:91>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_2 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7ED914680C555D96C6ADF1D908946F172FCFAFCB)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ActionEvent_set_bindingIndex_mF620F2E875C9E6EC9B51271D6E8F469C4E855708_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:92>
|
|
int32_t L_3 = ___0_value;
|
|
__this->___m_BindingIndex = (uint16_t)((int32_t)(uint16_t)L_3);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:93>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ActionEvent_set_bindingIndex_mF620F2E875C9E6EC9B51271D6E8F469C4E855708_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
ActionEvent_set_bindingIndex_mF620F2E875C9E6EC9B51271D6E8F469C4E855708(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25526
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_get_interactionIndex_m5609EC04CE26D86650CF0829F907D478A209286E (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:100>
|
|
uint16_t L_0 = __this->___m_InteractionIndex;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)65535)))))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:101>
|
|
return (-1);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:102>
|
|
uint16_t L_1 = __this->___m_InteractionIndex;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t ActionEvent_get_interactionIndex_m5609EC04CE26D86650CF0829F907D478A209286E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = ActionEvent_get_interactionIndex_m5609EC04CE26D86650CF0829F907D478A209286E(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25527
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionEvent_set_interactionIndex_m8369A717B14FE2DE5CC74F55A1764EFE2DCE0546 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:107>
|
|
int32_t L_0 = ___0_value;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:108>
|
|
__this->___m_InteractionIndex = (uint16_t)((int32_t)65535);
|
|
return;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:111>
|
|
int32_t L_1 = ___0_value;
|
|
if ((((int32_t)L_1) < ((int32_t)0)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___0_value;
|
|
if ((((int32_t)L_2) < ((int32_t)((int32_t)65535))))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:112>
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_3 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B396DAFCF90B4201E355761B57D4F5B4820024F)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ActionEvent_set_interactionIndex_m8369A717B14FE2DE5CC74F55A1764EFE2DCE0546_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:113>
|
|
int32_t L_4 = ___0_value;
|
|
__this->___m_InteractionIndex = (uint16_t)((int32_t)(uint16_t)L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:115>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ActionEvent_set_interactionIndex_m8369A717B14FE2DE5CC74F55A1764EFE2DCE0546_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
ActionEvent_set_interactionIndex_m8369A717B14FE2DE5CC74F55A1764EFE2DCE0546(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25528
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ActionEvent_ToEventPtr_m6CED2BDDEBD88B4CC9E6D9A5500CBBC46867AD61 (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:119>
|
|
V_0 = __this;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:120>
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* L_0 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:122>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline((&L_1), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((uintptr_t)L_0), NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ActionEvent_ToEventPtr_m6CED2BDDEBD88B4CC9E6D9A5500CBBC46867AD61_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 _returnValue;
|
|
_returnValue = ActionEvent_ToEventPtr_m6CED2BDDEBD88B4CC9E6D9A5500CBBC46867AD61(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25529
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ActionEvent_get_typeStatic_mDA18771F922C2C34EC407D7EA68A8735E516819D (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:126>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = ActionEvent_get_Type_m71EE0E777186515C32D7710F110D746C0EE47DDD(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ActionEvent_get_typeStatic_mDA18771F922C2C34EC407D7EA68A8735E516819D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = ActionEvent_get_typeStatic_mDA18771F922C2C34EC407D7EA68A8735E516819D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25530
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionEvent_GetEventSizeWithValueSize_m58A4F1E9CF258862B6A929F1C8ED8BD0C317155B (int32_t ___0_valueSizeInBytes, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:130>
|
|
int32_t L_0 = ___0_valueSizeInBytes;
|
|
return ((int32_t)il2cpp_codegen_add(((int32_t)36), L_0));
|
|
}
|
|
}
|
|
// Method Definition Index: 25531
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* ActionEvent_From_m6DE05D1DCB874CC678A8FC27347871B8669732C9 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_ptr, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_IsA_TisActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444_m2F2591754A98F71A8E950E17F45153089F5B2D10_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:135>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012((&___0_ptr), NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:136>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE493A589C92D423742E94550596D4C4E4B20CC33)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ActionEvent_From_m6DE05D1DCB874CC678A8FC27347871B8669732C9_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:137>
|
|
bool L_2;
|
|
L_2 = InputEventPtr_IsA_TisActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444_m2F2591754A98F71A8E950E17F45153089F5B2D10((&___0_ptr), InputEventPtr_IsA_TisActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444_m2F2591754A98F71A8E950E17F45153089F5B2D10_RuntimeMethod_var);
|
|
if (L_2)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:138>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_3;
|
|
L_3 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69((&___0_ptr), NULL);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED_il2cpp_TypeInfo_var)), &L_4);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC1FF02C94AF6761BB495CE9E94D85A9422EE0E3A)), L_5, NULL);
|
|
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_7 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
|
|
InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ActionEvent_From_m6DE05D1DCB874CC678A8FC27347871B8669732C9_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:140>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_8;
|
|
L_8 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&___0_ptr), NULL);
|
|
return (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444*)(L_8);
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25532
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t DeltaStateEvent_get_deltaStateSizeInBytes_mF3F45D7A54B74C0B5403C5B4A6B42B31A78331E2 (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:33>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)(&__this->___baseEvent);
|
|
uint32_t L_1;
|
|
L_1 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307(L_0, NULL);
|
|
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, ((int32_t)28)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint32_t DeltaStateEvent_get_deltaStateSizeInBytes_mF3F45D7A54B74C0B5403C5B4A6B42B31A78331E2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*>(__this + _offset);
|
|
uint32_t _returnValue;
|
|
_returnValue = DeltaStateEvent_get_deltaStateSizeInBytes_mF3F45D7A54B74C0B5403C5B4A6B42B31A78331E2(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25533
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* DeltaStateEvent_get_deltaState_m02220C78569A9CC26843EB8A3AF289019195DA9E (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:38>
|
|
U3CstateDataU3Ee__FixedBuffer_t2D79C7E59F64E19D0450D36680F1A1B52CD89F84* L_0 = (U3CstateDataU3Ee__FixedBuffer_t2D79C7E59F64E19D0450D36680F1A1B52CD89F84*)(&__this->___stateData);
|
|
uint8_t* L_1 = (uint8_t*)(&L_0->___FixedElementField);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:39>
|
|
uint8_t* L_2 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:41>
|
|
return (void*)(((uintptr_t)L_2));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void* DeltaStateEvent_get_deltaState_m02220C78569A9CC26843EB8A3AF289019195DA9E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*>(__this + _offset);
|
|
void* _returnValue;
|
|
_returnValue = DeltaStateEvent_get_deltaState_m02220C78569A9CC26843EB8A3AF289019195DA9E(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25534
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeltaStateEvent_get_typeStatic_m78864C357A995118D8E55ABE491ACAF3ED2F846D (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:46>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1145852993), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeltaStateEvent_get_typeStatic_m78864C357A995118D8E55ABE491ACAF3ED2F846D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = DeltaStateEvent_get_typeStatic_m78864C357A995118D8E55ABE491ACAF3ED2F846D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25535
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeltaStateEvent_ToEventPtr_mF514DA9E913E367842C4FE6E87768C406A6ACA2C (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* __this, const RuntimeMethod* method)
|
|
{
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:49>
|
|
V_0 = __this;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:50>
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_0 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:52>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline((&L_1), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((uintptr_t)L_0), NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeltaStateEvent_ToEventPtr_mF514DA9E913E367842C4FE6E87768C406A6ACA2C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*>(__this + _offset);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 _returnValue;
|
|
_returnValue = DeltaStateEvent_ToEventPtr_mF514DA9E913E367842C4FE6E87768C406A6ACA2C(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25536
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* DeltaStateEvent_From_mFFEAD69A307D75C84B87E58E644B1F16E1B7EA48 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_ptr, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:58>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012((&___0_ptr), NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:59>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE493A589C92D423742E94550596D4C4E4B20CC33)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DeltaStateEvent_From_mFFEAD69A307D75C84B87E58E644B1F16E1B7EA48_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:60>
|
|
bool L_2;
|
|
L_2 = InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7((&___0_ptr), InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_RuntimeMethod_var);
|
|
if (L_2)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:61>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_3;
|
|
L_3 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69((&___0_ptr), NULL);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED_il2cpp_TypeInfo_var)), &L_4);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3C54E891B7C3652F3066D6041DE2D9BABF6DCA32)), L_5, NULL);
|
|
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_7 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
|
|
InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DeltaStateEvent_From_mFFEAD69A307D75C84B87E58E644B1F16E1B7EA48_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:63>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_8 = ___0_ptr;
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_9;
|
|
L_9 = DeltaStateEvent_FromUnchecked_m88C0138A7910009A5B0BCB83EEB0A3483E23613A(L_8, NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// Method Definition Index: 25537
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* DeltaStateEvent_FromUnchecked_m88C0138A7910009A5B0BCB83EEB0A3483E23613A (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_ptr, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:68>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0;
|
|
L_0 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&___0_ptr), NULL);
|
|
return (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*)(L_0);
|
|
}
|
|
}
|
|
// Method Definition Index: 25538
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DeltaStateEvent_From_m11082795B41196B42A12418B371A7EF2723CEF38 (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* ___0_control, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* ___1_eventPtr, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* V_0 = NULL;
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* V_1 = NULL;
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* V_2 = NULL;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
uint32_t V_4 = 0;
|
|
uint32_t V_5 = 0;
|
|
uint8_t* V_6 = NULL;
|
|
uint32_t V_7 = 0;
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* V_8 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:73>
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_0 = ___0_control;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:74>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFAAED55F148F74B2C74F8C745D3CF6CBC766B1DC)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DeltaStateEvent_From_m11082795B41196B42A12418B371A7EF2723CEF38_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:75>
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_2 = ___0_control;
|
|
NullCheck(L_2);
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_3;
|
|
L_3 = InputControl_get_device_mAB3E013F566CF3407B8C36BC781EBD751DFAB324_inline(L_2, NULL);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:76>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
bool L_5;
|
|
L_5 = InputDevice_get_added_m27CF78B0777E142AAF9139ABFD88F67BBAABA15C(L_4, NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:77>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:78>
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_6 = ___0_control;
|
|
String_t* L_7;
|
|
L_7 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC26AE6F38B24292B9F4A89F463BE2C43F48DEBD1)), L_6, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_8, L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFAAED55F148F74B2C74F8C745D3CF6CBC766B1DC)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DeltaStateEvent_From_m11082795B41196B42A12418B371A7EF2723CEF38_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:80>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_10 = (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5*)(&((InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E*)L_9)->___m_StateBlock);
|
|
V_1 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:81>
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_11 = ___0_control;
|
|
NullCheck(L_11);
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_12 = (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5*)(&L_11->___m_StateBlock);
|
|
V_2 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:83>
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_13 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5_il2cpp_TypeInfo_var);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_14;
|
|
L_14 = InputStateBlock_get_format_mA393354EDC4A58DDCBE0990902A49E0A22F15F86_inline(L_13, NULL);
|
|
V_3 = L_14;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:84>
|
|
V_4 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:85>
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_15 = V_2;
|
|
uint32_t L_16;
|
|
L_16 = InputStateBlock_get_bitOffset_m3165625FF638183247012307A8AC012AEA3D1143_inline(L_15, NULL);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:86>
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_17 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5_il2cpp_TypeInfo_var);
|
|
uint32_t L_18;
|
|
L_18 = InputStateBlock_get_bitOffset_m3165625FF638183247012307A8AC012AEA3D1143_inline(L_17, NULL);
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_19 = V_2;
|
|
uint32_t L_20;
|
|
L_20 = InputStateBlock_get_sizeInBits_m38BFF704420E74EA4F7B85DC24DD3AAD810E8197_inline(L_19, NULL);
|
|
V_4 = ((int32_t)((uint32_t)(int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)L_20)), 7))/(uint32_t)(int32_t)8));
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:88>
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_21 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5_il2cpp_TypeInfo_var);
|
|
uint32_t L_22;
|
|
L_22 = InputStateBlock_get_alignedSizeInBytes_mF360E8CFBEE9BE05FC7DFA3533E069A5A96827F5(L_21, NULL);
|
|
V_4 = L_22;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:89>
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_23 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5_il2cpp_TypeInfo_var);
|
|
uint32_t L_24;
|
|
L_24 = InputStateBlock_get_byteOffset_m6EADE5C9C8B346D38E543E38777ED67ED2AEA0AC_inline(L_23, NULL);
|
|
V_5 = L_24;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:90>
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_25 = ___0_control;
|
|
NullCheck(L_25);
|
|
void* L_26;
|
|
L_26 = InputControl_get_currentStatePtr_m77D2900EEE4AAB505C98292AF8538DDCF44F8C3C(L_25, NULL);
|
|
uint32_t L_27 = V_5;
|
|
V_6 = (uint8_t*)((void*)il2cpp_codegen_add((intptr_t)L_26, (int32_t)L_27));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:91>
|
|
uint32_t L_28 = V_4;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(((int32_t)28), (int32_t)L_28));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:93>
|
|
uint32_t L_29 = V_7;
|
|
uint32_t L_30;
|
|
L_30 = NumberHelpers_AlignToMultipleOf_m44B66C972BC1F508B9022564F265D1AA6A001AAE_inline(L_29, 4, NULL);
|
|
int32_t L_31 = ___2_allocator;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_32;
|
|
memset((&L_32), 0, sizeof(L_32));
|
|
NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F((&L_32), L_30, L_31, 1, NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:94>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_33 = L_32;
|
|
void* L_34;
|
|
L_34 = NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2(L_33, NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2_RuntimeMethod_var);
|
|
V_8 = (DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*)L_34;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:96>
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_35 = V_8;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_36;
|
|
L_36 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1145852993), NULL);
|
|
uint32_t L_37 = V_7;
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_38 = V_0;
|
|
NullCheck(L_38);
|
|
int32_t L_39;
|
|
L_39 = InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline(L_38, NULL);
|
|
RuntimeObject* L_40 = ((InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var))->___s_Instance;
|
|
NullCheck(L_40);
|
|
double L_41;
|
|
L_41 = InterfaceFuncInvoker0< double >::Invoke(19, IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var, L_40);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_42;
|
|
memset((&L_42), 0, sizeof(L_42));
|
|
InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924((&L_42), L_36, L_37, L_39, L_41, NULL);
|
|
NullCheck(L_35);
|
|
L_35->___baseEvent = L_42;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:97>
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_43 = V_8;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_44 = V_3;
|
|
NullCheck(L_43);
|
|
L_43->___stateFormat = L_44;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:98>
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_45 = V_8;
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_46 = V_2;
|
|
uint32_t L_47;
|
|
L_47 = InputStateBlock_get_byteOffset_m6EADE5C9C8B346D38E543E38777ED67ED2AEA0AC_inline(L_46, NULL);
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_48 = V_1;
|
|
uint32_t L_49;
|
|
L_49 = InputStateBlock_get_byteOffset_m6EADE5C9C8B346D38E543E38777ED67ED2AEA0AC_inline(L_48, NULL);
|
|
NullCheck(L_45);
|
|
L_45->___stateOffset = ((int32_t)il2cpp_codegen_subtract((int32_t)L_47, (int32_t)L_49));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:99>
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_50 = V_8;
|
|
void* L_51;
|
|
L_51 = DeltaStateEvent_get_deltaState_m02220C78569A9CC26843EB8A3AF289019195DA9E((DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*)L_50, NULL);
|
|
uint8_t* L_52 = V_6;
|
|
uint32_t L_53 = V_4;
|
|
UnsafeUtility_MemCpy_m5CEA91ACDADC522E584AE3A2AB2B0B74393A9177(L_51, (void*)L_52, ((int64_t)(uint64_t)((uint32_t)L_53)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:101>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_54 = ___1_eventPtr;
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_55 = V_8;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_56;
|
|
L_56 = DeltaStateEvent_ToEventPtr_mF514DA9E913E367842C4FE6E87768C406A6ACA2C((DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*)L_55, NULL);
|
|
*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)L_54 = L_56;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeltaStateEvent.cs:102>
|
|
return L_33;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25539
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceConfigurationEvent_get_typeStatic_m28C6393CDEE9100331345A72749DBA842080C362 (DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceConfigurationEvent.cs:23>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1145259591), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceConfigurationEvent_get_typeStatic_m28C6393CDEE9100331345A72749DBA842080C362_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = DeviceConfigurationEvent_get_typeStatic_m28C6393CDEE9100331345A72749DBA842080C362(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25540
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeviceConfigurationEvent_ToEventPtr_m26A12C8D7BF50B9AF36FB0E766AFF8F3811AC613 (DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* __this, const RuntimeMethod* method)
|
|
{
|
|
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceConfigurationEvent.cs:26>
|
|
V_0 = __this;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceConfigurationEvent.cs:27>
|
|
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* L_0 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceConfigurationEvent.cs:29>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline((&L_1), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((uintptr_t)L_0), NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeviceConfigurationEvent_ToEventPtr_m26A12C8D7BF50B9AF36FB0E766AFF8F3811AC613_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB*>(__this + _offset);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 _returnValue;
|
|
_returnValue = DeviceConfigurationEvent_ToEventPtr_m26A12C8D7BF50B9AF36FB0E766AFF8F3811AC613(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25541
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB DeviceConfigurationEvent_Create_m8A078E4F4A2A079A2B64096323F4E9A4C6D34B97 (int32_t ___0_deviceId, double ___1_time, const RuntimeMethod* method)
|
|
{
|
|
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceConfigurationEvent.cs:35>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceConfigurationEvent.cs:36>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1145259591), NULL);
|
|
int32_t L_1 = ___0_deviceId;
|
|
double L_2 = ___1_time;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924((&L_3), L_0, ((int32_t)20), L_1, L_2, NULL);
|
|
(&V_0)->___baseEvent = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceConfigurationEvent.cs:37>
|
|
DeviceConfigurationEvent_tC73A3703BADB78DDA67BE9C3DE2E4C93B34A19CB L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25542
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceRemoveEvent_get_typeStatic_m59A7E2127F8EFF45674F801535EC27E3032CCDA0 (DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceRemoveEvent.cs:24>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1146242381), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceRemoveEvent_get_typeStatic_m59A7E2127F8EFF45674F801535EC27E3032CCDA0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = DeviceRemoveEvent_get_typeStatic_m59A7E2127F8EFF45674F801535EC27E3032CCDA0(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25543
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeviceRemoveEvent_ToEventPtr_m72F38FDBB8F566525666CF67430E68B03EFEEAD3 (DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* __this, const RuntimeMethod* method)
|
|
{
|
|
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceRemoveEvent.cs:27>
|
|
V_0 = __this;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceRemoveEvent.cs:28>
|
|
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* L_0 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceRemoveEvent.cs:30>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline((&L_1), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((uintptr_t)L_0), NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 DeviceRemoveEvent_ToEventPtr_m72F38FDBB8F566525666CF67430E68B03EFEEAD3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9*>(__this + _offset);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 _returnValue;
|
|
_returnValue = DeviceRemoveEvent_ToEventPtr_m72F38FDBB8F566525666CF67430E68B03EFEEAD3(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25544
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9 DeviceRemoveEvent_Create_mE0CE181E67FAE4A511271D416BB1EF9D6F3E700F (int32_t ___0_deviceId, double ___1_time, const RuntimeMethod* method)
|
|
{
|
|
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceRemoveEvent.cs:36>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceRemoveEvent.cs:37>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1146242381), NULL);
|
|
int32_t L_1 = ___0_deviceId;
|
|
double L_2 = ___1_time;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924((&L_3), L_0, ((int32_t)20), L_1, L_2, NULL);
|
|
(&V_0)->___baseEvent = L_3;
|
|
DeviceRemoveEvent_t51C00E4C657C4942268EA407FBA049E82AFCE3A9 L_4 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceRemoveEvent.cs:38>
|
|
return L_4;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshal_pinvoke(const DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4& unmarshaled, DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___baseEvent = unmarshaled.___baseEvent;
|
|
marshaled.___hardReset = static_cast<int32_t>(unmarshaled.___hardReset);
|
|
}
|
|
IL2CPP_EXTERN_C void DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshal_pinvoke_back(const DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_pinvoke& marshaled, DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4& unmarshaled)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 unmarshaledbaseEvent_temp_0;
|
|
memset((&unmarshaledbaseEvent_temp_0), 0, sizeof(unmarshaledbaseEvent_temp_0));
|
|
unmarshaledbaseEvent_temp_0 = marshaled.___baseEvent;
|
|
unmarshaled.___baseEvent = unmarshaledbaseEvent_temp_0;
|
|
bool unmarshaledhardReset_temp_1 = false;
|
|
unmarshaledhardReset_temp_1 = static_cast<bool>(marshaled.___hardReset);
|
|
unmarshaled.___hardReset = unmarshaledhardReset_temp_1;
|
|
}
|
|
IL2CPP_EXTERN_C void DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshal_pinvoke_cleanup(DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshal_com(const DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4& unmarshaled, DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___baseEvent = unmarshaled.___baseEvent;
|
|
marshaled.___hardReset = static_cast<int32_t>(unmarshaled.___hardReset);
|
|
}
|
|
IL2CPP_EXTERN_C void DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshal_com_back(const DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_com& marshaled, DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4& unmarshaled)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 unmarshaledbaseEvent_temp_0;
|
|
memset((&unmarshaledbaseEvent_temp_0), 0, sizeof(unmarshaledbaseEvent_temp_0));
|
|
unmarshaledbaseEvent_temp_0 = marshaled.___baseEvent;
|
|
unmarshaled.___baseEvent = unmarshaledbaseEvent_temp_0;
|
|
bool unmarshaledhardReset_temp_1 = false;
|
|
unmarshaledhardReset_temp_1 = static_cast<bool>(marshaled.___hardReset);
|
|
unmarshaled.___hardReset = unmarshaledhardReset_temp_1;
|
|
}
|
|
IL2CPP_EXTERN_C void DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshal_com_cleanup(DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// Method Definition Index: 25545
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceResetEvent_get_typeStatic_mE19FE21C422385DCF217144DFDA30FB09886E88B (DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceResetEvent.cs:27>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1146245972), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceResetEvent_get_typeStatic_mE19FE21C422385DCF217144DFDA30FB09886E88B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = DeviceResetEvent_get_typeStatic_mE19FE21C422385DCF217144DFDA30FB09886E88B(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25546
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4 DeviceResetEvent_Create_mC37574E891CDB017F860FE3089C02ED74B62ABA1 (int32_t ___0_deviceId, bool ___1_hardReset, double ___2_time, const RuntimeMethod* method)
|
|
{
|
|
DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceResetEvent.cs:31>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceResetEvent.cs:32>
|
|
il2cpp_codegen_initobj((&V_1), sizeof(DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1146245972), NULL);
|
|
int32_t L_1 = ___0_deviceId;
|
|
double L_2 = ___2_time;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924((&L_3), L_0, ((int32_t)20), L_1, L_2, NULL);
|
|
(&V_1)->___baseEvent = L_3;
|
|
DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4 L_4 = V_1;
|
|
V_0 = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceResetEvent.cs:33>
|
|
bool L_5 = ___1_hardReset;
|
|
(&V_0)->___hardReset = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/DeviceResetEvent.cs:34>
|
|
DeviceResetEvent_t8F9430E7CE4EA685E6FD58888D32F61ABE6D34F4 L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
|
|
|
|
IL2CPP_EXTERN_C void IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshal_pinvoke(const IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55& unmarshaled, IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___baseEvent = unmarshaled.___baseEvent;
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke(unmarshaled.___compositionString, marshaled.___compositionString);
|
|
}
|
|
IL2CPP_EXTERN_C void IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshal_pinvoke_back(const IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_pinvoke& marshaled, IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55& unmarshaled)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 unmarshaledbaseEvent_temp_0;
|
|
memset((&unmarshaledbaseEvent_temp_0), 0, sizeof(unmarshaledbaseEvent_temp_0));
|
|
unmarshaledbaseEvent_temp_0 = marshaled.___baseEvent;
|
|
unmarshaled.___baseEvent = unmarshaledbaseEvent_temp_0;
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E unmarshaledcompositionString_temp_1;
|
|
memset((&unmarshaledcompositionString_temp_1), 0, sizeof(unmarshaledcompositionString_temp_1));
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_back(marshaled.___compositionString, unmarshaledcompositionString_temp_1);
|
|
unmarshaled.___compositionString = unmarshaledcompositionString_temp_1;
|
|
}
|
|
IL2CPP_EXTERN_C void IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshal_pinvoke_cleanup(IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_pinvoke& marshaled)
|
|
{
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_cleanup(marshaled.___compositionString);
|
|
}
|
|
|
|
|
|
IL2CPP_EXTERN_C void IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshal_com(const IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55& unmarshaled, IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___baseEvent = unmarshaled.___baseEvent;
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com(unmarshaled.___compositionString, marshaled.___compositionString);
|
|
}
|
|
IL2CPP_EXTERN_C void IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshal_com_back(const IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_com& marshaled, IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55& unmarshaled)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 unmarshaledbaseEvent_temp_0;
|
|
memset((&unmarshaledbaseEvent_temp_0), 0, sizeof(unmarshaledbaseEvent_temp_0));
|
|
unmarshaledbaseEvent_temp_0 = marshaled.___baseEvent;
|
|
unmarshaled.___baseEvent = unmarshaledbaseEvent_temp_0;
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E unmarshaledcompositionString_temp_1;
|
|
memset((&unmarshaledcompositionString_temp_1), 0, sizeof(unmarshaledcompositionString_temp_1));
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_back(marshaled.___compositionString, unmarshaledcompositionString_temp_1);
|
|
unmarshaled.___compositionString = unmarshaledcompositionString_temp_1;
|
|
}
|
|
IL2CPP_EXTERN_C void IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshal_com_cleanup(IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55_marshaled_com& marshaled)
|
|
{
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_cleanup(marshaled.___compositionString);
|
|
}
|
|
// Method Definition Index: 25548
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED IMECompositionEvent_get_typeStatic_m89F47A231652E2AF8A050C95C8E4795838787531 (IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:26>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1229800787), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED IMECompositionEvent_get_typeStatic_m89F47A231652E2AF8A050C95C8E4795838787531_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = IMECompositionEvent_get_typeStatic_m89F47A231652E2AF8A050C95C8E4795838787531(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25549
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55 IMECompositionEvent_Create_m7F133AE4B013B293EC2E85A199DA986B80A10C56 (int32_t ___0_deviceId, String_t* ___1_compositionString, double ___2_time, const RuntimeMethod* method)
|
|
{
|
|
IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:30>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:31>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1229800787), NULL);
|
|
int32_t L_1 = ___0_deviceId;
|
|
double L_2 = ___2_time;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924((&L_3), L_0, ((int32_t)152), L_1, L_2, NULL);
|
|
(&V_0)->___baseEvent = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:32>
|
|
String_t* L_4 = ___1_compositionString;
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E L_5;
|
|
memset((&L_5), 0, sizeof(L_5));
|
|
IMECompositionString__ctor_m3E5D1159993102E7687C901BCDB3277EC23C2619((&L_5), L_4, NULL);
|
|
(&V_0)->___compositionString = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:33>
|
|
IMECompositionEvent_tE5CF1FDFA13561963D200901D911D20E8EDB9C55 L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
|
|
|
|
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___size = unmarshaled.___size;
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke(unmarshaled.___buffer, marshaled.___buffer);
|
|
}
|
|
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_back(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke& marshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled)
|
|
{
|
|
int32_t unmarshaledsize_temp_0 = 0;
|
|
unmarshaledsize_temp_0 = marshaled.___size;
|
|
unmarshaled.___size = unmarshaledsize_temp_0;
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF unmarshaledbuffer_temp_1;
|
|
memset((&unmarshaledbuffer_temp_1), 0, sizeof(unmarshaledbuffer_temp_1));
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke_back(marshaled.___buffer, unmarshaledbuffer_temp_1);
|
|
unmarshaled.___buffer = unmarshaledbuffer_temp_1;
|
|
}
|
|
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_cleanup(IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_pinvoke& marshaled)
|
|
{
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke_cleanup(marshaled.___buffer);
|
|
}
|
|
|
|
|
|
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___size = unmarshaled.___size;
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com(unmarshaled.___buffer, marshaled.___buffer);
|
|
}
|
|
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_back(const IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com& marshaled, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E& unmarshaled)
|
|
{
|
|
int32_t unmarshaledsize_temp_0 = 0;
|
|
unmarshaledsize_temp_0 = marshaled.___size;
|
|
unmarshaled.___size = unmarshaledsize_temp_0;
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF unmarshaledbuffer_temp_1;
|
|
memset((&unmarshaledbuffer_temp_1), 0, sizeof(unmarshaledbuffer_temp_1));
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com_back(marshaled.___buffer, unmarshaledbuffer_temp_1);
|
|
unmarshaled.___buffer = unmarshaledbuffer_temp_1;
|
|
}
|
|
IL2CPP_EXTERN_C void IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_cleanup(IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshaled_com& marshaled)
|
|
{
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com_cleanup(marshaled.___buffer);
|
|
}
|
|
// Method Definition Index: 25550
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IMECompositionString_get_Count_m118217BDAE905FA6F01D5F61D3D1A85319A5AA1D (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:92>
|
|
int32_t L_0 = __this->___size;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t IMECompositionString_get_Count_m118217BDAE905FA6F01D5F61D3D1A85319A5AA1D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = IMECompositionString_get_Count_m118217BDAE905FA6F01D5F61D3D1A85319A5AA1D_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25551
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar IMECompositionString_get_Item_mAD02BEFBDF102BC3A61859E112F62473431FD9C7 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
Il2CppChar* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:98>
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1;
|
|
L_1 = IMECompositionString_get_Count_m118217BDAE905FA6F01D5F61D3D1A85319A5AA1D_inline(__this, NULL);
|
|
if ((((int32_t)L_0) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___0_index;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:99>
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IMECompositionString_get_Item_mAD02BEFBDF102BC3A61859E112F62473431FD9C7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF* L_4 = (U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF*)(&__this->___buffer);
|
|
Il2CppChar* L_5 = (Il2CppChar*)(&L_4->___FixedElementField);
|
|
V_0 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:101>
|
|
Il2CppChar* L_6 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:103>
|
|
int32_t L_7 = ___0_index;
|
|
int32_t L_8 = *((uint16_t*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_6), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_7), 2)))));
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Il2CppChar IMECompositionString_get_Item_mAD02BEFBDF102BC3A61859E112F62473431FD9C7_AdjustorThunk (RuntimeObject* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*>(__this + _offset);
|
|
Il2CppChar _returnValue;
|
|
_returnValue = IMECompositionString_get_Item_mAD02BEFBDF102BC3A61859E112F62473431FD9C7(_thisAdjusted, ___0_index, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25552
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMECompositionString__ctor_m3E5D1159993102E7687C901BCDB3277EC23C2619 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, String_t* ___0_characters, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:116>
|
|
String_t* L_0 = ___0_characters;
|
|
bool L_1;
|
|
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:118>
|
|
__this->___size = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:119>
|
|
return;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:123>
|
|
String_t* L_2 = ___0_characters;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
|
|
__this->___size = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:124>
|
|
V_0 = 0;
|
|
goto IL_003c;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:125>
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF* L_4 = (U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF*)(&__this->___buffer);
|
|
Il2CppChar* L_5 = (Il2CppChar*)(&L_4->___FixedElementField);
|
|
int32_t L_6 = V_0;
|
|
String_t* L_7 = ___0_characters;
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_7);
|
|
Il2CppChar L_9;
|
|
L_9 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_7, L_8, NULL);
|
|
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_6), 2))))) = (int16_t)L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:124>
|
|
int32_t L_10 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:124>
|
|
int32_t L_11 = V_0;
|
|
int32_t L_12 = __this->___size;
|
|
if ((((int32_t)L_11) < ((int32_t)L_12)))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:126>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void IMECompositionString__ctor_m3E5D1159993102E7687C901BCDB3277EC23C2619_AdjustorThunk (RuntimeObject* __this, String_t* ___0_characters, const RuntimeMethod* method)
|
|
{
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*>(__this + _offset);
|
|
IMECompositionString__ctor_m3E5D1159993102E7687C901BCDB3277EC23C2619(_thisAdjusted, ___0_characters, method);
|
|
}
|
|
// Method Definition Index: 25553
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IMECompositionString_ToString_mC08E0929E54A40011881459D00A154F17FD3B373 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method)
|
|
{
|
|
Il2CppChar* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:129>
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF* L_0 = (U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF*)(&__this->___buffer);
|
|
Il2CppChar* L_1 = (Il2CppChar*)(&L_0->___FixedElementField);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:130>
|
|
Il2CppChar* L_2 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:132>
|
|
int32_t L_3 = __this->___size;
|
|
String_t* L_4;
|
|
L_4 = String_CreateString_m3F8794FEB452558B8A68C65E1F0B603B3D94E0E2(NULL, (Il2CppChar*)((uintptr_t)L_2), 0, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* IMECompositionString_ToString_mC08E0929E54A40011881459D00A154F17FD3B373_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = IMECompositionString_ToString_mC08E0929E54A40011881459D00A154F17FD3B373(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25554
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* IMECompositionString_GetEnumerator_mF49F36051CC98738D33E385073C4CA47FA4A64DE (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:138>
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E L_0 = (*(IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*)__this);
|
|
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
Enumerator__ctor_m6073ACAAEF55A25B11BB1120B7C2F24F5807DE9C((&L_1), L_0, NULL);
|
|
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46 L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_il2cpp_TypeInfo_var, &L_2);
|
|
return (RuntimeObject*)L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* IMECompositionString_GetEnumerator_mF49F36051CC98738D33E385073C4CA47FA4A64DE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = IMECompositionString_GetEnumerator_mF49F36051CC98738D33E385073C4CA47FA4A64DE(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25555
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* IMECompositionString_System_Collections_IEnumerable_GetEnumerator_mEF9DC84BC5B93C39EAD3A9F4AB51627CE4F82C63 (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:143>
|
|
RuntimeObject* L_0;
|
|
L_0 = IMECompositionString_GetEnumerator_mF49F36051CC98738D33E385073C4CA47FA4A64DE(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* IMECompositionString_System_Collections_IEnumerable_GetEnumerator_mEF9DC84BC5B93C39EAD3A9F4AB51627CE4F82C63_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = IMECompositionString_System_Collections_IEnumerable_GetEnumerator_mEF9DC84BC5B93C39EAD3A9F4AB51627CE4F82C63(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
|
|
|
|
IL2CPP_EXTERN_C void Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshal_pinvoke(const Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46& unmarshaled, Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_pinvoke& marshaled)
|
|
{
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke(unmarshaled.___m_CompositionString, marshaled.___m_CompositionString);
|
|
marshaled.___m_CurrentCharacter = static_cast<uint8_t>(unmarshaled.___m_CurrentCharacter);
|
|
marshaled.___m_CurrentIndex = unmarshaled.___m_CurrentIndex;
|
|
}
|
|
IL2CPP_EXTERN_C void Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshal_pinvoke_back(const Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_pinvoke& marshaled, Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46& unmarshaled)
|
|
{
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E unmarshaledm_CompositionString_temp_0;
|
|
memset((&unmarshaledm_CompositionString_temp_0), 0, sizeof(unmarshaledm_CompositionString_temp_0));
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_back(marshaled.___m_CompositionString, unmarshaledm_CompositionString_temp_0);
|
|
unmarshaled.___m_CompositionString = unmarshaledm_CompositionString_temp_0;
|
|
Il2CppChar unmarshaledm_CurrentCharacter_temp_1 = 0x0;
|
|
unmarshaledm_CurrentCharacter_temp_1 = static_cast<Il2CppChar>(marshaled.___m_CurrentCharacter);
|
|
unmarshaled.___m_CurrentCharacter = unmarshaledm_CurrentCharacter_temp_1;
|
|
int32_t unmarshaledm_CurrentIndex_temp_2 = 0;
|
|
unmarshaledm_CurrentIndex_temp_2 = marshaled.___m_CurrentIndex;
|
|
unmarshaled.___m_CurrentIndex = unmarshaledm_CurrentIndex_temp_2;
|
|
}
|
|
IL2CPP_EXTERN_C void Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshal_pinvoke_cleanup(Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_pinvoke& marshaled)
|
|
{
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_pinvoke_cleanup(marshaled.___m_CompositionString);
|
|
}
|
|
|
|
|
|
IL2CPP_EXTERN_C void Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshal_com(const Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46& unmarshaled, Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_com& marshaled)
|
|
{
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com(unmarshaled.___m_CompositionString, marshaled.___m_CompositionString);
|
|
marshaled.___m_CurrentCharacter = static_cast<uint8_t>(unmarshaled.___m_CurrentCharacter);
|
|
marshaled.___m_CurrentIndex = unmarshaled.___m_CurrentIndex;
|
|
}
|
|
IL2CPP_EXTERN_C void Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshal_com_back(const Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_com& marshaled, Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46& unmarshaled)
|
|
{
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E unmarshaledm_CompositionString_temp_0;
|
|
memset((&unmarshaledm_CompositionString_temp_0), 0, sizeof(unmarshaledm_CompositionString_temp_0));
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_back(marshaled.___m_CompositionString, unmarshaledm_CompositionString_temp_0);
|
|
unmarshaled.___m_CompositionString = unmarshaledm_CompositionString_temp_0;
|
|
Il2CppChar unmarshaledm_CurrentCharacter_temp_1 = 0x0;
|
|
unmarshaledm_CurrentCharacter_temp_1 = static_cast<Il2CppChar>(marshaled.___m_CurrentCharacter);
|
|
unmarshaled.___m_CurrentCharacter = unmarshaledm_CurrentCharacter_temp_1;
|
|
int32_t unmarshaledm_CurrentIndex_temp_2 = 0;
|
|
unmarshaledm_CurrentIndex_temp_2 = marshaled.___m_CurrentIndex;
|
|
unmarshaled.___m_CurrentIndex = unmarshaledm_CurrentIndex_temp_2;
|
|
}
|
|
IL2CPP_EXTERN_C void Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshal_com_cleanup(Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46_marshaled_com& marshaled)
|
|
{
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E_marshal_com_cleanup(marshaled.___m_CompositionString);
|
|
}
|
|
// Method Definition Index: 25556
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6073ACAAEF55A25B11BB1120B7C2F24F5807DE9C (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E ___0_compositionString, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:56>
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E L_0 = ___0_compositionString;
|
|
__this->___m_CompositionString = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:57>
|
|
__this->___m_CurrentCharacter = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:58>
|
|
__this->___m_CurrentIndex = (-1);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:59>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Enumerator__ctor_m6073ACAAEF55A25B11BB1120B7C2F24F5807DE9C_AdjustorThunk (RuntimeObject* __this, IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E ___0_compositionString, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46*>(__this + _offset);
|
|
Enumerator__ctor_m6073ACAAEF55A25B11BB1120B7C2F24F5807DE9C(_thisAdjusted, ___0_compositionString, method);
|
|
}
|
|
// Method Definition Index: 25557
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD35FCA6EB88EDE4D99E482FCF3338CBD78C327CE (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
Il2CppChar* V_1 = NULL;
|
|
Il2CppChar* V_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:63>
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* L_0 = (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*)(&__this->___m_CompositionString);
|
|
int32_t L_1;
|
|
L_1 = IMECompositionString_get_Count_m118217BDAE905FA6F01D5F61D3D1A85319A5AA1D_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:65>
|
|
int32_t L_2 = __this->___m_CurrentIndex;
|
|
__this->___m_CurrentIndex = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:67>
|
|
int32_t L_3 = __this->___m_CurrentIndex;
|
|
int32_t L_4 = V_0;
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)L_4))))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:68>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* L_5 = (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E*)(&__this->___m_CompositionString);
|
|
U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF* L_6 = (U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF*)(&L_5->___buffer);
|
|
Il2CppChar* L_7 = (Il2CppChar*)(&L_6->___FixedElementField);
|
|
V_2 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:70>
|
|
Il2CppChar* L_8 = V_2;
|
|
V_1 = (Il2CppChar*)((uintptr_t)L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:72>
|
|
Il2CppChar* L_9 = V_1;
|
|
int32_t L_10 = __this->___m_CurrentIndex;
|
|
int32_t L_11 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_10), 2)))));
|
|
__this->___m_CurrentCharacter = L_11;
|
|
V_2 = (Il2CppChar*)((uintptr_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:75>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mD35FCA6EB88EDE4D99E482FCF3338CBD78C327CE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Enumerator_MoveNext_mD35FCA6EB88EDE4D99E482FCF3338CBD78C327CE(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25558
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_mEE829E33AF06A2FEDB9994AFBF5BCFC0FF7ABBB0 (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:80>
|
|
__this->___m_CurrentIndex = (-1);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:81>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Enumerator_Reset_mEE829E33AF06A2FEDB9994AFBF5BCFC0FF7ABBB0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46*>(__this + _offset);
|
|
Enumerator_Reset_mEE829E33AF06A2FEDB9994AFBF5BCFC0FF7ABBB0(_thisAdjusted, method);
|
|
}
|
|
// Method Definition Index: 25559
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4FBC50139C59E472BF6C0544FAA09858F98D860E (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:85>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Enumerator_Dispose_m4FBC50139C59E472BF6C0544FAA09858F98D860E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46*>(__this + _offset);
|
|
Enumerator_Dispose_m4FBC50139C59E472BF6C0544FAA09858F98D860E(_thisAdjusted, method);
|
|
}
|
|
// Method Definition Index: 25560
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_m52C5B2EFD3B6598435E54801806413118B0C7F40 (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:87>
|
|
Il2CppChar L_0 = __this->___m_CurrentCharacter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Il2CppChar Enumerator_get_Current_m52C5B2EFD3B6598435E54801806413118B0C7F40_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46*>(__this + _offset);
|
|
Il2CppChar _returnValue;
|
|
_returnValue = Enumerator_get_Current_m52C5B2EFD3B6598435E54801806413118B0C7F40_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25561
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m86A42D2AB14107F270FCE9B0D8C40254A62572AD (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:89>
|
|
Il2CppChar L_0;
|
|
L_0 = Enumerator_get_Current_m52C5B2EFD3B6598435E54801806413118B0C7F40_inline(__this, NULL);
|
|
Il2CppChar L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(il2cpp_defaults.char_class, &L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m86A42D2AB14107F270FCE9B0D8C40254A62572AD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m86A42D2AB14107F270FCE9B0D8C40254A62572AD(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___FixedElementField = static_cast<uint8_t>(unmarshaled.___FixedElementField);
|
|
}
|
|
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke_back(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke& marshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled)
|
|
{
|
|
Il2CppChar unmarshaledFixedElementField_temp_0 = 0x0;
|
|
unmarshaledFixedElementField_temp_0 = static_cast<Il2CppChar>(marshaled.___FixedElementField);
|
|
unmarshaled.___FixedElementField = unmarshaledFixedElementField_temp_0;
|
|
}
|
|
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_pinvoke_cleanup(U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___FixedElementField = static_cast<uint8_t>(unmarshaled.___FixedElementField);
|
|
}
|
|
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com_back(const U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com& marshaled, U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF& unmarshaled)
|
|
{
|
|
Il2CppChar unmarshaledFixedElementField_temp_0 = 0x0;
|
|
unmarshaledFixedElementField_temp_0 = static_cast<Il2CppChar>(marshaled.___FixedElementField);
|
|
unmarshaled.___FixedElementField = unmarshaledFixedElementField_temp_0;
|
|
}
|
|
IL2CPP_EXTERN_C void U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshal_com_cleanup(U3CbufferU3Ee__FixedBuffer_t0B51E719D7B47A75DA8CBDD28396CD1AD00FFECF_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25562
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEvent_get_type_m43737750FDCCFDF4FC208C9AFFCB5E9D2672733D (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:85>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
int32_t L_1 = L_0->___type;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
FourCC__ctor_mE761C8779BB6DC85BA1662DC9ECEC39D62ED9A56_inline((&L_2), L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEvent_get_type_m43737750FDCCFDF4FC208C9AFFCB5E9D2672733D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = InputEvent_get_type_m43737750FDCCFDF4FC208C9AFFCB5E9D2672733D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25563
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_type_mA12F3F32108A0B88A4EE7BCA8AE7F2972F8E9740 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:86>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = ___0_value;
|
|
int32_t L_2;
|
|
L_2 = FourCC_op_Implicit_mC296B4E8C4929EACBB7066BB9856C116EE082A7B_inline(L_1, NULL);
|
|
L_0->___type = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEvent_set_type_mA12F3F32108A0B88A4EE7BCA8AE7F2972F8E9740_AdjustorThunk (RuntimeObject* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
InputEvent_set_type_mA12F3F32108A0B88A4EE7BCA8AE7F2972F8E9740(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25564
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:120>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
uint16_t L_1 = L_0->___sizeInBytes;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint32_t InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
uint32_t _returnValue;
|
|
_returnValue = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25565
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, uint32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
uint16_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:123>
|
|
uint32_t L_0 = ___0_value;
|
|
if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)65535)))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:124>
|
|
V_0 = (uint16_t)((int32_t)65535);
|
|
String_t* L_1;
|
|
L_1 = UInt16_ToString_m57629B7E74D92A54414073D5C27D6827C93A4DD5((&V_0), NULL);
|
|
String_t* L_2;
|
|
L_2 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral924007ED054F82D9429F46EA3884D176E0DB744B)), L_1, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_3, L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:125>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_4 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
uint32_t L_5 = ___0_value;
|
|
L_4->___sizeInBytes = (uint16_t)((int32_t)(uint16_t)L_5);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:126>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C_AdjustorThunk (RuntimeObject* __this, uint32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25566
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEvent_get_eventId_mD480444BF28136F8FF8288C83C4489B9A6B992A0 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:139>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
int32_t L_1 = L_0->___eventId;
|
|
return ((int32_t)((int64_t)(((int64_t)L_1)&((int64_t)((int32_t)2147483647LL)))));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputEvent_get_eventId_mD480444BF28136F8FF8288C83C4489B9A6B992A0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputEvent_get_eventId_mD480444BF28136F8FF8288C83C4489B9A6B992A0(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25567
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_eventId_mD95C6CF817314B3C83EA67E5B7A2898ADEE8BE74 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:140>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
int32_t L_1 = ___0_value;
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_2 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
int32_t L_3 = L_2->___eventId;
|
|
L_0->___eventId = ((int32_t)(L_1|((int32_t)((int64_t)(((int64_t)L_3)&((int64_t)(uint64_t)((uint32_t)((int32_t)-2147483648LL))))))));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEvent_set_eventId_mD95C6CF817314B3C83EA67E5B7A2898ADEE8BE74_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
InputEvent_set_eventId_mD95C6CF817314B3C83EA67E5B7A2898ADEE8BE74(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25568
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEvent_get_deviceId_m42DC07D2AB46922D79E0A3B9E31FA31E0FD90B6C (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:156>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
uint16_t L_1 = L_0->___deviceId;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputEvent_get_deviceId_m42DC07D2AB46922D79E0A3B9E31FA31E0FD90B6C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputEvent_get_deviceId_m42DC07D2AB46922D79E0A3B9E31FA31E0FD90B6C(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25569
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_deviceId_mED2CE48AD37BA360710E9C5B48D46D2A18A4BDDF (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:157>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
int32_t L_1 = ___0_value;
|
|
L_0->___deviceId = (uint16_t)((int32_t)(uint16_t)L_1);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEvent_set_deviceId_mED2CE48AD37BA360710E9C5B48D46D2A18A4BDDF_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
InputEvent_set_deviceId_mED2CE48AD37BA360710E9C5B48D46D2A18A4BDDF(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25570
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEvent_get_time_mD4A6C01A2B7BFB9ECAD089197C573886E3F70ADB (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:174>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
double L_1 = L_0->___time;
|
|
double L_2 = ((InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var))->___s_CurrentTimeOffsetToRealtimeSinceStartup;
|
|
return ((double)il2cpp_codegen_subtract(L_1, L_2));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C double InputEvent_get_time_mD4A6C01A2B7BFB9ECAD089197C573886E3F70ADB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
double _returnValue;
|
|
_returnValue = InputEvent_get_time_mD4A6C01A2B7BFB9ECAD089197C573886E3F70ADB(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25571
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_time_m210F97B604C0EEB53FC6CC4D57A10373FC081A0F (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:175>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
double L_1 = ___0_value;
|
|
double L_2 = ((InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var))->___s_CurrentTimeOffsetToRealtimeSinceStartup;
|
|
L_0->___time = ((double)il2cpp_codegen_add(L_1, L_2));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEvent_set_time_m210F97B604C0EEB53FC6CC4D57A10373FC081A0F_AdjustorThunk (RuntimeObject* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
InputEvent_set_time_m210F97B604C0EEB53FC6CC4D57A10373FC081A0F(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25572
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEvent_get_internalTime_m6EBE99BC7B0CD35B2B3670A9B5DE003AB3FDA708 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:188>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
double L_1 = L_0->___time;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C double InputEvent_get_internalTime_m6EBE99BC7B0CD35B2B3670A9B5DE003AB3FDA708_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
double _returnValue;
|
|
_returnValue = InputEvent_get_internalTime_m6EBE99BC7B0CD35B2B3670A9B5DE003AB3FDA708(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25573
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_internalTime_m914C4E1111E2A886D56B9D0A888ECE911F894980 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:189>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
double L_1 = ___0_value;
|
|
L_0->___time = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEvent_set_internalTime_m914C4E1111E2A886D56B9D0A888ECE911F894980_AdjustorThunk (RuntimeObject* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
InputEvent_set_internalTime_m914C4E1111E2A886D56B9D0A888ECE911F894980(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25574
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_type, int32_t ___1_sizeInBytes, int32_t ___2_deviceId, double ___3_time, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:195>
|
|
double L_0 = ___3_time;
|
|
if ((!(((double)L_0) < ((double)(0.0)))))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:196>
|
|
RuntimeObject* L_1 = ((InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var))->___s_Instance;
|
|
NullCheck(L_1);
|
|
double L_2;
|
|
L_2 = InterfaceFuncInvoker0< double >::Invoke(19, IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var, L_1);
|
|
___3_time = L_2;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:198>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_3 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_4 = ___0_type;
|
|
int32_t L_5;
|
|
L_5 = FourCC_op_Implicit_mC296B4E8C4929EACBB7066BB9856C116EE082A7B_inline(L_4, NULL);
|
|
L_3->___type = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:199>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_6 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
int32_t L_7 = ___1_sizeInBytes;
|
|
L_6->___sizeInBytes = (uint16_t)((int32_t)(uint16_t)L_7);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:200>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_8 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
int32_t L_9 = ___2_deviceId;
|
|
L_8->___deviceId = (uint16_t)((int32_t)(uint16_t)L_9);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:201>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_10 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
double L_11 = ___3_time;
|
|
L_10->___time = L_11;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:202>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_12 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
L_12->___eventId = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:203>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924_AdjustorThunk (RuntimeObject* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_type, int32_t ___1_sizeInBytes, int32_t ___2_deviceId, double ___3_time, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924(_thisAdjusted, ___0_type, ___1_sizeInBytes, ___2_deviceId, ___3_time, method);
|
|
}
|
|
// Method Definition Index: 25575
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEvent_get_handled_m354E53F68FA517142B4A53287BF738545F792468 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:212>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_0 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
int32_t L_1 = L_0->___eventId;
|
|
return (bool)((((int64_t)((int64_t)(((int64_t)L_1)&((int64_t)(uint64_t)((uint32_t)((int32_t)-2147483648LL)))))) == ((int64_t)((int64_t)(uint64_t)((uint32_t)((int32_t)-2147483648LL)))))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool InputEvent_get_handled_m354E53F68FA517142B4A53287BF738545F792468_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = InputEvent_get_handled_m354E53F68FA517142B4A53287BF738545F792468(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25576
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEvent_set_handled_mF2F5A1872BA2D7F585F1275825B622342EB93A16 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:215>
|
|
bool L_0 = ___0_value;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:216>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_1 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_2 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
int32_t L_3 = L_2->___eventId;
|
|
L_1->___eventId = ((int32_t)((int64_t)(((int64_t)L_3)|((int64_t)(uint64_t)((uint32_t)((int32_t)-2147483648LL))))));
|
|
return;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:218>
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_4 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_5 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&__this->___m_Event);
|
|
int32_t L_6 = L_5->___eventId;
|
|
L_4->___eventId = ((int32_t)((int64_t)(((int64_t)L_6)&((int64_t)((int32_t)2147483647LL)))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:219>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEvent_set_handled_mF2F5A1872BA2D7F585F1275825B622342EB93A16_AdjustorThunk (RuntimeObject* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
InputEvent_set_handled_mF2F5A1872BA2D7F585F1275825B622342EB93A16(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25577
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputEvent_ToString_mA533C298897220B7CC970408EDBAB35D9870B27C (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8D5235574444C342D8D4E761289705C697DD73F);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:224>
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)5);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
|
|
int32_t L_2;
|
|
L_2 = InputEvent_get_eventId_mD480444BF28136F8FF8288C83C4489B9A6B992A0(__this, NULL);
|
|
int32_t L_3 = L_2;
|
|
RuntimeObject* L_4 = Box(il2cpp_defaults.int32_class, &L_3);
|
|
NullCheck(L_1);
|
|
ArrayElementTypeCheck (L_1, L_4);
|
|
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_4);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_1;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_6;
|
|
L_6 = InputEvent_get_type_m43737750FDCCFDF4FC208C9AFFCB5E9D2672733D(__this, NULL);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_7 = L_6;
|
|
RuntimeObject* L_8 = Box(FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED_il2cpp_TypeInfo_var, &L_7);
|
|
NullCheck(L_5);
|
|
ArrayElementTypeCheck (L_5, L_8);
|
|
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_8);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = L_5;
|
|
int32_t L_10;
|
|
L_10 = InputEvent_get_deviceId_m42DC07D2AB46922D79E0A3B9E31FA31E0FD90B6C(__this, NULL);
|
|
int32_t L_11 = L_10;
|
|
RuntimeObject* L_12 = Box(il2cpp_defaults.int32_class, &L_11);
|
|
NullCheck(L_9);
|
|
ArrayElementTypeCheck (L_9, L_12);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_12);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_13 = L_9;
|
|
uint32_t L_14;
|
|
L_14 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307(__this, NULL);
|
|
uint32_t L_15 = L_14;
|
|
RuntimeObject* L_16 = Box(il2cpp_defaults.uint32_class, &L_15);
|
|
NullCheck(L_13);
|
|
ArrayElementTypeCheck (L_13, L_16);
|
|
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject*)L_16);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_17 = L_13;
|
|
double L_18;
|
|
L_18 = InputEvent_get_time_mD4A6C01A2B7BFB9ECAD089197C573886E3F70ADB(__this, NULL);
|
|
double L_19 = L_18;
|
|
RuntimeObject* L_20 = Box(il2cpp_defaults.double_class, &L_19);
|
|
NullCheck(L_17);
|
|
ArrayElementTypeCheck (L_17, L_20);
|
|
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject*)L_20);
|
|
String_t* L_21;
|
|
L_21 = String_Format_m918500C1EFB475181349A79989BB79BB36102894(_stringLiteralD8D5235574444C342D8D4E761289705C697DD73F, L_17, NULL);
|
|
return L_21;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* InputEvent_ToString_mA533C298897220B7CC970408EDBAB35D9870B27C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = InputEvent_ToString_mA533C298897220B7CC970408EDBAB35D9870B27C(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25578
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEvent_GetNextInMemory_mC3AFC8F09360ED6791DCF32F2788143DDF139E21 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_currentPtr, const RuntimeMethod* method)
|
|
{
|
|
uint32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:241>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___0_currentPtr;
|
|
uint32_t L_1;
|
|
L_1 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_0, NULL);
|
|
uint32_t L_2;
|
|
L_2 = NumberHelpers_AlignToMultipleOf_m44B66C972BC1F508B9022564F265D1AA6A001AAE_inline(L_1, 4, NULL);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:242>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = ___0_currentPtr;
|
|
uint32_t L_4 = V_0;
|
|
return ((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)il2cpp_codegen_add((intptr_t)L_3, (intptr_t)((uintptr_t)L_4)));
|
|
}
|
|
}
|
|
// Method Definition Index: 25579
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEvent_GetNextInMemoryChecked_m93A70165EF89707799F4E4F5935C74B620B709DB (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_currentPtr, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___1_buffer, const RuntimeMethod* method)
|
|
{
|
|
uint32_t V_0 = 0;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:257>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___0_currentPtr;
|
|
uint32_t L_1;
|
|
L_1 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_0, NULL);
|
|
uint32_t L_2;
|
|
L_2 = NumberHelpers_AlignToMultipleOf_m44B66C972BC1F508B9022564F265D1AA6A001AAE_inline(L_1, 4, NULL);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:258>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = ___0_currentPtr;
|
|
uint32_t L_4 = V_0;
|
|
V_1 = ((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)il2cpp_codegen_add((intptr_t)L_3, (intptr_t)((uintptr_t)L_4)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:260>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_5 = ___1_buffer;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_6 = V_1;
|
|
bool L_7;
|
|
L_7 = InputEventBuffer_Contains_mEF30027B0EE35896B8D4FA411A32F2EA3721B54F(L_5, L_6, NULL);
|
|
if (L_7)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:261>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:262>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_8 = ___0_currentPtr;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline((&L_9), L_8, NULL);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_10 = L_9;
|
|
RuntimeObject* L_11 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var)), &L_10);
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_12 = ___1_buffer;
|
|
int64_t L_13;
|
|
L_13 = InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline(L_12, NULL);
|
|
int64_t L_14 = L_13;
|
|
RuntimeObject* L_15 = Box(il2cpp_defaults.int64_class, &L_14);
|
|
String_t* L_16;
|
|
L_16 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral08FB9129CB5911626293A76FA9EA45A589D9966E)), L_11, L_15, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_17 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_17, L_16, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEvent_GetNextInMemoryChecked_m93A70165EF89707799F4E4F5935C74B620B709DB_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:264>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_18 = V_1;
|
|
return L_18;
|
|
}
|
|
}
|
|
// Method Definition Index: 25580
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEvent_Equals_mF8510591E2F00D7E016EA452DA26981FEA81AEAD (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_first, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___1_second, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:269>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___0_first;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = ___1_second;
|
|
if ((!(((uintptr_t)L_0) == ((uintptr_t)L_1))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:270>
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:271>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = ___0_first;
|
|
if ((((intptr_t)L_2) == ((intptr_t)((uintptr_t)0))))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = ___1_second;
|
|
if ((!(((uintptr_t)L_3) == ((uintptr_t)((uintptr_t)0)))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:272>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:274>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_4 = ___0_first;
|
|
NullCheck(L_4);
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_5 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&L_4->___m_Event);
|
|
uint16_t L_6 = L_5->___sizeInBytes;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_7 = ___1_second;
|
|
NullCheck(L_7);
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_8 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&L_7->___m_Event);
|
|
uint16_t L_9 = L_8->___sizeInBytes;
|
|
if ((((int32_t)L_6) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:275>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEvent.cs:277>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_10 = ___0_first;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_11 = ___1_second;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_12 = ___0_first;
|
|
NullCheck(L_12);
|
|
NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8* L_13 = (NativeInputEvent_tDE7DE9A48ACA442A8D37E2920836D00C26408CB8*)(&L_12->___m_Event);
|
|
uint16_t L_14 = L_13->___sizeInBytes;
|
|
int32_t L_15;
|
|
L_15 = UnsafeUtility_MemCmp_mA0E0E1A93F715105E7B576F1603DCAB37717A5EF((void*)L_10, (void*)L_11, ((int64_t)(uint64_t)((uint32_t)L_14)), NULL);
|
|
return (bool)((((int32_t)L_15) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___m_Buffer = unmarshaled.___m_Buffer;
|
|
marshaled.___m_SizeInBytes = unmarshaled.___m_SizeInBytes;
|
|
marshaled.___m_EventCount = unmarshaled.___m_EventCount;
|
|
marshaled.___m_WeOwnTheBuffer = static_cast<int32_t>(unmarshaled.___m_WeOwnTheBuffer);
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_back(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke& marshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled)
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_Buffer_temp_0;
|
|
memset((&unmarshaledm_Buffer_temp_0), 0, sizeof(unmarshaledm_Buffer_temp_0));
|
|
unmarshaledm_Buffer_temp_0 = marshaled.___m_Buffer;
|
|
unmarshaled.___m_Buffer = unmarshaledm_Buffer_temp_0;
|
|
int64_t unmarshaledm_SizeInBytes_temp_1 = 0;
|
|
unmarshaledm_SizeInBytes_temp_1 = marshaled.___m_SizeInBytes;
|
|
unmarshaled.___m_SizeInBytes = unmarshaledm_SizeInBytes_temp_1;
|
|
int32_t unmarshaledm_EventCount_temp_2 = 0;
|
|
unmarshaledm_EventCount_temp_2 = marshaled.___m_EventCount;
|
|
unmarshaled.___m_EventCount = unmarshaledm_EventCount_temp_2;
|
|
bool unmarshaledm_WeOwnTheBuffer_temp_3 = false;
|
|
unmarshaledm_WeOwnTheBuffer_temp_3 = static_cast<bool>(marshaled.___m_WeOwnTheBuffer);
|
|
unmarshaled.___m_WeOwnTheBuffer = unmarshaledm_WeOwnTheBuffer_temp_3;
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_cleanup(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___m_Buffer = unmarshaled.___m_Buffer;
|
|
marshaled.___m_SizeInBytes = unmarshaled.___m_SizeInBytes;
|
|
marshaled.___m_EventCount = unmarshaled.___m_EventCount;
|
|
marshaled.___m_WeOwnTheBuffer = static_cast<int32_t>(unmarshaled.___m_WeOwnTheBuffer);
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_back(const InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com& marshaled, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE& unmarshaled)
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_Buffer_temp_0;
|
|
memset((&unmarshaledm_Buffer_temp_0), 0, sizeof(unmarshaledm_Buffer_temp_0));
|
|
unmarshaledm_Buffer_temp_0 = marshaled.___m_Buffer;
|
|
unmarshaled.___m_Buffer = unmarshaledm_Buffer_temp_0;
|
|
int64_t unmarshaledm_SizeInBytes_temp_1 = 0;
|
|
unmarshaledm_SizeInBytes_temp_1 = marshaled.___m_SizeInBytes;
|
|
unmarshaled.___m_SizeInBytes = unmarshaledm_SizeInBytes_temp_1;
|
|
int32_t unmarshaledm_EventCount_temp_2 = 0;
|
|
unmarshaledm_EventCount_temp_2 = marshaled.___m_EventCount;
|
|
unmarshaled.___m_EventCount = unmarshaledm_EventCount_temp_2;
|
|
bool unmarshaledm_WeOwnTheBuffer_temp_3 = false;
|
|
unmarshaledm_WeOwnTheBuffer_temp_3 = static_cast<bool>(marshaled.___m_WeOwnTheBuffer);
|
|
unmarshaled.___m_WeOwnTheBuffer = unmarshaledm_WeOwnTheBuffer_temp_3;
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_cleanup(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// Method Definition Index: 25581
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventBuffer_get_eventCount_mD120699C5A1CEBA76C878BC37DB2E39458F56C8E (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:33>
|
|
int32_t L_0 = __this->___m_EventCount;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputEventBuffer_get_eventCount_mD120699C5A1CEBA76C878BC37DB2E39458F56C8E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputEventBuffer_get_eventCount_mD120699C5A1CEBA76C878BC37DB2E39458F56C8E_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25582
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:46>
|
|
int64_t L_0 = __this->___m_SizeInBytes;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int64_t InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
int64_t _returnValue;
|
|
_returnValue = InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25583
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventBuffer_get_capacityInBytes_m880911F29058AFF745E74D509EB224261374089B (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:61>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)(&__this->___m_Buffer);
|
|
bool L_1;
|
|
L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline(L_0, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
|
|
if (L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:62>
|
|
return ((int64_t)0);
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:64>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_2 = (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)(&__this->___m_Buffer);
|
|
int32_t L_3;
|
|
L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH((L_2)->___m_Length);
|
|
return ((int64_t)L_3);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int64_t InputEventBuffer_get_capacityInBytes_m880911F29058AFF745E74D509EB224261374089B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
int64_t _returnValue;
|
|
_returnValue = InputEventBuffer_get_capacityInBytes_m880911F29058AFF745E74D509EB224261374089B(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25584
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:72>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_0 = __this->___m_Buffer;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF _returnValue;
|
|
_returnValue = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25585
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventBuffer_get_bufferPtr_m7C5E03ED8F0433B3CD4F019DFADDE3983472DACB (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:82>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_0 = __this->___m_Buffer;
|
|
void* L_1;
|
|
L_1 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D(L_0, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2;
|
|
L_2 = InputEventPtr_op_Implicit_mDCFA11963BDC8B0D5C92A516EBE7F9C7A0B15191((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventBuffer_get_bufferPtr_m7C5E03ED8F0433B3CD4F019DFADDE3983472DACB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 _returnValue;
|
|
_returnValue = InputEventBuffer_get_bufferPtr_m7C5E03ED8F0433B3CD4F019DFADDE3983472DACB(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25586
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, int32_t ___1_eventCount, int32_t ___2_sizeInBytes, int32_t ___3_capacityInBytes, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* G_B11_0 = NULL;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B11_1 = NULL;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* G_B10_0 = NULL;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B10_1 = NULL;
|
|
int32_t G_B12_0 = 0;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* G_B12_1 = NULL;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B12_2 = NULL;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B14_0 = NULL;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B13_0 = NULL;
|
|
int64_t G_B15_0 = 0;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B15_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:101>
|
|
il2cpp_codegen_initobj(__this, sizeof(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:103>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___0_eventPtr;
|
|
if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0)))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___1_eventCount;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:104>
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD52F14A7E64122290D63B7EF4B3530CB47A85E14)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD23E6251FEEFC7CF204F3BB7E43B14EE901517E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:105>
|
|
int32_t L_3 = ___3_capacityInBytes;
|
|
if (!L_3)
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4 = ___3_capacityInBytes;
|
|
int32_t L_5 = ___2_sizeInBytes;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:106>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:107>
|
|
int32_t L_6 = ___3_capacityInBytes;
|
|
int32_t L_7 = L_6;
|
|
RuntimeObject* L_8 = Box(il2cpp_defaults.int32_class, &L_7);
|
|
int32_t L_9 = ___2_sizeInBytes;
|
|
int32_t L_10 = L_9;
|
|
RuntimeObject* L_11 = Box(il2cpp_defaults.int32_class, &L_10);
|
|
String_t* L_12;
|
|
L_12 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB2A6BBCEEF1288495F26EB3470ACB3FD27C456E3)), L_8, L_11, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_13 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_13, L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral894192F113AFCA62FF819992911789F3CD2A99BF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:109>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_14 = ___0_eventPtr;
|
|
if ((((intptr_t)L_14) == ((intptr_t)((uintptr_t)0))))
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:111>
|
|
int32_t L_15 = ___3_capacityInBytes;
|
|
if ((((int32_t)L_15) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:112>
|
|
int32_t L_16 = ___2_sizeInBytes;
|
|
___3_capacityInBytes = L_16;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:114>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:115>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_17 = ___0_eventPtr;
|
|
int32_t L_18 = ___3_capacityInBytes;
|
|
if ((((int32_t)L_18) > ((int32_t)0)))
|
|
{
|
|
G_B11_0 = L_17;
|
|
G_B11_1 = __this;
|
|
goto IL_0061;
|
|
}
|
|
G_B10_0 = L_17;
|
|
G_B10_1 = __this;
|
|
}
|
|
{
|
|
G_B12_0 = 0;
|
|
G_B12_1 = G_B10_0;
|
|
G_B12_2 = G_B10_1;
|
|
goto IL_0063;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
int32_t L_19 = ___3_capacityInBytes;
|
|
G_B12_0 = L_19;
|
|
G_B12_1 = G_B11_0;
|
|
G_B12_2 = G_B11_1;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_20;
|
|
L_20 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA((void*)G_B12_1, G_B12_0, 1, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_RuntimeMethod_var);
|
|
G_B12_2->___m_Buffer = L_20;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:116>
|
|
int32_t L_21 = ___2_sizeInBytes;
|
|
if ((((int32_t)L_21) >= ((int32_t)0)))
|
|
{
|
|
G_B14_0 = __this;
|
|
goto IL_0077;
|
|
}
|
|
G_B13_0 = __this;
|
|
}
|
|
{
|
|
G_B15_0 = ((int64_t)(-1));
|
|
G_B15_1 = G_B13_0;
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
int32_t L_22 = ___2_sizeInBytes;
|
|
G_B15_0 = ((int64_t)L_22);
|
|
G_B15_1 = G_B14_0;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
G_B15_1->___m_SizeInBytes = G_B15_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:117>
|
|
int32_t L_23 = ___1_eventCount;
|
|
__this->___m_EventCount = L_23;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:118>
|
|
__this->___m_WeOwnTheBuffer = (bool)0;
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:120>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3_AdjustorThunk (RuntimeObject* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, int32_t ___1_eventCount, int32_t ___2_sizeInBytes, int32_t ___3_capacityInBytes, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3(_thisAdjusted, ___0_eventPtr, ___1_eventCount, ___2_sizeInBytes, ___3_capacityInBytes, method);
|
|
}
|
|
// Method Definition Index: 25587
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer__ctor_mE2DE130D019FEE1A6E4DE07D0EDA233F7008D50B (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_buffer, int32_t ___1_eventCount, int32_t ___2_sizeInBytes, bool ___3_transferNativeArrayOwnership, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B7_0 = NULL;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B6_0 = NULL;
|
|
int32_t G_B8_0 = 0;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* G_B8_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:139>
|
|
int32_t L_0 = ___1_eventCount;
|
|
if ((((int32_t)L_0) <= ((int32_t)0)))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
bool L_1;
|
|
L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline((&___0_buffer), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
|
|
if (L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:140>
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC2451B8C6D92CA7D8CE2544B065B761C4B4C9647)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD23E6251FEEFC7CF204F3BB7E43B14EE901517E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer__ctor_mE2DE130D019FEE1A6E4DE07D0EDA233F7008D50B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:141>
|
|
int32_t L_3 = ___2_sizeInBytes;
|
|
int32_t L_4;
|
|
L_4 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&___0_buffer))->___m_Length);
|
|
if ((((int32_t)L_3) <= ((int32_t)L_4)))
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:142>
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9185A9C6A1BF633445844194B5073A9E7D587F4D)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer__ctor_mE2DE130D019FEE1A6E4DE07D0EDA233F7008D50B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:144>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_6 = ___0_buffer;
|
|
__this->___m_Buffer = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:145>
|
|
bool L_7 = ___3_transferNativeArrayOwnership;
|
|
__this->___m_WeOwnTheBuffer = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:146>
|
|
int32_t L_8 = ___2_sizeInBytes;
|
|
if ((((int32_t)L_8) >= ((int32_t)0)))
|
|
{
|
|
G_B7_0 = __this;
|
|
goto IL_004f;
|
|
}
|
|
G_B6_0 = __this;
|
|
}
|
|
{
|
|
int32_t L_9;
|
|
L_9 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&___0_buffer))->___m_Length);
|
|
G_B8_0 = L_9;
|
|
G_B8_1 = G_B6_0;
|
|
goto IL_0050;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
int32_t L_10 = ___2_sizeInBytes;
|
|
G_B8_0 = L_10;
|
|
G_B8_1 = G_B7_0;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
G_B8_1->___m_SizeInBytes = ((int64_t)G_B8_0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:147>
|
|
int32_t L_11 = ___1_eventCount;
|
|
__this->___m_EventCount = L_11;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:148>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventBuffer__ctor_mE2DE130D019FEE1A6E4DE07D0EDA233F7008D50B_AdjustorThunk (RuntimeObject* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_buffer, int32_t ___1_eventCount, int32_t ___2_sizeInBytes, bool ___3_transferNativeArrayOwnership, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
InputEventBuffer__ctor_mE2DE130D019FEE1A6E4DE07D0EDA233F7008D50B(_thisAdjusted, ___0_buffer, ___1_eventCount, ___2_sizeInBytes, ___3_transferNativeArrayOwnership, method);
|
|
}
|
|
// Method Definition Index: 25588
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_AppendEvent_mAEC914B9C5C5534378199FF5C35D7EB57215E011 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, int32_t ___1_capacityIncrementInBytes, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
uint32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:166>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___0_eventPtr;
|
|
if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0)))))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:167>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBA67382D61289B0EDBD1CD867DE673562B9B5111)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer_AppendEvent_mAEC914B9C5C5534378199FF5C35D7EB57215E011_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:170>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = ___0_eventPtr;
|
|
uint32_t L_3;
|
|
L_3 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_2, NULL);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:171>
|
|
uint32_t L_4 = V_0;
|
|
int32_t L_5 = ___1_capacityIncrementInBytes;
|
|
int32_t L_6 = ___2_allocator;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_7;
|
|
L_7 = InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C(__this, L_4, L_5, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:174>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_8 = ___0_eventPtr;
|
|
uint32_t L_9 = V_0;
|
|
UnsafeUtility_MemCpy_m5CEA91ACDADC522E584AE3A2AB2B0B74393A9177((void*)L_7, (void*)L_8, ((int64_t)(uint64_t)((uint32_t)L_9)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:175>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventBuffer_AppendEvent_mAEC914B9C5C5534378199FF5C35D7EB57215E011_AdjustorThunk (RuntimeObject* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, int32_t ___1_capacityIncrementInBytes, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
InputEventBuffer_AppendEvent_mAEC914B9C5C5534378199FF5C35D7EB57215E011(_thisAdjusted, ___0_eventPtr, ___1_capacityIncrementInBytes, ___2_allocator, method);
|
|
}
|
|
// Method Definition Index: 25589
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, int32_t ___0_sizeInBytes, int32_t ___1_capacityIncrementInBytes, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_2 = NULL;
|
|
int64_t V_3 = 0;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:197>
|
|
int32_t L_0 = ___0_sizeInBytes;
|
|
if ((((int32_t)L_0) >= ((int32_t)((int32_t)20))))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:198>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:199>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:200>
|
|
int32_t L_1 = ((int32_t)20);
|
|
RuntimeObject* L_2 = Box(il2cpp_defaults.int32_class, &L_1);
|
|
int32_t L_3 = ___0_sizeInBytes;
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(il2cpp_defaults.int32_class, &L_4);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral75C2382105EE7550A774237E98EAB4B761429404)), L_2, L_5, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_7, L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9185A9C6A1BF633445844194B5073A9E7D587F4D)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:202>
|
|
int32_t L_8 = ___0_sizeInBytes;
|
|
int32_t L_9;
|
|
L_9 = NumberHelpers_AlignToMultipleOf_m1DD6F7938F5F4EA99168EFE5AAD4604972F2FB6D_inline(L_8, 4, NULL);
|
|
V_0 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:205>
|
|
int64_t L_10 = __this->___m_SizeInBytes;
|
|
int32_t L_11 = V_0;
|
|
V_1 = ((int64_t)il2cpp_codegen_add(L_10, ((int64_t)L_11)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:206>
|
|
int64_t L_12;
|
|
L_12 = InputEventBuffer_get_capacityInBytes_m880911F29058AFF745E74D509EB224261374089B(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:207>
|
|
int64_t L_13 = V_1;
|
|
if ((((int64_t)L_12) >= ((int64_t)L_13)))
|
|
{
|
|
goto IL_00b6;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:211>
|
|
int64_t L_14 = V_1;
|
|
int32_t L_15 = ___1_capacityIncrementInBytes;
|
|
int64_t L_16;
|
|
L_16 = NumberHelpers_AlignToMultipleOf_mA09DADDCE6E50FA990B046BD74822886B94BFA6D_inline(L_14, ((int64_t)L_15), NULL);
|
|
V_3 = L_16;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:212>
|
|
int64_t L_17 = V_3;
|
|
if ((((int64_t)L_17) <= ((int64_t)((int64_t)((int32_t)2147483647LL)))))
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:213>
|
|
NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_18 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var)));
|
|
NotImplementedException__ctor_m8339D1A685E8D77CAC9D3260C06B38B5C7CA7742(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral682C94355936D06676EFEE25A133C60E3F8445C8)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:214>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:215>
|
|
int64_t L_19 = V_3;
|
|
int32_t L_20 = ___2_allocator;
|
|
NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F((&V_4), ((int32_t)L_19), L_20, 1, NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:217>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_21 = (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)(&__this->___m_Buffer);
|
|
bool L_22;
|
|
L_22 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline(L_21, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
|
|
if (!L_22)
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:219>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:220>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:221>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_23 = V_4;
|
|
void* L_24;
|
|
L_24 = NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2(L_23, NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2_RuntimeMethod_var);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_25 = __this->___m_Buffer;
|
|
void* L_26;
|
|
L_26 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D(L_25, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var);
|
|
int64_t L_27;
|
|
L_27 = InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline(__this, NULL);
|
|
UnsafeUtility_MemCpy_m5CEA91ACDADC522E584AE3A2AB2B0B74393A9177(L_24, L_26, L_27, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:223>
|
|
bool L_28 = __this->___m_WeOwnTheBuffer;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:224>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_29 = (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)(&__this->___m_Buffer);
|
|
NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA(L_29, NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:227>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_30 = V_4;
|
|
__this->___m_Buffer = L_30;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:228>
|
|
__this->___m_WeOwnTheBuffer = (bool)1;
|
|
}
|
|
|
|
IL_00b6:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:231>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_31 = __this->___m_Buffer;
|
|
void* L_32;
|
|
L_32 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D(L_31, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var);
|
|
int64_t L_33 = __this->___m_SizeInBytes;
|
|
V_2 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((void*)il2cpp_codegen_add((intptr_t)L_32, ((intptr_t)L_33)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:232>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_34 = V_2;
|
|
int32_t L_35 = ___0_sizeInBytes;
|
|
InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_34, L_35, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:233>
|
|
int64_t L_36 = __this->___m_SizeInBytes;
|
|
int32_t L_37 = V_0;
|
|
__this->___m_SizeInBytes = ((int64_t)il2cpp_codegen_add(L_36, ((int64_t)L_37)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:234>
|
|
int32_t L_38 = __this->___m_EventCount;
|
|
__this->___m_EventCount = ((int32_t)il2cpp_codegen_add(L_38, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:236>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_39 = V_2;
|
|
return L_39;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C_AdjustorThunk (RuntimeObject* __this, int32_t ___0_sizeInBytes, int32_t ___1_capacityIncrementInBytes, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _returnValue;
|
|
_returnValue = InputEventBuffer_AllocateEvent_m8B8C57E4A0764F048F9FC7D61B9E1329A6A2BC7C(_thisAdjusted, ___0_sizeInBytes, ___1_capacityIncrementInBytes, ___2_allocator, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25590
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventBuffer_Contains_mEF30027B0EE35896B8D4FA411A32F2EA3721B54F (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
void* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:253>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___0_eventPtr;
|
|
if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0)))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:254>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:256>
|
|
int64_t L_1;
|
|
L_1 = InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline(__this, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:257>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:259>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_2;
|
|
L_2 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(__this, NULL);
|
|
void* L_3;
|
|
L_3 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D(L_2, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:260>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_4 = ___0_eventPtr;
|
|
void* L_5 = V_0;
|
|
if ((!(((uintptr_t)L_4) < ((uintptr_t)L_5))))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:261>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:263>
|
|
int64_t L_6;
|
|
L_6 = InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline(__this, NULL);
|
|
if ((((int64_t)L_6) == ((int64_t)((int64_t)(-1)))))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_7 = ___0_eventPtr;
|
|
void* L_8 = V_0;
|
|
int64_t L_9;
|
|
L_9 = InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline(__this, NULL);
|
|
if ((!(((uintptr_t)L_7) >= ((uintptr_t)((void*)il2cpp_codegen_add((intptr_t)L_8, ((intptr_t)L_9)))))))
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:264>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:266>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool InputEventBuffer_Contains_mEF30027B0EE35896B8D4FA411A32F2EA3721B54F_AdjustorThunk (RuntimeObject* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = InputEventBuffer_Contains_mEF30027B0EE35896B8D4FA411A32F2EA3721B54F(_thisAdjusted, ___0_eventPtr, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25591
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_Reset_m9E41B3CE9C7556C62AFC55772D7D4FBA8A99360B (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:271>
|
|
__this->___m_EventCount = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:272>
|
|
int64_t L_0 = __this->___m_SizeInBytes;
|
|
if ((((int64_t)L_0) == ((int64_t)((int64_t)(-1)))))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:273>
|
|
__this->___m_SizeInBytes = ((int64_t)0);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:274>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventBuffer_Reset_m9E41B3CE9C7556C62AFC55772D7D4FBA8A99360B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
InputEventBuffer_Reset_m9E41B3CE9C7556C62AFC55772D7D4FBA8A99360B(_thisAdjusted, method);
|
|
}
|
|
// Method Definition Index: 25592
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_AdvanceToNextEvent_m2A711A2AA87D26A027FFE4EFD01EBD296EE0B283 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** ___0_currentReadPos, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** ___1_currentWritePos, int32_t* ___2_numEventsRetainedInBuffer, int32_t* ___3_numRemainingEvents, bool ___4_leaveEventInBuffer, const RuntimeMethod* method)
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_0 = NULL;
|
|
uint32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:297>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_0 = ___0_currentReadPos;
|
|
intptr_t L_1 = *((intptr_t*)L_0);
|
|
V_0 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:298>
|
|
int32_t* L_2 = ___3_numRemainingEvents;
|
|
int32_t L_3 = *((int32_t*)L_2);
|
|
if ((((int32_t)L_3) <= ((int32_t)1)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:304>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_4 = ___0_currentReadPos;
|
|
intptr_t L_5 = *((intptr_t*)L_4);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_6;
|
|
L_6 = InputEvent_GetNextInMemory_mC3AFC8F09360ED6791DCF32F2788143DDF139E21((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_5, NULL);
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:309>
|
|
bool L_7 = ___4_leaveEventInBuffer;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:314>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_8 = ___0_currentReadPos;
|
|
intptr_t L_9 = *((intptr_t*)L_8);
|
|
uint32_t L_10;
|
|
L_10 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_9, NULL);
|
|
V_1 = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:315>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_11 = ___0_currentReadPos;
|
|
intptr_t L_12 = *((intptr_t*)L_11);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_13 = ___1_currentWritePos;
|
|
intptr_t L_14 = *((intptr_t*)L_13);
|
|
if ((((intptr_t)L_12) == ((intptr_t)L_14)))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:316>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_15 = ___1_currentWritePos;
|
|
intptr_t L_16 = *((intptr_t*)L_15);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_17 = ___0_currentReadPos;
|
|
intptr_t L_18 = *((intptr_t*)L_17);
|
|
uint32_t L_19 = V_1;
|
|
UnsafeUtility_MemMove_m4799FAA9C4BCFA1AEDC6ED01BB9A6DF657C4CEE3((void*)L_16, (void*)L_18, ((int64_t)(uint64_t)((uint32_t)L_19)), NULL);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:317>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_20 = ___1_currentWritePos;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_21 = ___1_currentWritePos;
|
|
intptr_t L_22 = *((intptr_t*)L_21);
|
|
uint32_t L_23 = V_1;
|
|
uint32_t L_24;
|
|
L_24 = NumberHelpers_AlignToMultipleOf_m44B66C972BC1F508B9022564F265D1AA6A001AAE_inline(L_23, 4, NULL);
|
|
*((intptr_t*)L_20) = (intptr_t)((intptr_t)il2cpp_codegen_add(L_22, (intptr_t)((uintptr_t)L_24)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:318>
|
|
int32_t* L_25 = ___2_numEventsRetainedInBuffer;
|
|
int32_t* L_26 = ___2_numEventsRetainedInBuffer;
|
|
int32_t L_27 = *((int32_t*)L_26);
|
|
*((int32_t*)L_25) = (int32_t)((int32_t)il2cpp_codegen_add(L_27, 1));
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:321>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_28 = ___0_currentReadPos;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_29 = V_0;
|
|
*((intptr_t*)L_28) = (intptr_t)L_29;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:322>
|
|
int32_t* L_30 = ___3_numRemainingEvents;
|
|
int32_t* L_31 = ___3_numRemainingEvents;
|
|
int32_t L_32 = *((int32_t*)L_31);
|
|
*((int32_t*)L_30) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_32, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:323>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventBuffer_AdvanceToNextEvent_m2A711A2AA87D26A027FFE4EFD01EBD296EE0B283_AdjustorThunk (RuntimeObject* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** ___0_currentReadPos, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** ___1_currentWritePos, int32_t* ___2_numEventsRetainedInBuffer, int32_t* ___3_numRemainingEvents, bool ___4_leaveEventInBuffer, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
InputEventBuffer_AdvanceToNextEvent_m2A711A2AA87D26A027FFE4EFD01EBD296EE0B283(_thisAdjusted, ___0_currentReadPos, ___1_currentWritePos, ___2_numEventsRetainedInBuffer, ___3_numRemainingEvents, ___4_leaveEventInBuffer, method);
|
|
}
|
|
// Method Definition Index: 25593
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_GetEnumerator_m8E92BD380FD5C4F755EA09A6F29503A96063B8E9 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:327>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_0 = (*(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)__this);
|
|
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
Enumerator__ctor_m7E8F2DD4EF823AAE6BED80246AB47FA28D6CBF25((&L_1), L_0, NULL);
|
|
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB_il2cpp_TypeInfo_var, &L_2);
|
|
return (RuntimeObject*)L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* InputEventBuffer_GetEnumerator_m8E92BD380FD5C4F755EA09A6F29503A96063B8E9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = InputEventBuffer_GetEnumerator_m8E92BD380FD5C4F755EA09A6F29503A96063B8E9(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25594
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_System_Collections_IEnumerable_GetEnumerator_mFBF67C909C77C7FF68058E221AC01ED74CB2D340 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:332>
|
|
RuntimeObject* L_0;
|
|
L_0 = InputEventBuffer_GetEnumerator_m8E92BD380FD5C4F755EA09A6F29503A96063B8E9(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* InputEventBuffer_System_Collections_IEnumerable_GetEnumerator_mFBF67C909C77C7FF68058E221AC01ED74CB2D340_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = InputEventBuffer_System_Collections_IEnumerable_GetEnumerator_mFBF67C909C77C7FF68058E221AC01ED74CB2D340(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25595
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventBuffer_Dispose_mC0CD0CC5F58859A221221F1A3FAE84B8EFB5CFF3 (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:338>
|
|
bool L_0 = __this->___m_WeOwnTheBuffer;
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:339>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:343>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_1 = (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)(&__this->___m_Buffer);
|
|
NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA(L_1, NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:344>
|
|
__this->___m_WeOwnTheBuffer = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:345>
|
|
__this->___m_SizeInBytes = ((int64_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:346>
|
|
__this->___m_EventCount = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:347>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventBuffer_Dispose_mC0CD0CC5F58859A221221F1A3FAE84B8EFB5CFF3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
InputEventBuffer_Dispose_mC0CD0CC5F58859A221221F1A3FAE84B8EFB5CFF3(_thisAdjusted, method);
|
|
}
|
|
// Method Definition Index: 25596
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE InputEventBuffer_Clone_mA9E1A893CAF0F4715708C5F20FDEA611F318433E (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_CopyFrom_mCF4D43C37F14A2904C5BA14973DDE501D965DA89_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:351>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:352>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)(&__this->___m_Buffer);
|
|
bool L_1;
|
|
L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline(L_0, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:354>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_2 = (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)(&__this->___m_Buffer);
|
|
int32_t L_3;
|
|
L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH((L_2)->___m_Length);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F((&L_4), L_3, 4, 1, NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
|
|
(&V_0)->___m_Buffer = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:355>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_5 = (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)(&(&V_0)->___m_Buffer);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_6 = __this->___m_Buffer;
|
|
NativeArray_1_CopyFrom_mCF4D43C37F14A2904C5BA14973DDE501D965DA89(L_5, L_6, NativeArray_1_CopyFrom_mCF4D43C37F14A2904C5BA14973DDE501D965DA89_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:356>
|
|
(&V_0)->___m_WeOwnTheBuffer = (bool)1;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:358>
|
|
int64_t L_7 = __this->___m_SizeInBytes;
|
|
(&V_0)->___m_SizeInBytes = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:359>
|
|
int32_t L_8 = __this->___m_EventCount;
|
|
(&V_0)->___m_EventCount = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:360>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE InputEventBuffer_Clone_mA9E1A893CAF0F4715708C5F20FDEA611F318433E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE _returnValue;
|
|
_returnValue = InputEventBuffer_Clone_mA9E1A893CAF0F4715708C5F20FDEA611F318433E(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25597
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventBuffer_System_ICloneable_Clone_m561F47611001D3FD27F0EFE00F6B35419588FE8E (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:365>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_0;
|
|
L_0 = InputEventBuffer_Clone_mA9E1A893CAF0F4715708C5F20FDEA611F318433E(__this, NULL);
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_il2cpp_TypeInfo_var, &L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* InputEventBuffer_System_ICloneable_Clone_m561F47611001D3FD27F0EFE00F6B35419588FE8E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = InputEventBuffer_System_ICloneable_Clone_m561F47611001D3FD27F0EFE00F6B35419588FE8E(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25598
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m7E8F2DD4EF823AAE6BED80246AB47FA28D6CBF25 (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE ___0_buffer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:382>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_0;
|
|
L_0 = InputEventBuffer_get_bufferPtr_m7C5E03ED8F0433B3CD4F019DFADDE3983472DACB((&___0_buffer), NULL);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1;
|
|
L_1 = InputEventPtr_op_Implicit_mB86DFF1D9054A0670DBBDFE4C3A11422F60EB209(L_0, NULL);
|
|
__this->___m_Buffer = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:383>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_2 = ___0_buffer;
|
|
int32_t L_3 = L_2.___m_EventCount;
|
|
__this->___m_EventCount = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:384>
|
|
__this->___m_CurrentEvent = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((uintptr_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:385>
|
|
__this->___m_CurrentIndex = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:386>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Enumerator__ctor_m7E8F2DD4EF823AAE6BED80246AB47FA28D6CBF25_AdjustorThunk (RuntimeObject* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE ___0_buffer, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB*>(__this + _offset);
|
|
Enumerator__ctor_m7E8F2DD4EF823AAE6BED80246AB47FA28D6CBF25(_thisAdjusted, ___0_buffer, method);
|
|
}
|
|
// Method Definition Index: 25599
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mC216F4A5B10FB25897447B0160DFA944959645DB (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:390>
|
|
int32_t L_0 = __this->___m_CurrentIndex;
|
|
int32_t L_1 = __this->___m_EventCount;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:391>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:393>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_CurrentEvent;
|
|
if ((!(((uintptr_t)L_2) == ((uintptr_t)((uintptr_t)0)))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:395>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = __this->___m_Buffer;
|
|
__this->___m_CurrentEvent = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:396>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_4 = __this->___m_CurrentEvent;
|
|
return (bool)((((int32_t)((((intptr_t)L_4) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:401>
|
|
int32_t L_5 = __this->___m_CurrentIndex;
|
|
__this->___m_CurrentIndex = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:402>
|
|
int32_t L_6 = __this->___m_CurrentIndex;
|
|
int32_t L_7 = __this->___m_EventCount;
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)L_7))))
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:403>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:405>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_8 = __this->___m_CurrentEvent;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_9;
|
|
L_9 = InputEvent_GetNextInMemory_mC3AFC8F09360ED6791DCF32F2788143DDF139E21(L_8, NULL);
|
|
__this->___m_CurrentEvent = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:406>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mC216F4A5B10FB25897447B0160DFA944959645DB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = Enumerator_MoveNext_mC216F4A5B10FB25897447B0160DFA944959645DB(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25600
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m15A8D8A03F18E0BBFEB037431DF8AEA7DD13AB9A (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:411>
|
|
__this->___m_CurrentEvent = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((uintptr_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:412>
|
|
__this->___m_CurrentIndex = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:413>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Enumerator_Reset_m15A8D8A03F18E0BBFEB037431DF8AEA7DD13AB9A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB*>(__this + _offset);
|
|
Enumerator_Reset_m15A8D8A03F18E0BBFEB037431DF8AEA7DD13AB9A(_thisAdjusted, method);
|
|
}
|
|
// Method Definition Index: 25601
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mAA913AB7EB32CD2968F0CE0F6419415E4DB4CC61 (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:417>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Enumerator_Dispose_mAA913AB7EB32CD2968F0CE0F6419415E4DB4CC61_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB*>(__this + _offset);
|
|
Enumerator_Dispose_mAA913AB7EB32CD2968F0CE0F6419415E4DB4CC61(_thisAdjusted, method);
|
|
}
|
|
// Method Definition Index: 25602
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 Enumerator_get_Current_mA52496728906BA25D2755DD0668DE3D249015C6C (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:419>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = __this->___m_CurrentEvent;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1;
|
|
L_1 = InputEventPtr_op_Implicit_mDCFA11963BDC8B0D5C92A516EBE7F9C7A0B15191(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 Enumerator_get_Current_mA52496728906BA25D2755DD0668DE3D249015C6C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB*>(__this + _offset);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 _returnValue;
|
|
_returnValue = Enumerator_get_Current_mA52496728906BA25D2755DD0668DE3D249015C6C(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25603
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m165767DDDDCC3984D08238C5201A8D4230A18364 (Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:421>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_0;
|
|
L_0 = Enumerator_get_Current_mA52496728906BA25D2755DD0668DE3D249015C6C(__this, NULL);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var, &L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m165767DDDDCC3984D08238C5201A8D4230A18364_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Enumerator_tE2E93AB92A6D5439BE88C499EF436B1945F2A2EB*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m165767DDDDCC3984D08238C5201A8D4230A18364(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25604
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D InputEventListener_op_Addition_mE4193B2988A4BA5E50D618112E188CEFAB5B6AFC (InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D ___0__, Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___1_callback, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* V_0 = NULL;
|
|
bool V_1 = false;
|
|
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:58>
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_0 = ___1_callback;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:59>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDC71B380AFF23A38F6029B32B61C6943CB960350)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventListener_op_Addition_mE4193B2988A4BA5E50D618112E188CEFAB5B6AFC_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:60>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_2 = ((InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var))->___s_Manager;
|
|
V_0 = L_2;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002b:
|
|
{
|
|
{
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_4 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_4, NULL);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_5 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_5, (&V_1), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:61>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_6 = ((InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var))->___s_Manager;
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_7 = ___1_callback;
|
|
NullCheck(L_6);
|
|
InputManager_add_onEvent_mFC20DA985A46A223DE9A1ADFFD39A5DB0083130C(L_6, L_7, NULL);
|
|
goto IL_0035;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:62>
|
|
il2cpp_codegen_initobj((&V_2), sizeof(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D));
|
|
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_8 = V_2;
|
|
return L_8;
|
|
}
|
|
}
|
|
// Method Definition Index: 25605
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D InputEventListener_op_Subtraction_m1F22563B9F83525FF3046236D787006F931913FA (InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D ___0__, Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* ___1_callback, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* V_0 = NULL;
|
|
bool V_1 = false;
|
|
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:83>
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_0 = ___1_callback;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:84>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDC71B380AFF23A38F6029B32B61C6943CB960350)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventListener_op_Subtraction_m1F22563B9F83525FF3046236D787006F931913FA_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:85>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_2 = ((InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var))->___s_Manager;
|
|
V_0 = L_2;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002b:
|
|
{
|
|
{
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_4 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_4, NULL);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_5 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_5, (&V_1), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:86>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_6 = ((InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var))->___s_Manager;
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_7 = ___1_callback;
|
|
NullCheck(L_6);
|
|
InputManager_remove_onEvent_mA84D2D17A18F63251F21D05802E2F75BC811E8DD(L_6, L_7, NULL);
|
|
goto IL_0035;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:87>
|
|
il2cpp_codegen_initobj((&V_2), sizeof(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D));
|
|
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_8 = V_2;
|
|
return L_8;
|
|
}
|
|
}
|
|
// Method Definition Index: 25606
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventListener_Subscribe_m3ADB3B6392CD85DA61E506AA7D698D4F2E7585D0 (InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D* __this, RuntimeObject* ___0_observer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_AppendWithCapacity_m7D120AE2B1401CD22AEE9DC9662CCC0DC84BBB60_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:109>
|
|
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_0 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState;
|
|
if (L_0)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:110>
|
|
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_1 = (ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8*)il2cpp_codegen_object_new(ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8_il2cpp_TypeInfo_var);
|
|
ObserverState__ctor_mAFCE13C0DF1AE39D4F4E72779FF84824706A48B2(L_1, NULL);
|
|
((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState), (void*)L_1);
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:112>
|
|
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_2 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState;
|
|
NullCheck(L_2);
|
|
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* L_3 = (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5*)(&L_2->___observers);
|
|
int32_t L_4 = L_3->___length;
|
|
if (L_4)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:113>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_5 = ((InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var))->___s_Manager;
|
|
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_6 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState;
|
|
NullCheck(L_6);
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_7 = L_6->___onEventDelegate;
|
|
NullCheck(L_5);
|
|
InputManager_add_onEvent_mFC20DA985A46A223DE9A1ADFFD39A5DB0083130C(L_5, L_7, NULL);
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:115>
|
|
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_8 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState;
|
|
NullCheck(L_8);
|
|
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* L_9 = (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5*)(&L_8->___observers);
|
|
RuntimeObject* L_10 = ___0_observer;
|
|
int32_t L_11;
|
|
L_11 = InlinedArray_1_AppendWithCapacity_m7D120AE2B1401CD22AEE9DC9662CCC0DC84BBB60(L_9, L_10, ((int32_t)10), InlinedArray_1_AppendWithCapacity_m7D120AE2B1401CD22AEE9DC9662CCC0DC84BBB60_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:116>
|
|
DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73* L_12 = (DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73*)il2cpp_codegen_object_new(DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73_il2cpp_TypeInfo_var);
|
|
DisposableObserver__ctor_mAF66BFE27ECE1AFC1C6B2E29B29AF9359C25926F(L_12, NULL);
|
|
DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73* L_13 = L_12;
|
|
RuntimeObject* L_14 = ___0_observer;
|
|
NullCheck(L_13);
|
|
L_13->___observer = L_14;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_13->___observer), (void*)L_14);
|
|
return L_13;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* InputEventListener_Subscribe_m3ADB3B6392CD85DA61E506AA7D698D4F2E7585D0_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_observer, const RuntimeMethod* method)
|
|
{
|
|
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = InputEventListener_Subscribe_m3ADB3B6392CD85DA61E506AA7D698D4F2E7585D0(_thisAdjusted, ___0_observer, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25607
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObserverState__ctor_mAFCE13C0DF1AE39D4F4E72779FF84824706A48B2 (ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObserverState_U3C_ctorU3Eb__2_0_m614AC79FB380B888191060E784E5A18A3A4FF29F_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:124>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:126>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:127>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:128>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:129>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:130>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:131>
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_0 = (Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA*)il2cpp_codegen_object_new(Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
|
|
Action_2__ctor_m43B5BA62418FAB32773B12CEFF46A46855BF5B10(L_0, __this, (intptr_t)((void*)ObserverState_U3C_ctorU3Eb__2_0_m614AC79FB380B888191060E784E5A18A3A4FF29F_RuntimeMethod_var), NULL);
|
|
__this->___onEventDelegate = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___onEventDelegate), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:132>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25608
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObserverState_U3C_ctorU3Eb__2_0_m614AC79FB380B888191060E784E5A18A3A4FF29F (ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_eventPtr, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___1_device, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_get_Item_m9028E5429BC2E916894F7F533B18E2D628C53CD9_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:129>
|
|
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* L_0 = (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5*)(&__this->___observers);
|
|
int32_t L_1 = L_0->___length;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:130>
|
|
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* L_2 = (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5*)(&__this->___observers);
|
|
int32_t L_3 = V_0;
|
|
RuntimeObject* L_4;
|
|
L_4 = InlinedArray_1_get_Item_m9028E5429BC2E916894F7F533B18E2D628C53CD9(L_2, L_3, InlinedArray_1_get_Item_m9028E5429BC2E916894F7F533B18E2D628C53CD9_RuntimeMethod_var);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_5 = ___0_eventPtr;
|
|
NullCheck(L_4);
|
|
InterfaceActionInvoker1< InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 >::Invoke(0, IObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_il2cpp_TypeInfo_var, L_4, L_5);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:129>
|
|
int32_t L_6 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_6, 1));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:129>
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_7) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:131>
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25609
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisposableObserver_Dispose_mDFD3D04615139DC21FB327966A66453EA6F7B81B (DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_RemoveAtWithCapacity_m8C65A9998195061436978BFFC7624D99DFAA3976_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputArrayExtensions_IndexOfReference_TisIObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_mDF245036F6C353CB2B70C5860F90BA16C961E751_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:141>
|
|
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_0 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState;
|
|
NullCheck(L_0);
|
|
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5 L_1 = L_0->___observers;
|
|
RuntimeObject* L_2 = __this->___observer;
|
|
int32_t L_3;
|
|
L_3 = InputArrayExtensions_IndexOfReference_TisIObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_mDF245036F6C353CB2B70C5860F90BA16C961E751(L_1, L_2, InputArrayExtensions_IndexOfReference_TisIObserver_1_tBA370B49C5227E7D5F575F4CE6A81A040CF7C5D5_mDF245036F6C353CB2B70C5860F90BA16C961E751_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:142>
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) < ((int32_t)0)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:143>
|
|
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_5 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState;
|
|
NullCheck(L_5);
|
|
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* L_6 = (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5*)(&L_5->___observers);
|
|
int32_t L_7 = V_0;
|
|
InlinedArray_1_RemoveAtWithCapacity_m8C65A9998195061436978BFFC7624D99DFAA3976(L_6, L_7, InlinedArray_1_RemoveAtWithCapacity_m8C65A9998195061436978BFFC7624D99DFAA3976_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:144>
|
|
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_8 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState;
|
|
NullCheck(L_8);
|
|
InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5* L_9 = (InlinedArray_1_t77CC94188EA6CADD047B2F76120B047F1934BBB5*)(&L_8->___observers);
|
|
int32_t L_10 = L_9->___length;
|
|
if (L_10)
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:145>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputManager_t69FCFDAC90F8EBB8EF4950CC0BE617D842A39210* L_11 = ((InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_StaticFields*)il2cpp_codegen_static_fields_for(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var))->___s_Manager;
|
|
ObserverState_t147E85316A8DB8E0C6B3D4485B1480B41EA6A1A8* L_12 = ((InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_StaticFields*)il2cpp_codegen_static_fields_for(InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D_il2cpp_TypeInfo_var))->___s_ObserverState;
|
|
NullCheck(L_12);
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_13 = L_12->___onEventDelegate;
|
|
NullCheck(L_11);
|
|
InputManager_remove_onEvent_mA84D2D17A18F63251F21D05802E2F75BC811E8DD(L_11, L_13, NULL);
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventListener.cs:146>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25610
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisposableObserver__ctor_mAF66BFE27ECE1AFC1C6B2E29B29AF9359C25926F (DisposableObserver_t29E26C6260179B3DB17CBF2FB8A5014027E1FA73* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25611
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:31>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___0_eventPtr;
|
|
__this->___m_EventPtr = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:32>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_AdjustorThunk (RuntimeObject* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline(_thisAdjusted, ___0_eventPtr, method);
|
|
}
|
|
// Method Definition Index: 25612
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:38>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = __this->___m_EventPtr;
|
|
return (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25613
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_get_handled_m6981E3A01858EB383B2420DA720DE82BF7A8ADFF (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:57>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:58>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:59>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = __this->___m_EventPtr;
|
|
bool L_2;
|
|
L_2 = InputEvent_get_handled_m354E53F68FA517142B4A53287BF738545F792468((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool InputEventPtr_get_handled_m6981E3A01858EB383B2420DA720DE82BF7A8ADFF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = InputEventPtr_get_handled_m6981E3A01858EB383B2420DA720DE82BF7A8ADFF(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25614
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_handled_m855A75D4B98470B0A814FB8627608595FC9E9EF0 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:63>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:64>
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_set_handled_m855A75D4B98470B0A814FB8627608595FC9E9EF0_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:65>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_EventPtr;
|
|
bool L_3 = ___0_value;
|
|
InputEvent_set_handled_mF2F5A1872BA2D7F585F1275825B622342EB93A16((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_2, L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:66>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventPtr_set_handled_m855A75D4B98470B0A814FB8627608595FC9E9EF0_AdjustorThunk (RuntimeObject* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
InputEventPtr_set_handled_m855A75D4B98470B0A814FB8627608595FC9E9EF0(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25615
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_get_id_mED485DFF0A720B0A27201BAFD554D42A8FE527FB (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:73>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:74>
|
|
return 0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:75>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = __this->___m_EventPtr;
|
|
int32_t L_2;
|
|
L_2 = InputEvent_get_eventId_mD480444BF28136F8FF8288C83C4489B9A6B992A0((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputEventPtr_get_id_mED485DFF0A720B0A27201BAFD554D42A8FE527FB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputEventPtr_get_id_mED485DFF0A720B0A27201BAFD554D42A8FE527FB(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25616
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_id_m8CCBE3CAF92578F56613E99AAA4334BCCFCFD40B (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:79>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:80>
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_set_id_m8CCBE3CAF92578F56613E99AAA4334BCCFCFD40B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:81>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_EventPtr;
|
|
int32_t L_3 = ___0_value;
|
|
InputEvent_set_eventId_mD95C6CF817314B3C83EA67E5B7A2898ADEE8BE74((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_2, L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:82>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventPtr_set_id_m8CCBE3CAF92578F56613E99AAA4334BCCFCFD40B_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
InputEventPtr_set_id_m8CCBE3CAF92578F56613E99AAA4334BCCFCFD40B(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25617
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:89>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:90>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:91>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_EventPtr;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_3;
|
|
L_3 = InputEvent_get_type_m43737750FDCCFDF4FC208C9AFFCB5E9D2672733D((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25618
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:99>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:100>
|
|
return 0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:101>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = __this->___m_EventPtr;
|
|
uint32_t L_2;
|
|
L_2 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint32_t InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
uint32_t _returnValue;
|
|
_returnValue = InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25619
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_get_deviceId_mD8B68EDC37D90A69EE67A47B3E17F4D80D4620D3 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:109>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:110>
|
|
return 0;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:111>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = __this->___m_EventPtr;
|
|
int32_t L_2;
|
|
L_2 = InputEvent_get_deviceId_m42DC07D2AB46922D79E0A3B9E31FA31E0FD90B6C((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputEventPtr_get_deviceId_mD8B68EDC37D90A69EE67A47B3E17F4D80D4620D3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputEventPtr_get_deviceId_mD8B68EDC37D90A69EE67A47B3E17F4D80D4620D3(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25620
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_deviceId_mDC5B90109CDEECE63A5F1310379DB8B1B31D2B97 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:115>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:116>
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_set_deviceId_mDC5B90109CDEECE63A5F1310379DB8B1B31D2B97_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:117>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_EventPtr;
|
|
int32_t L_3 = ___0_value;
|
|
InputEvent_set_deviceId_mED2CE48AD37BA360710E9C5B48D46D2A18A4BDDF((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_2, L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:118>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventPtr_set_deviceId_mDC5B90109CDEECE63A5F1310379DB8B1B31D2B97_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
InputEventPtr_set_deviceId_mDC5B90109CDEECE63A5F1310379DB8B1B31D2B97(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25621
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEventPtr_get_time_mD2C90C66C334E767E2F9B5B9A3711B500027B185 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:123>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return (0.0);
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = __this->___m_EventPtr;
|
|
double L_2;
|
|
L_2 = InputEvent_get_time_mD4A6C01A2B7BFB9ECAD089197C573886E3F70ADB((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C double InputEventPtr_get_time_mD2C90C66C334E767E2F9B5B9A3711B500027B185_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
double _returnValue;
|
|
_returnValue = InputEventPtr_get_time_mD2C90C66C334E767E2F9B5B9A3711B500027B185(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25622
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_time_m6058E3EFFAC41CA39B2F16CB8F184F03CDEE6E13 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:126>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:127>
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_set_time_m6058E3EFFAC41CA39B2F16CB8F184F03CDEE6E13_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:128>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_EventPtr;
|
|
double L_3 = ___0_value;
|
|
InputEvent_set_time_m210F97B604C0EEB53FC6CC4D57A10373FC081A0F((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_2, L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:129>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventPtr_set_time_m6058E3EFFAC41CA39B2F16CB8F184F03CDEE6E13_AdjustorThunk (RuntimeObject* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
InputEventPtr_set_time_m6058E3EFFAC41CA39B2F16CB8F184F03CDEE6E13(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25623
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputEventPtr_get_internalTime_mB0A20BAF50AC9842691B0495A766A18B05CB4781 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:134>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return (0.0);
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = __this->___m_EventPtr;
|
|
double L_2;
|
|
L_2 = InputEvent_get_internalTime_m6EBE99BC7B0CD35B2B3670A9B5DE003AB3FDA708((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C double InputEventPtr_get_internalTime_mB0A20BAF50AC9842691B0495A766A18B05CB4781_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
double _returnValue;
|
|
_returnValue = InputEventPtr_get_internalTime_mB0A20BAF50AC9842691B0495A766A18B05CB4781(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25624
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventPtr_set_internalTime_mBD0B465C6882DD13F5FA3AAE487C0FA8A68E3810 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:137>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:138>
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2F45012730FED3906C009972A37FF803AFC44F5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_set_internalTime_mBD0B465C6882DD13F5FA3AAE487C0FA8A68E3810_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:139>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_EventPtr;
|
|
double L_3 = ___0_value;
|
|
InputEvent_set_internalTime_m914C4E1111E2A886D56B9D0A888ECE911F894980((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_2, L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:140>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventPtr_set_internalTime_mBD0B465C6882DD13F5FA3AAE487C0FA8A68E3810_AdjustorThunk (RuntimeObject* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
InputEventPtr_set_internalTime_mBD0B465C6882DD13F5FA3AAE487C0FA8A68E3810(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25625
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:143>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = __this->___m_EventPtr;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _returnValue;
|
|
_returnValue = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25626
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventPtr_get_stateFormat_m664BD225A799818C59844F7749CF52A0F588D9B4 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:152>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69(__this, NULL);
|
|
V_0 = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:153>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1 = V_0;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_2;
|
|
L_2 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1398030676), NULL);
|
|
bool L_3;
|
|
L_3 = FourCC_op_Equality_m3D556D9BE044419563A7F44DCA15F1EB30656D4C_inline(L_1, L_2, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:154>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_4 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
|
|
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* L_5;
|
|
L_5 = StateEvent_FromUnchecked_m2735488B081D9C8E972D4F2B6D80C044599BFB81(L_4, NULL);
|
|
NullCheck(L_5);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_6 = L_5->___stateFormat;
|
|
return L_6;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:155>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_7 = V_0;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_8;
|
|
L_8 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1145852993), NULL);
|
|
bool L_9;
|
|
L_9 = FourCC_op_Equality_m3D556D9BE044419563A7F44DCA15F1EB30656D4C_inline(L_7, L_8, NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:156>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_10 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_11;
|
|
L_11 = DeltaStateEvent_FromUnchecked_m88C0138A7910009A5B0BCB83EEB0A3483E23613A(L_10, NULL);
|
|
NullCheck(L_11);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_12 = L_11->___stateFormat;
|
|
return L_12;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:157>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_13 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
|
|
V_1 = L_13;
|
|
String_t* L_14;
|
|
L_14 = InputEventPtr_ToString_m0A7FB7472629B3197AEF7DEEE9DD69A4A6989BC6((&V_1), NULL);
|
|
String_t* L_15;
|
|
L_15 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8F6CFBA1DD39F197A0470DD4831EDB73FF9AA184)), L_14, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_16 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_16, L_15, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_get_stateFormat_m664BD225A799818C59844F7749CF52A0F588D9B4_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventPtr_get_stateFormat_m664BD225A799818C59844F7749CF52A0F588D9B4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = InputEventPtr_get_stateFormat_m664BD225A799818C59844F7749CF52A0F588D9B4(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25627
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_stateSizeInBytes_m4C0F58AF9A43543102B597F3ACDCAED40D2B95AB (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:165>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327(__this, InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327_RuntimeMethod_var);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:166>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
|
|
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* L_2;
|
|
L_2 = StateEvent_From_m673CE00ED44EED4E56EF99C685FF0636E5B11F4D(L_1, NULL);
|
|
uint32_t L_3;
|
|
L_3 = StateEvent_get_stateSizeInBytes_m07E8E8D19DA4D9B58A23DC19680794764AE8FA21((StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F*)L_2, NULL);
|
|
return L_3;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:167>
|
|
bool L_4;
|
|
L_4 = InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7(__this, InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_RuntimeMethod_var);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:168>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_5 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_6;
|
|
L_6 = DeltaStateEvent_From_mFFEAD69A307D75C84B87E58E644B1F16E1B7EA48(L_5, NULL);
|
|
uint32_t L_7;
|
|
L_7 = DeltaStateEvent_get_deltaStateSizeInBytes_mF3F45D7A54B74C0B5403C5B4A6B42B31A78331E2((DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859*)L_6, NULL);
|
|
return L_7;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:169>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_8 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
|
|
V_0 = L_8;
|
|
String_t* L_9;
|
|
L_9 = InputEventPtr_ToString_m0A7FB7472629B3197AEF7DEEE9DD69A4A6989BC6((&V_0), NULL);
|
|
String_t* L_10;
|
|
L_10 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8F6CFBA1DD39F197A0470DD4831EDB73FF9AA184)), L_9, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_11 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_11, L_10, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_get_stateSizeInBytes_m4C0F58AF9A43543102B597F3ACDCAED40D2B95AB_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint32_t InputEventPtr_get_stateSizeInBytes_m4C0F58AF9A43543102B597F3ACDCAED40D2B95AB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
uint32_t _returnValue;
|
|
_returnValue = InputEventPtr_get_stateSizeInBytes_m4C0F58AF9A43543102B597F3ACDCAED40D2B95AB(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25628
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventPtr_get_stateOffset_mDB68F2BF9E2D3B80A98ED6B8DE02F1C3C55D69E4 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:177>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7(__this, InputEventPtr_IsA_TisDeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859_mF1E078C1A9AC9C4697BA6A4F763D17E398CBBDE7_RuntimeMethod_var);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:178>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
|
|
DeltaStateEvent_tC11D9B5FD8A535C2D998D30F8624E6533044D859* L_2;
|
|
L_2 = DeltaStateEvent_From_mFFEAD69A307D75C84B87E58E644B1F16E1B7EA48(L_1, NULL);
|
|
NullCheck(L_2);
|
|
uint32_t L_3 = L_2->___stateOffset;
|
|
return L_3;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:179>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_4 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
|
|
V_0 = L_4;
|
|
String_t* L_5;
|
|
L_5 = InputEventPtr_ToString_m0A7FB7472629B3197AEF7DEEE9DD69A4A6989BC6((&V_0), NULL);
|
|
String_t* L_6;
|
|
L_6 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5C82E0DD83FAB77ECA656BE8D48C1899B25B0815)), L_5, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventPtr_get_stateOffset_mDB68F2BF9E2D3B80A98ED6B8DE02F1C3C55D69E4_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint32_t InputEventPtr_get_stateOffset_mDB68F2BF9E2D3B80A98ED6B8DE02F1C3C55D69E4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
uint32_t _returnValue;
|
|
_returnValue = InputEventPtr_get_stateOffset_mDB68F2BF9E2D3B80A98ED6B8DE02F1C3C55D69E4(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25630
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventPtr_Next_m401E057F7E6DAB9468F04D705173539E8876809D (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:198>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:199>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0));
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:201>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_EventPtr;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3;
|
|
L_3 = InputEvent_GetNextInMemory_mC3AFC8F09360ED6791DCF32F2788143DDF139E21(L_2, NULL);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline((&L_4), L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventPtr_Next_m401E057F7E6DAB9468F04D705173539E8876809D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 _returnValue;
|
|
_returnValue = InputEventPtr_Next_m401E057F7E6DAB9468F04D705173539E8876809D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25631
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputEventPtr_ToString_m0A7FB7472629B3197AEF7DEEE9DD69A4A6989BC6 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:206>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:207>
|
|
return _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:212>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = __this->___m_EventPtr;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_2 = (*(InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_1);
|
|
V_0 = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:213>
|
|
String_t* L_3;
|
|
L_3 = InputEvent_ToString_mA533C298897220B7CC970408EDBAB35D9870B27C((&V_0), NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* InputEventPtr_ToString_m0A7FB7472629B3197AEF7DEEE9DD69A4A6989BC6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = InputEventPtr_ToString_m0A7FB7472629B3197AEF7DEEE9DD69A4A6989BC6(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25632
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_ToPointer_m2DE1A988A02CC6E632A5262095B719513F166CA6 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:222>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_0 = (*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)__this);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1;
|
|
L_1 = InputEventPtr_op_Implicit_mB86DFF1D9054A0670DBBDFE4C3A11422F60EB209(L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_ToPointer_m2DE1A988A02CC6E632A5262095B719513F166CA6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _returnValue;
|
|
_returnValue = InputEventPtr_ToPointer_m2DE1A988A02CC6E632A5262095B719513F166CA6(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25633
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_Equals_mCFEB98EADAE1C3EAA45E6C0406EC31CEEEB0FC92 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:227>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = __this->___m_EventPtr;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1 = ___0_other;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = L_1.___m_EventPtr;
|
|
if ((((intptr_t)L_0) == ((intptr_t)L_2)))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = __this->___m_EventPtr;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_4 = ___0_other;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_5 = L_4.___m_EventPtr;
|
|
bool L_6;
|
|
L_6 = InputEvent_Equals_mF8510591E2F00D7E016EA452DA26981FEA81AEAD(L_3, L_5, NULL);
|
|
return L_6;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool InputEventPtr_Equals_mCFEB98EADAE1C3EAA45E6C0406EC31CEEEB0FC92_AdjustorThunk (RuntimeObject* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = InputEventPtr_Equals_mCFEB98EADAE1C3EAA45E6C0406EC31CEEEB0FC92(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25634
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_Equals_m4B42D08FF9450733C111417BC49A24257F211DD8 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:232>
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
if (L_0)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:233>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:234>
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___0_obj;
|
|
V_0 = ((*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)UnBox(L_2, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var)));
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_3 = V_0;
|
|
bool L_4;
|
|
L_4 = InputEventPtr_Equals_mCFEB98EADAE1C3EAA45E6C0406EC31CEEEB0FC92(__this, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool InputEventPtr_Equals_m4B42D08FF9450733C111417BC49A24257F211DD8_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = InputEventPtr_Equals_m4B42D08FF9450733C111417BC49A24257F211DD8(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25635
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventPtr_GetHashCode_m97B532D8E6CD524F78323A2F079F1267DB296D1E (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:239>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = __this->___m_EventPtr;
|
|
return ((int32_t)((int64_t)(uint64_t)((uintptr_t)(intptr_t)L_0)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputEventPtr_GetHashCode_m97B532D8E6CD524F78323A2F079F1267DB296D1E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputEventPtr_GetHashCode_m97B532D8E6CD524F78323A2F079F1267DB296D1E(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25636
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_op_Equality_m2B559E1EEB15168F2EF27060801F4A5409F9EB8D (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_left, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___1_right, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:244>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_0 = ___0_left;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = L_0.___m_EventPtr;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2 = ___1_right;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = L_2.___m_EventPtr;
|
|
return (bool)((((intptr_t)L_1) == ((intptr_t)L_3))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 25637
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventPtr_op_Inequality_m4C6AF343B2428722DAD6B7BFCD1FF40BEC63AC53 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_left, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___1_right, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:249>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_0 = ___0_left;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = L_0.___m_EventPtr;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2 = ___1_right;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = L_2.___m_EventPtr;
|
|
return (bool)((((int32_t)((((intptr_t)L_1) == ((intptr_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 25638
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventPtr_op_Implicit_mDCFA11963BDC8B0D5C92A516EBE7F9C7A0B15191 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:254>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___0_eventPtr;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline((&L_1), L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25639
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 InputEventPtr_From_m1E527190EA899ECFD435BFD64C915BCCEEFF6923 (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:259>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___0_eventPtr;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline((&L_1), L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25640
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_op_Implicit_mB86DFF1D9054A0670DBBDFE4C3A11422F60EB209 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:264>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0;
|
|
L_0 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&___0_eventPtr), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25641
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_FromInputEventPtr_m5DB4FB5DE25F8777B8EA88670A69FA4F0230CD46 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:270>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0;
|
|
L_0 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&___0_eventPtr), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
|
|
|
|
|
|
|
|
IL2CPP_EXTERN_C void InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshal_pinvoke(const InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9& unmarshaled, InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_pinvoke& marshaled)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke(unmarshaled.___m_NativeBuffer, marshaled.___m_NativeBuffer);
|
|
marshaled.___m_CurrentNativeEventReadPtr = unmarshaled.___m_CurrentNativeEventReadPtr;
|
|
marshaled.___m_CurrentNativeEventWritePtr = unmarshaled.___m_CurrentNativeEventWritePtr;
|
|
marshaled.___m_RemainingNativeEventCount = unmarshaled.___m_RemainingNativeEventCount;
|
|
marshaled.___m_MaxAppendedEvents = unmarshaled.___m_MaxAppendedEvents;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke(unmarshaled.___m_AppendBuffer, marshaled.___m_AppendBuffer);
|
|
marshaled.___m_CurrentAppendEventReadPtr = unmarshaled.___m_CurrentAppendEventReadPtr;
|
|
marshaled.___m_CurrentAppendEventWritePtr = unmarshaled.___m_CurrentAppendEventWritePtr;
|
|
marshaled.___m_RemainingAppendEventCount = unmarshaled.___m_RemainingAppendEventCount;
|
|
marshaled.___m_NumEventsRetainedInBuffer = unmarshaled.___m_NumEventsRetainedInBuffer;
|
|
marshaled.___m_IsOpen = static_cast<int32_t>(unmarshaled.___m_IsOpen);
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshal_pinvoke_back(const InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_pinvoke& marshaled, InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9& unmarshaled)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE unmarshaledm_NativeBuffer_temp_0;
|
|
memset((&unmarshaledm_NativeBuffer_temp_0), 0, sizeof(unmarshaledm_NativeBuffer_temp_0));
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_back(marshaled.___m_NativeBuffer, unmarshaledm_NativeBuffer_temp_0);
|
|
unmarshaled.___m_NativeBuffer = unmarshaledm_NativeBuffer_temp_0;
|
|
unmarshaled.___m_CurrentNativeEventReadPtr = marshaled.___m_CurrentNativeEventReadPtr;
|
|
unmarshaled.___m_CurrentNativeEventWritePtr = marshaled.___m_CurrentNativeEventWritePtr;
|
|
int32_t unmarshaledm_RemainingNativeEventCount_temp_3 = 0;
|
|
unmarshaledm_RemainingNativeEventCount_temp_3 = marshaled.___m_RemainingNativeEventCount;
|
|
unmarshaled.___m_RemainingNativeEventCount = unmarshaledm_RemainingNativeEventCount_temp_3;
|
|
int32_t unmarshaledm_MaxAppendedEvents_temp_4 = 0;
|
|
unmarshaledm_MaxAppendedEvents_temp_4 = marshaled.___m_MaxAppendedEvents;
|
|
unmarshaled.___m_MaxAppendedEvents = unmarshaledm_MaxAppendedEvents_temp_4;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE unmarshaledm_AppendBuffer_temp_5;
|
|
memset((&unmarshaledm_AppendBuffer_temp_5), 0, sizeof(unmarshaledm_AppendBuffer_temp_5));
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_back(marshaled.___m_AppendBuffer, unmarshaledm_AppendBuffer_temp_5);
|
|
unmarshaled.___m_AppendBuffer = unmarshaledm_AppendBuffer_temp_5;
|
|
unmarshaled.___m_CurrentAppendEventReadPtr = marshaled.___m_CurrentAppendEventReadPtr;
|
|
unmarshaled.___m_CurrentAppendEventWritePtr = marshaled.___m_CurrentAppendEventWritePtr;
|
|
int32_t unmarshaledm_RemainingAppendEventCount_temp_8 = 0;
|
|
unmarshaledm_RemainingAppendEventCount_temp_8 = marshaled.___m_RemainingAppendEventCount;
|
|
unmarshaled.___m_RemainingAppendEventCount = unmarshaledm_RemainingAppendEventCount_temp_8;
|
|
int32_t unmarshaledm_NumEventsRetainedInBuffer_temp_9 = 0;
|
|
unmarshaledm_NumEventsRetainedInBuffer_temp_9 = marshaled.___m_NumEventsRetainedInBuffer;
|
|
unmarshaled.___m_NumEventsRetainedInBuffer = unmarshaledm_NumEventsRetainedInBuffer_temp_9;
|
|
bool unmarshaledm_IsOpen_temp_10 = false;
|
|
unmarshaledm_IsOpen_temp_10 = static_cast<bool>(marshaled.___m_IsOpen);
|
|
unmarshaled.___m_IsOpen = unmarshaledm_IsOpen_temp_10;
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshal_pinvoke_cleanup(InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_pinvoke& marshaled)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_cleanup(marshaled.___m_NativeBuffer);
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_cleanup(marshaled.___m_AppendBuffer);
|
|
}
|
|
|
|
|
|
|
|
|
|
IL2CPP_EXTERN_C void InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshal_com(const InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9& unmarshaled, InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_com& marshaled)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com(unmarshaled.___m_NativeBuffer, marshaled.___m_NativeBuffer);
|
|
marshaled.___m_CurrentNativeEventReadPtr = unmarshaled.___m_CurrentNativeEventReadPtr;
|
|
marshaled.___m_CurrentNativeEventWritePtr = unmarshaled.___m_CurrentNativeEventWritePtr;
|
|
marshaled.___m_RemainingNativeEventCount = unmarshaled.___m_RemainingNativeEventCount;
|
|
marshaled.___m_MaxAppendedEvents = unmarshaled.___m_MaxAppendedEvents;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com(unmarshaled.___m_AppendBuffer, marshaled.___m_AppendBuffer);
|
|
marshaled.___m_CurrentAppendEventReadPtr = unmarshaled.___m_CurrentAppendEventReadPtr;
|
|
marshaled.___m_CurrentAppendEventWritePtr = unmarshaled.___m_CurrentAppendEventWritePtr;
|
|
marshaled.___m_RemainingAppendEventCount = unmarshaled.___m_RemainingAppendEventCount;
|
|
marshaled.___m_NumEventsRetainedInBuffer = unmarshaled.___m_NumEventsRetainedInBuffer;
|
|
marshaled.___m_IsOpen = static_cast<int32_t>(unmarshaled.___m_IsOpen);
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshal_com_back(const InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_com& marshaled, InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9& unmarshaled)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE unmarshaledm_NativeBuffer_temp_0;
|
|
memset((&unmarshaledm_NativeBuffer_temp_0), 0, sizeof(unmarshaledm_NativeBuffer_temp_0));
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_back(marshaled.___m_NativeBuffer, unmarshaledm_NativeBuffer_temp_0);
|
|
unmarshaled.___m_NativeBuffer = unmarshaledm_NativeBuffer_temp_0;
|
|
unmarshaled.___m_CurrentNativeEventReadPtr = marshaled.___m_CurrentNativeEventReadPtr;
|
|
unmarshaled.___m_CurrentNativeEventWritePtr = marshaled.___m_CurrentNativeEventWritePtr;
|
|
int32_t unmarshaledm_RemainingNativeEventCount_temp_3 = 0;
|
|
unmarshaledm_RemainingNativeEventCount_temp_3 = marshaled.___m_RemainingNativeEventCount;
|
|
unmarshaled.___m_RemainingNativeEventCount = unmarshaledm_RemainingNativeEventCount_temp_3;
|
|
int32_t unmarshaledm_MaxAppendedEvents_temp_4 = 0;
|
|
unmarshaledm_MaxAppendedEvents_temp_4 = marshaled.___m_MaxAppendedEvents;
|
|
unmarshaled.___m_MaxAppendedEvents = unmarshaledm_MaxAppendedEvents_temp_4;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE unmarshaledm_AppendBuffer_temp_5;
|
|
memset((&unmarshaledm_AppendBuffer_temp_5), 0, sizeof(unmarshaledm_AppendBuffer_temp_5));
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_back(marshaled.___m_AppendBuffer, unmarshaledm_AppendBuffer_temp_5);
|
|
unmarshaled.___m_AppendBuffer = unmarshaledm_AppendBuffer_temp_5;
|
|
unmarshaled.___m_CurrentAppendEventReadPtr = marshaled.___m_CurrentAppendEventReadPtr;
|
|
unmarshaled.___m_CurrentAppendEventWritePtr = marshaled.___m_CurrentAppendEventWritePtr;
|
|
int32_t unmarshaledm_RemainingAppendEventCount_temp_8 = 0;
|
|
unmarshaledm_RemainingAppendEventCount_temp_8 = marshaled.___m_RemainingAppendEventCount;
|
|
unmarshaled.___m_RemainingAppendEventCount = unmarshaledm_RemainingAppendEventCount_temp_8;
|
|
int32_t unmarshaledm_NumEventsRetainedInBuffer_temp_9 = 0;
|
|
unmarshaledm_NumEventsRetainedInBuffer_temp_9 = marshaled.___m_NumEventsRetainedInBuffer;
|
|
unmarshaled.___m_NumEventsRetainedInBuffer = unmarshaledm_NumEventsRetainedInBuffer_temp_9;
|
|
bool unmarshaledm_IsOpen_temp_10 = false;
|
|
unmarshaledm_IsOpen_temp_10 = static_cast<bool>(marshaled.___m_IsOpen);
|
|
unmarshaled.___m_IsOpen = unmarshaledm_IsOpen_temp_10;
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshal_com_cleanup(InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9_marshaled_com& marshaled)
|
|
{
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_cleanup(marshaled.___m_NativeBuffer);
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_com_cleanup(marshaled.___m_AppendBuffer);
|
|
}
|
|
// Method Definition Index: 25642
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventStream_get_isOpen_mEE33B97DA48F80B43BCE58D08FCAE51958E6459D (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:15>
|
|
bool L_0 = __this->___m_IsOpen;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool InputEventStream_get_isOpen_mEE33B97DA48F80B43BCE58D08FCAE51958E6459D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = InputEventStream_get_isOpen_mEE33B97DA48F80B43BCE58D08FCAE51958E6459D_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25643
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventStream_get_remainingEventCount_mFA68F507B5BF80A3E88C89C9DC973B17B61E2CE8 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:17>
|
|
int32_t L_0 = __this->___m_RemainingNativeEventCount;
|
|
int32_t L_1 = __this->___m_RemainingAppendEventCount;
|
|
return ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputEventStream_get_remainingEventCount_mFA68F507B5BF80A3E88C89C9DC973B17B61E2CE8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputEventStream_get_remainingEventCount_mFA68F507B5BF80A3E88C89C9DC973B17B61E2CE8(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25644
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventStream_get_numEventsRetainedInBuffer_m4656DA6E9272986459D283EE8B8F74773C2D130A (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:22>
|
|
int32_t L_0 = __this->___m_NumEventsRetainedInBuffer;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputEventStream_get_numEventsRetainedInBuffer_m4656DA6E9272986459D283EE8B8F74773C2D130A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputEventStream_get_numEventsRetainedInBuffer_m4656DA6E9272986459D283EE8B8F74773C2D130A_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25645
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_get_currentEventPtr_mE13C48ED3B452218CF8517F2DDDF0ACDF2C342B1 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:24>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:25>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:26>
|
|
int32_t L_0 = __this->___m_RemainingNativeEventCount;
|
|
if ((((int32_t)L_0) > ((int32_t)0)))
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = __this->___m_RemainingAppendEventCount;
|
|
if ((((int32_t)L_1) > ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
return (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)(((uintptr_t)0));
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2 = __this->___m_CurrentAppendEventReadPtr;
|
|
return L_2;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_3 = __this->___m_CurrentNativeEventReadPtr;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_get_currentEventPtr_mE13C48ED3B452218CF8517F2DDDF0ACDF2C342B1_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _returnValue;
|
|
_returnValue = InputEventStream_get_currentEventPtr_mE13C48ED3B452218CF8517F2DDDF0ACDF2C342B1(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25646
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t InputEventStream_get_numBytesRetainedInBuffer_mF899CE61DF44A43CACFD8BA969EF31A6BDAA6BDF (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:29>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:30>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:31>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = __this->___m_CurrentNativeEventWritePtr;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_1 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_NativeBuffer);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_2;
|
|
L_2 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(L_1, NULL);
|
|
void* L_3;
|
|
L_3 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D(L_2, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var);
|
|
return ((int32_t)(uint32_t)((int64_t)(intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)il2cpp_codegen_subtract((intptr_t)L_0, (intptr_t)L_3))/1))));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint32_t InputEventStream_get_numBytesRetainedInBuffer_mF899CE61DF44A43CACFD8BA969EF31A6BDAA6BDF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
|
|
uint32_t _returnValue;
|
|
_returnValue = InputEventStream_get_numBytesRetainedInBuffer_mF899CE61DF44A43CACFD8BA969EF31A6BDAA6BDF(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25647
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream__ctor_m52AB2424A03D286B202C0E69BF8392C3AFB2D604 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___0_eventBuffer, int32_t ___1_maxAppendedEvents, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:35>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:36>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_0 = ___0_eventBuffer;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_1;
|
|
L_1 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(L_0, NULL);
|
|
void* L_2;
|
|
L_2 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D(L_1, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var);
|
|
void* L_3 = L_2;
|
|
V_0 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_3;
|
|
__this->___m_CurrentNativeEventReadPtr = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_3;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_4 = V_0;
|
|
__this->___m_CurrentNativeEventWritePtr = L_4;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:38>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_5 = ___0_eventBuffer;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_6 = (*(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)L_5);
|
|
__this->___m_NativeBuffer = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:39>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_7 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_NativeBuffer);
|
|
int32_t L_8;
|
|
L_8 = InputEventBuffer_get_eventCount_mD120699C5A1CEBA76C878BC37DB2E39458F56C8E_inline(L_7, NULL);
|
|
__this->___m_RemainingNativeEventCount = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:40>
|
|
__this->___m_NumEventsRetainedInBuffer = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:42>
|
|
uintptr_t L_9 = ((uintptr_t)0);
|
|
V_0 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_9;
|
|
__this->___m_CurrentAppendEventWritePtr = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_9;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_10 = V_0;
|
|
__this->___m_CurrentAppendEventReadPtr = L_10;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:43>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_11 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_AppendBuffer);
|
|
il2cpp_codegen_initobj(L_11, sizeof(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:44>
|
|
__this->___m_RemainingAppendEventCount = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:45>
|
|
int32_t L_12 = ___1_maxAppendedEvents;
|
|
__this->___m_MaxAppendedEvents = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:47>
|
|
__this->___m_IsOpen = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:48>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventStream__ctor_m52AB2424A03D286B202C0E69BF8392C3AFB2D604_AdjustorThunk (RuntimeObject* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___0_eventBuffer, int32_t ___1_maxAppendedEvents, const RuntimeMethod* method)
|
|
{
|
|
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
|
|
InputEventStream__ctor_m52AB2424A03D286B202C0E69BF8392C3AFB2D604(_thisAdjusted, ___0_eventBuffer, ___1_maxAppendedEvents, method);
|
|
}
|
|
// Method Definition Index: 25648
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_Close_m1111A4CFB8F92C63C3A0138A92D2B74F3722D691 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___0_eventBuffer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
void* V_0 = NULL;
|
|
int64_t V_1 = 0;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:53>
|
|
int32_t L_0 = __this->___m_NumEventsRetainedInBuffer;
|
|
if ((((int32_t)L_0) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:55>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_1 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_NativeBuffer);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_2;
|
|
L_2 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(L_1, NULL);
|
|
void* L_3;
|
|
L_3 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D(L_2, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:57>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_4 = __this->___m_CurrentNativeEventWritePtr;
|
|
void* L_5 = V_0;
|
|
V_1 = ((int64_t)(intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)il2cpp_codegen_subtract((intptr_t)L_4, (intptr_t)L_5))/1)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:58>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:59>
|
|
void* L_6 = V_0;
|
|
int32_t L_7 = __this->___m_NumEventsRetainedInBuffer;
|
|
int64_t L_8 = V_1;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_9 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_NativeBuffer);
|
|
int64_t L_10;
|
|
L_10 = InputEventBuffer_get_capacityInBytes_m880911F29058AFF745E74D509EB224261374089B(L_9, NULL);
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_11;
|
|
memset((&L_11), 0, sizeof(L_11));
|
|
InputEventBuffer__ctor_mC9DC5120D654A771A3E7B8B21E89EE6071DD01C3((&L_11), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_6, L_7, ((int32_t)L_8), ((int32_t)L_10), NULL);
|
|
__this->___m_NativeBuffer = L_11;
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:63>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_12 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_NativeBuffer);
|
|
InputEventBuffer_Reset_m9E41B3CE9C7556C62AFC55772D7D4FBA8A99360B(L_12, NULL);
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:66>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_13 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_AppendBuffer);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_14;
|
|
L_14 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(L_13, NULL);
|
|
V_2 = L_14;
|
|
bool L_15;
|
|
L_15 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline((&V_2), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:67>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_16 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_AppendBuffer);
|
|
InputEventBuffer_Dispose_mC0CD0CC5F58859A221221F1A3FAE84B8EFB5CFF3(L_16, NULL);
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:69>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_17 = ___0_eventBuffer;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE L_18 = __this->___m_NativeBuffer;
|
|
*(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)L_17 = L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:70>
|
|
__this->___m_IsOpen = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:71>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventStream_Close_m1111A4CFB8F92C63C3A0138A92D2B74F3722D691_AdjustorThunk (RuntimeObject* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___0_eventBuffer, const RuntimeMethod* method)
|
|
{
|
|
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
|
|
InputEventStream_Close_m1111A4CFB8F92C63C3A0138A92D2B74F3722D691(_thisAdjusted, ___0_eventBuffer, method);
|
|
}
|
|
// Method Definition Index: 25649
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_CleanUpAfterException_m1025CADD374BCE7F4A96D5A6CD78AFAB3F253011 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:75>
|
|
bool L_0;
|
|
L_0 = InputEventStream_get_isOpen_mEE33B97DA48F80B43BCE58D08FCAE51958E6459D_inline(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:76>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:78>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_1 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_NativeBuffer);
|
|
InputEventBuffer_Reset_m9E41B3CE9C7556C62AFC55772D7D4FBA8A99360B(L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:80>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_2 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_AppendBuffer);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_3;
|
|
L_3 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(L_2, NULL);
|
|
V_0 = L_3;
|
|
bool L_4;
|
|
L_4 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline((&V_0), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:81>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_5 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_AppendBuffer);
|
|
InputEventBuffer_Dispose_mC0CD0CC5F58859A221221F1A3FAE84B8EFB5CFF3(L_5, NULL);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:83>
|
|
__this->___m_IsOpen = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:84>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventStream_CleanUpAfterException_m1025CADD374BCE7F4A96D5A6CD78AFAB3F253011_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
|
|
InputEventStream_CleanUpAfterException_m1025CADD374BCE7F4A96D5A6CD78AFAB3F253011(_thisAdjusted, method);
|
|
}
|
|
// Method Definition Index: 25650
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventStream_Write_m1F494325BF10678460D41D7A07333DB17F64487E (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral012315DEACA80CA5572171295D68942333F9F9A7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEBE3EEDD107BB87C6567C5FBFDC3A815F512391E);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint8_t* V_0 = NULL;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_3 = NULL;
|
|
uint8_t* V_4 = NULL;
|
|
int64_t V_5 = 0;
|
|
int64_t V_6 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:88>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_0 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_AppendBuffer);
|
|
int32_t L_1;
|
|
L_1 = InputEventBuffer_get_eventCount_mD120699C5A1CEBA76C878BC37DB2E39458F56C8E_inline(L_0, NULL);
|
|
int32_t L_2 = __this->___m_MaxAppendedEvents;
|
|
if ((((int32_t)L_1) < ((int32_t)L_2)))
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:90>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:91>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:92>
|
|
int32_t L_3 = __this->___m_MaxAppendedEvents;
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(il2cpp_defaults.int32_class, &L_4);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(_stringLiteral012315DEACA80CA5572171295D68942333F9F9A7, L_5, NULL);
|
|
String_t* L_7;
|
|
L_7 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralEBE3EEDD107BB87C6567C5FBFDC3A815F512391E, L_6, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:93>
|
|
return;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:96>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_8 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_AppendBuffer);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_9;
|
|
L_9 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(L_8, NULL);
|
|
V_1 = L_9;
|
|
bool L_10;
|
|
L_10 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_inline((&V_1), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:97>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_11 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_AppendBuffer);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_12;
|
|
L_12 = InputEventBuffer_get_bufferPtr_m7C5E03ED8F0433B3CD4F019DFADDE3983472DACB(L_11, NULL);
|
|
V_2 = L_12;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_13;
|
|
L_13 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&V_2), NULL);
|
|
V_0 = (uint8_t*)L_13;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:99>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_14 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_AppendBuffer);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_15 = ___0_eventPtr;
|
|
InputEventBuffer_AppendEvent_mAEC914B9C5C5534378199FF5C35D7EB57215E011(L_14, L_15, ((int32_t)2048), 2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:101>
|
|
if (L_10)
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:103>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:104>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_16 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_AppendBuffer);
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_17;
|
|
L_17 = InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline(L_16, NULL);
|
|
void* L_18;
|
|
L_18 = NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D(L_17, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mA61C5F532C23ABF41BE02F5A4EC98DF959605B0D_RuntimeMethod_var);
|
|
void* L_19 = L_18;
|
|
V_3 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_19;
|
|
__this->___m_CurrentAppendEventReadPtr = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_19;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_20 = V_3;
|
|
__this->___m_CurrentAppendEventWritePtr = L_20;
|
|
goto IL_00e0;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:110>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_21 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_AppendBuffer);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_22;
|
|
L_22 = InputEventBuffer_get_bufferPtr_m7C5E03ED8F0433B3CD4F019DFADDE3983472DACB(L_21, NULL);
|
|
V_2 = L_22;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_23;
|
|
L_23 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&V_2), NULL);
|
|
V_4 = (uint8_t*)L_23;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:111>
|
|
uint8_t* L_24 = V_0;
|
|
uint8_t* L_25 = V_4;
|
|
if ((((intptr_t)L_24) == ((intptr_t)L_25)))
|
|
{
|
|
goto IL_00e0;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:113>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_26 = __this->___m_CurrentAppendEventWritePtr;
|
|
uint8_t* L_27 = V_0;
|
|
V_5 = ((int64_t)(intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)il2cpp_codegen_subtract((intptr_t)L_26, (intptr_t)L_27))/1)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:114>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_28 = __this->___m_CurrentAppendEventReadPtr;
|
|
uint8_t* L_29 = V_0;
|
|
V_6 = ((int64_t)(intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((intptr_t)((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)il2cpp_codegen_subtract((intptr_t)L_28, (intptr_t)L_29))/1)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:115>
|
|
uint8_t* L_30 = V_4;
|
|
int64_t L_31 = V_5;
|
|
__this->___m_CurrentAppendEventWritePtr = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_30, ((intptr_t)L_31)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:116>
|
|
uint8_t* L_32 = V_4;
|
|
int64_t L_33 = V_6;
|
|
__this->___m_CurrentAppendEventReadPtr = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_32, ((intptr_t)L_33)));
|
|
}
|
|
|
|
IL_00e0:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:120>
|
|
int32_t L_34 = __this->___m_RemainingAppendEventCount;
|
|
__this->___m_RemainingAppendEventCount = ((int32_t)il2cpp_codegen_add(L_34, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:121>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputEventStream_Write_m1F494325BF10678460D41D7A07333DB17F64487E_AdjustorThunk (RuntimeObject* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
|
|
InputEventStream_Write_m1F494325BF10678460D41D7A07333DB17F64487E(_thisAdjusted, ___0_eventPtr, method);
|
|
}
|
|
// Method Definition Index: 25651
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_Advance_mD8B6B308674E69472F69AA65F3F1D49FBE7A13F1 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, bool ___0_leaveEventInBuffer, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:125>
|
|
int32_t L_0 = __this->___m_RemainingNativeEventCount;
|
|
if ((((int32_t)L_0) <= ((int32_t)0)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:127>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:128>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_1 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_NativeBuffer);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_2 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5**)(&__this->___m_CurrentNativeEventReadPtr);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_3 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5**)(&__this->___m_CurrentNativeEventWritePtr);
|
|
int32_t* L_4 = (int32_t*)(&__this->___m_NumEventsRetainedInBuffer);
|
|
int32_t* L_5 = (int32_t*)(&__this->___m_RemainingNativeEventCount);
|
|
bool L_6 = ___0_leaveEventInBuffer;
|
|
InputEventBuffer_AdvanceToNextEvent_m2A711A2AA87D26A027FFE4EFD01EBD296EE0B283(L_1, L_2, L_3, L_4, L_5, L_6, NULL);
|
|
goto IL_005a;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:130>
|
|
int32_t L_7 = __this->___m_RemainingAppendEventCount;
|
|
if ((((int32_t)L_7) <= ((int32_t)0)))
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:132>
|
|
V_0 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:133>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:134>
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* L_8 = (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*)(&__this->___m_AppendBuffer);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_9 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5**)(&__this->___m_CurrentAppendEventReadPtr);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5** L_10 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5**)(&__this->___m_CurrentAppendEventWritePtr);
|
|
int32_t* L_11 = (int32_t*)(&__this->___m_RemainingAppendEventCount);
|
|
InputEventBuffer_AdvanceToNextEvent_m2A711A2AA87D26A027FFE4EFD01EBD296EE0B283(L_8, L_9, L_10, (&V_0), L_11, (bool)0, NULL);
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:137>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_12;
|
|
L_12 = InputEventStream_get_currentEventPtr_mE13C48ED3B452218CF8517F2DDDF0ACDF2C342B1(__this, NULL);
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_Advance_mD8B6B308674E69472F69AA65F3F1D49FBE7A13F1_AdjustorThunk (RuntimeObject* __this, bool ___0_leaveEventInBuffer, const RuntimeMethod* method)
|
|
{
|
|
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _returnValue;
|
|
_returnValue = InputEventStream_Advance_mD8B6B308674E69472F69AA65F3F1D49FBE7A13F1(_thisAdjusted, ___0_leaveEventInBuffer, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25652
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_Peek_m315B9E86A362176249564F94D8590ECFD4089120 (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:146>
|
|
int32_t L_0 = __this->___m_RemainingNativeEventCount;
|
|
if ((((int32_t)L_0) <= ((int32_t)1)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:147>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_1 = __this->___m_CurrentNativeEventReadPtr;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_2;
|
|
L_2 = InputEvent_GetNextInMemory_mC3AFC8F09360ED6791DCF32F2788143DDF139E21(L_1, NULL);
|
|
return L_2;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:151>
|
|
int32_t L_3 = __this->___m_RemainingNativeEventCount;
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:152>
|
|
int32_t L_4 = __this->___m_RemainingAppendEventCount;
|
|
if ((((int32_t)L_4) > ((int32_t)0)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
return (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)(((uintptr_t)0));
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_5 = __this->___m_CurrentAppendEventReadPtr;
|
|
return L_5;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:155>
|
|
int32_t L_6 = __this->___m_RemainingAppendEventCount;
|
|
if ((((int32_t)L_6) <= ((int32_t)1)))
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:156>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_7 = __this->___m_CurrentAppendEventReadPtr;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_8;
|
|
L_8 = InputEvent_GetNextInMemory_mC3AFC8F09360ED6791DCF32F2788143DDF139E21(L_7, NULL);
|
|
return L_8;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:159>
|
|
return (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)(((uintptr_t)0));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventStream_Peek_m315B9E86A362176249564F94D8590ECFD4089120_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9*>(__this + _offset);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* _returnValue;
|
|
_returnValue = InputEventStream_Peek_m315B9E86A362176249564F94D8590ECFD4089120(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25653
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventTrace_get_FrameMarkerEvent_m491AB38CDCEED20E74D4717FB782716649FB16FC (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:38>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)70), ((int32_t)82), ((int32_t)77), ((int32_t)69), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25654
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputEventTrace_get_deviceId_m6006BAAAF5E515E9379A49BB2BC93966F7A0F76D (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:46>
|
|
int32_t L_0 = __this->___m_DeviceId;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25655
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_deviceId_m7D55C7F5557FE912EB6615478B2D54C3C9451538 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:47>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_DeviceId = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25656
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_get_enabled_m00962912C56398A72D8DC35529506F06A934CF8D (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:56>
|
|
bool L_0 = __this->___m_Enabled;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25657
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_get_recordFrameMarkers_m15BCAEC63810DD7CC8CC8D33A6702359BC986F45 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:80>
|
|
bool L_0 = __this->___m_RecordFrameMarkers;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25658
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_recordFrameMarkers_mEE70080B94B12C2EE4A7C8BEF2DCC9027419BC92 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:83>
|
|
bool L_0 = __this->___m_RecordFrameMarkers;
|
|
bool L_1 = ___0_value;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:84>
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:85>
|
|
bool L_2 = ___0_value;
|
|
__this->___m_RecordFrameMarkers = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:86>
|
|
bool L_3 = __this->___m_Enabled;
|
|
if (!L_3)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:88>
|
|
bool L_4 = ___0_value;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:89>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_5 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_5, __this, (intptr_t)((void*)InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_add_onBeforeUpdate_m022480417EA69F0488F81F112B2D9BED5D65AC5C(L_5, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:91>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_6 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_6, __this, (intptr_t)((void*)InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_remove_onBeforeUpdate_m4BD541DC1AB9FC6C87FB71B35A39CC75223E530C(L_6, NULL);
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:93>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25659
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventTrace_get_eventCount_m400E514AB29EC8BD933226B92A9EAE434FBADF44 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:100>
|
|
int64_t L_0 = __this->___m_EventCount;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25660
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventTrace_get_totalEventSizeInBytes_m6E588386064DF072AF51B246671979EFBB33B79F (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:107>
|
|
int64_t L_0 = __this->___m_EventSizeInBytes;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25661
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventTrace_get_allocatedSizeInBytes_m92FBB6A9439DC0F84BC095293F7F3C091AA23E70 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:116>
|
|
uint8_t* L_0;
|
|
L_0 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0)))))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
return ((int64_t)0);
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
int64_t L_1 = __this->___m_EventBufferSize;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25662
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t InputEventTrace_get_maxSizeInBytes_m8461E7D740F6835EE26F299892A3A1966E7152B0 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:124>
|
|
int64_t L_0 = __this->___m_MaxEventBufferSize;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25663
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570 InputEventTrace_get_deviceInfos_m66BCE6CE81C634A9352F04CF76CEA14F4E8B3942 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_op_Implicit_mDC06E9C67A7376B81251B04CEC9AACE3428C82BE_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:130>
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_0 = __this->___m_DeviceInfos;
|
|
ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570 L_1;
|
|
L_1 = ReadOnlyArray_1_op_Implicit_mDC06E9C67A7376B81251B04CEC9AACE3428C82BE(L_0, ReadOnlyArray_1_op_Implicit_mDC06E9C67A7376B81251B04CEC9AACE3428C82BE_RuntimeMethod_var);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25664
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* InputEventTrace_get_onFilterEvent_m883B3922540DED6722C92672C6CB92DA80D9422F (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:146>
|
|
Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* L_0 = __this->___m_OnFilterEvent;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25665
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_onFilterEvent_mC1AB9C3AC3D72126B25F9D843582B089FA88D556 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:147>
|
|
Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* L_0 = ___0_value;
|
|
__this->___m_OnFilterEvent = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OnFilterEvent), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25666
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_add_onEvent_m846B93E3502E964A9AEF3278F60FC712684AF692 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_AddCallback_m3952EFDAB87F62F3748292CDF90AB17DFB3BC72B_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:155>
|
|
CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* L_0 = (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*)(&__this->___m_EventListeners);
|
|
Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* L_1 = ___0_value;
|
|
CallbackArray_1_AddCallback_m3952EFDAB87F62F3748292CDF90AB17DFB3BC72B(L_0, L_1, CallbackArray_1_AddCallback_m3952EFDAB87F62F3748292CDF90AB17DFB3BC72B_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25667
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_remove_onEvent_m5E2C96FA1CF3AC89345942705C784DBD3A598588 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_RemoveCallback_m193ADCFAE914FE65AB4E5206FA645A02CDC9890D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:156>
|
|
CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* L_0 = (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*)(&__this->___m_EventListeners);
|
|
Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* L_1 = ___0_value;
|
|
CallbackArray_1_RemoveCallback_m193ADCFAE914FE65AB4E5206FA645A02CDC9890D(L_0, L_1, CallbackArray_1_RemoveCallback_m193ADCFAE914FE65AB4E5206FA645A02CDC9890D_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25668
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace__ctor_m8FF4728B5B37E6D481CD0118EB102B69BC22B138 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, int64_t ___1_bufferSizeInBytes, bool ___2_growBuffer, int64_t ___3_maxBufferSizeInBytes, int64_t ___4_growIncrementSizeInBytes, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:161>
|
|
int64_t L_0 = ___1_bufferSizeInBytes;
|
|
bool L_1 = ___2_growBuffer;
|
|
int64_t L_2 = ___3_maxBufferSizeInBytes;
|
|
int64_t L_3 = ___4_growIncrementSizeInBytes;
|
|
InputEventTrace__ctor_m33E71735CDB4DEC9D50431B1DF90CA88BD532AB3(__this, L_0, L_1, L_2, L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:163>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_4 = ___0_device;
|
|
if (L_4)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:164>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_5 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace__ctor_m8FF4728B5B37E6D481CD0118EB102B69BC22B138_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:166>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_6 = ___0_device;
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline(L_6, NULL);
|
|
__this->___m_DeviceId = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:167>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25669
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace__ctor_m33E71735CDB4DEC9D50431B1DF90CA88BD532AB3 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, int64_t ___0_bufferSizeInBytes, bool ___1_growBuffer, int64_t ___2_maxBufferSizeInBytes, int64_t ___3_growIncrementSizeInBytes, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:178>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:180>
|
|
int64_t L_0 = ___0_bufferSizeInBytes;
|
|
__this->___m_EventBufferSize = ((int64_t)(uint64_t)((uint32_t)((int32_t)(uint32_t)L_0)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:182>
|
|
bool L_1 = ___1_growBuffer;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:184>
|
|
int64_t L_2 = ___2_maxBufferSizeInBytes;
|
|
if ((((int64_t)L_2) >= ((int64_t)((int64_t)0))))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:185>
|
|
__this->___m_MaxEventBufferSize = ((int64_t)((int32_t)268435456));
|
|
goto IL_002c;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:187>
|
|
int64_t L_3 = ___2_maxBufferSizeInBytes;
|
|
__this->___m_MaxEventBufferSize = L_3;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:189>
|
|
int64_t L_4 = ___3_growIncrementSizeInBytes;
|
|
if ((((int64_t)L_4) >= ((int64_t)((int64_t)0))))
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:190>
|
|
__this->___m_GrowIncrementSize = ((int64_t)((int32_t)1048576));
|
|
return;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:192>
|
|
int64_t L_5 = ___3_growIncrementSizeInBytes;
|
|
__this->___m_GrowIncrementSize = L_5;
|
|
return;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:196>
|
|
int64_t L_6 = __this->___m_EventBufferSize;
|
|
__this->___m_MaxEventBufferSize = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:198>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25670
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_WriteTo_mE0CBA14E395823FF215130CF48644ED14E8875CF (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, String_t* ___0_filePath, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:211>
|
|
String_t* L_0 = ___0_filePath;
|
|
bool L_1;
|
|
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:212>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E6231226F0A62484622AE51964EB5710BB528F9)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_WriteTo_mE0CBA14E395823FF215130CF48644ED14E8875CF_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:214>
|
|
String_t* L_3 = ___0_filePath;
|
|
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_4;
|
|
L_4 = File_OpenWrite_m5DD7E6EDB15631A97328297A58E9395B47CFB6AB(L_3, NULL);
|
|
V_0 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0023:
|
|
{
|
|
{
|
|
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:215>
|
|
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_7 = V_0;
|
|
InputEventTrace_WriteTo_mCCAB194CB8909F1BEC6854A0CA39FF87160629D7(__this, L_7, NULL);
|
|
goto IL_002d;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:216>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25671
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_WriteTo_mCCAB194CB8909F1BEC6854A0CA39FF87160629D7 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___0_stream, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_LengthSafe_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m1A991C46566DF63B412B6FAC8DA4A910E6916923_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tC686F7806DE87459BEAA5E37865B3E8BD4DAA1A0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
int64_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int64_t V_4 = 0;
|
|
RuntimeObject* V_5 = NULL;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
uint32_t V_7 = 0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_8 = NULL;
|
|
uint8_t* V_9 = NULL;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_10 = NULL;
|
|
int32_t V_11 = 0;
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* V_12 = NULL;
|
|
String_t* G_B23_0 = NULL;
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* G_B23_1 = NULL;
|
|
String_t* G_B22_0 = NULL;
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* G_B22_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:227>
|
|
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___0_stream;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:228>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_WriteTo_mCCAB194CB8909F1BEC6854A0CA39FF87160629D7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:229>
|
|
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_2 = ___0_stream;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = VirtualFuncInvoker0< bool >::Invoke(8, L_2);
|
|
if (L_3)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:230>
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4541DABAC4FE8FD5D7C4DBCDA1190481B5A90229)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_WriteTo_mCCAB194CB8909F1BEC6854A0CA39FF87160629D7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:232>
|
|
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_5 = ___0_stream;
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_6 = (BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E*)il2cpp_codegen_object_new(BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E_il2cpp_TypeInfo_var);
|
|
BinaryWriter__ctor_mF2F1235E378C3EC493A8C816597BCEB4205A9CA0(L_6, L_5, NULL);
|
|
V_0 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:234>
|
|
V_1 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:235>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF* L_7;
|
|
L_7 = InputSystem_get_settings_m8E3E9C0907904CBDBAE96354142AB0A87C7A3B74(NULL);
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = InputSettings_get_updateMode_mD37EABFC0678912846EABBC3CF31AC82E4ACE79E_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_8) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:236>
|
|
int32_t L_9 = V_1;
|
|
V_1 = ((int32_t)((int32_t)L_9|1));
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:239>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_10 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_11;
|
|
L_11 = InputEventTrace_get_kFileFormat_m1ECD7EAD5F4E9E247214316891DE8D4DBA07A40D(NULL);
|
|
int32_t L_12;
|
|
L_12 = FourCC_op_Implicit_mC296B4E8C4929EACBB7066BB9856C116EE082A7B_inline(L_11, NULL);
|
|
NullCheck(L_10);
|
|
VirtualActionInvoker1< int32_t >::Invoke(16, L_10, L_12);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:240>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_13 = V_0;
|
|
int32_t L_14 = ((InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_StaticFields*)il2cpp_codegen_static_fields_for(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var))->___kFileVersion;
|
|
NullCheck(L_13);
|
|
VirtualActionInvoker1< int32_t >::Invoke(16, L_13, L_14);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:241>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_15 = V_0;
|
|
int32_t L_16 = V_1;
|
|
NullCheck(L_15);
|
|
VirtualActionInvoker1< int32_t >::Invoke(16, L_15, L_16);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:242>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_17 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
int32_t L_18;
|
|
L_18 = Application_get_platform_m59EF7D6155D18891B24767F83F388160B1FF2138(NULL);
|
|
NullCheck(L_17);
|
|
VirtualActionInvoker1< int32_t >::Invoke(16, L_17, L_18);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:243>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_19 = V_0;
|
|
int64_t L_20 = __this->___m_EventCount;
|
|
NullCheck(L_19);
|
|
VirtualActionInvoker1< uint64_t >::Invoke(19, L_19, L_20);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:244>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_21 = V_0;
|
|
int64_t L_22 = __this->___m_EventSizeInBytes;
|
|
NullCheck(L_21);
|
|
VirtualActionInvoker1< uint64_t >::Invoke(19, L_21, L_22);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:247>
|
|
RuntimeObject* L_23;
|
|
L_23 = InputEventTrace_GetEnumerator_mEB8437D4B14D194CBA901FB9DD034AB0BD1015E3(__this, NULL);
|
|
V_5 = L_23;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00f2:
|
|
{
|
|
{
|
|
RuntimeObject* L_24 = V_5;
|
|
if (!L_24)
|
|
{
|
|
goto IL_00fd;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_25 = V_5;
|
|
NullCheck(L_25);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_25);
|
|
}
|
|
|
|
IL_00fd:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_00e7_1;
|
|
}
|
|
|
|
IL_008f_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:247>
|
|
RuntimeObject* L_26 = V_5;
|
|
NullCheck(L_26);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_27;
|
|
L_27 = InterfaceFuncInvoker0< InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 >::Invoke(0, IEnumerator_1_tC686F7806DE87459BEAA5E37865B3E8BD4DAA1A0_il2cpp_TypeInfo_var, L_26);
|
|
V_6 = L_27;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:251>
|
|
uint32_t L_28;
|
|
L_28 = InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597((&V_6), NULL);
|
|
V_7 = L_28;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:252>
|
|
uint32_t L_29 = V_7;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_30 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_29);
|
|
V_8 = L_30;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00e3_1:
|
|
{
|
|
V_10 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:253>
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_31 = V_8;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_32 = L_31;
|
|
V_10 = L_32;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00b7_2;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33 = V_10;
|
|
NullCheck(L_33);
|
|
if (((int32_t)(((RuntimeArray*)L_33)->max_length)))
|
|
{
|
|
goto IL_00bd_2;
|
|
}
|
|
}
|
|
|
|
IL_00b7_2:
|
|
{
|
|
V_9 = (uint8_t*)((uintptr_t)0);
|
|
goto IL_00c8_2;
|
|
}
|
|
|
|
IL_00bd_2:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_34 = V_10;
|
|
NullCheck(L_34);
|
|
V_9 = (uint8_t*)((uintptr_t)((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
|
|
}
|
|
|
|
IL_00c8_2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:255>
|
|
uint8_t* L_35 = V_9;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_36;
|
|
L_36 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&V_6), NULL);
|
|
uint32_t L_37 = V_7;
|
|
UnsafeUtility_MemCpy_m5CEA91ACDADC522E584AE3A2AB2B0B74393A9177((void*)L_35, (void*)L_36, ((int64_t)(uint64_t)((uint32_t)L_37)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:256>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_38 = V_0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_39 = V_8;
|
|
NullCheck(L_38);
|
|
VirtualActionInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(9, L_38, L_39);
|
|
goto IL_00e7_1;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00e7_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:247>
|
|
RuntimeObject* L_40 = V_5;
|
|
NullCheck(L_40);
|
|
bool L_41;
|
|
L_41 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_40);
|
|
if (L_41)
|
|
{
|
|
goto IL_008f_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00fe;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00fe:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:261>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_42 = V_0;
|
|
NullCheck(L_42);
|
|
VirtualActionInvoker0::Invoke(6, L_42);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:262>
|
|
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_43 = ___0_stream;
|
|
NullCheck(L_43);
|
|
int64_t L_44;
|
|
L_44 = VirtualFuncInvoker0< int64_t >::Invoke(11, L_43);
|
|
V_2 = L_44;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:263>
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_45 = __this->___m_DeviceInfos;
|
|
int32_t L_46;
|
|
L_46 = ArrayHelpers_LengthSafe_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m1A991C46566DF63B412B6FAC8DA4A910E6916923(L_45, ArrayHelpers_LengthSafe_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m1A991C46566DF63B412B6FAC8DA4A910E6916923_RuntimeMethod_var);
|
|
V_3 = L_46;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:264>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_47 = V_0;
|
|
int32_t L_48 = V_3;
|
|
NullCheck(L_47);
|
|
VirtualActionInvoker1< int32_t >::Invoke(16, L_47, L_48);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:265>
|
|
V_11 = 0;
|
|
goto IL_0187;
|
|
}
|
|
|
|
IL_0123:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:267>
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_49 = __this->___m_DeviceInfos;
|
|
int32_t L_50 = V_11;
|
|
NullCheck(L_49);
|
|
V_12 = ((L_49)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_50)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:268>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_51 = V_0;
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* L_52 = V_12;
|
|
int32_t L_53;
|
|
L_53 = DeviceInfo_get_deviceId_m1F56DCC1850CA1B775C357DA6D521F04EA74F0C6_inline(L_52, NULL);
|
|
NullCheck(L_51);
|
|
VirtualActionInvoker1< int32_t >::Invoke(16, L_51, L_53);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:269>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_54 = V_0;
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* L_55 = V_12;
|
|
String_t* L_56;
|
|
L_56 = DeviceInfo_get_layout_mC531D6400FCF8EE7CCBE96D0DC9328BC0A5AC24C_inline(L_55, NULL);
|
|
NullCheck(L_54);
|
|
VirtualActionInvoker1< String_t* >::Invoke(21, L_54, L_56);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:270>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_57 = V_0;
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* L_58 = V_12;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_59;
|
|
L_59 = DeviceInfo_get_stateFormat_mA04A926E1277535752AC4117996C3B0F89D26916_inline(L_58, NULL);
|
|
int32_t L_60;
|
|
L_60 = FourCC_op_Implicit_mC296B4E8C4929EACBB7066BB9856C116EE082A7B_inline(L_59, NULL);
|
|
NullCheck(L_57);
|
|
VirtualActionInvoker1< int32_t >::Invoke(16, L_57, L_60);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:271>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_61 = V_0;
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* L_62 = V_12;
|
|
int32_t L_63;
|
|
L_63 = DeviceInfo_get_stateSizeInBytes_mD21A7DBF02B25079F7A1F1482AC2EFE5A86F5C9C_inline(L_62, NULL);
|
|
NullCheck(L_61);
|
|
VirtualActionInvoker1< int32_t >::Invoke(16, L_61, L_63);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:272>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_64 = V_0;
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* L_65 = V_12;
|
|
String_t* L_66 = L_65->___m_FullLayoutJson;
|
|
String_t* L_67 = L_66;
|
|
if (L_67)
|
|
{
|
|
G_B23_0 = L_67;
|
|
G_B23_1 = L_64;
|
|
goto IL_017c;
|
|
}
|
|
G_B22_0 = L_67;
|
|
G_B22_1 = L_64;
|
|
}
|
|
{
|
|
String_t* L_68 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_defaults.string_class))->___Empty;
|
|
G_B23_0 = L_68;
|
|
G_B23_1 = G_B22_1;
|
|
}
|
|
|
|
IL_017c:
|
|
{
|
|
NullCheck(G_B23_1);
|
|
VirtualActionInvoker1< String_t* >::Invoke(21, G_B23_1, G_B23_0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:265>
|
|
int32_t L_69 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add(L_69, 1));
|
|
}
|
|
|
|
IL_0187:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:265>
|
|
int32_t L_70 = V_11;
|
|
int32_t L_71 = V_3;
|
|
if ((((int32_t)L_70) < ((int32_t)L_71)))
|
|
{
|
|
goto IL_0123;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:276>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_72 = V_0;
|
|
NullCheck(L_72);
|
|
VirtualActionInvoker0::Invoke(6, L_72);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:277>
|
|
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_73 = ___0_stream;
|
|
NullCheck(L_73);
|
|
int64_t L_74;
|
|
L_74 = VirtualFuncInvoker0< int64_t >::Invoke(11, L_73);
|
|
int64_t L_75 = V_2;
|
|
V_4 = ((int64_t)il2cpp_codegen_subtract(L_74, L_75));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:278>
|
|
BinaryWriter_tFB94D67EDFA3F6A34744A163BDABE287FDF2ED1E* L_76 = V_0;
|
|
int64_t L_77 = V_4;
|
|
NullCheck(L_76);
|
|
VirtualActionInvoker1< int64_t >::Invoke(18, L_76, L_77);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:279>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25672
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_ReadFrom_m0B3DB3EBB340BBD3B9AE3A819C432B09BF4F358F (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, String_t* ___0_filePath, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:295>
|
|
String_t* L_0 = ___0_filePath;
|
|
bool L_1;
|
|
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:296>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E6231226F0A62484622AE51964EB5710BB528F9)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_m0B3DB3EBB340BBD3B9AE3A819C432B09BF4F358F_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:298>
|
|
String_t* L_3 = ___0_filePath;
|
|
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_4;
|
|
L_4 = File_OpenRead_m6181B052EB0E98D2E18FAC79E7744D766BA4244C(L_3, NULL);
|
|
V_0 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0023:
|
|
{
|
|
{
|
|
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:299>
|
|
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_7 = V_0;
|
|
InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327(__this, L_7, NULL);
|
|
goto IL_002d;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:300>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25673
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___0_stream, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* V_0 = NULL;
|
|
uint64_t V_1 = 0;
|
|
uint64_t V_2 = 0;
|
|
uint8_t* V_3 = NULL;
|
|
uint8_t* V_4 = NULL;
|
|
uint8_t* V_5 = NULL;
|
|
uint8_t* V_6 = NULL;
|
|
int64_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* V_9 = NULL;
|
|
uint64_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
uint32_t V_12 = 0;
|
|
uint32_t V_13 = 0;
|
|
int32_t V_14 = 0;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_15 = NULL;
|
|
uint8_t* V_16 = NULL;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_17 = NULL;
|
|
int32_t V_18 = 0;
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:317>
|
|
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___0_stream;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:318>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:319>
|
|
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_2 = ___0_stream;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = VirtualFuncInvoker0< bool >::Invoke(7, L_2);
|
|
if (L_3)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:320>
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA4EC35FE30A8C73BDAEF7A654EEEA3953D7FAE24)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:322>
|
|
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_5 = ___0_stream;
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_6 = (BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158*)il2cpp_codegen_object_new(BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158_il2cpp_TypeInfo_var);
|
|
BinaryReader__ctor_m898732FE0DBEDD480B24F6DE45A9AC696E44CC0F(L_6, L_5, NULL);
|
|
V_0 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:325>
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = VirtualFuncInvoker0< int32_t >::Invoke(15, L_7);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_9;
|
|
L_9 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(L_8, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_10;
|
|
L_10 = InputEventTrace_get_kFileFormat_m1ECD7EAD5F4E9E247214316891DE8D4DBA07A40D(NULL);
|
|
bool L_11;
|
|
L_11 = FourCC_op_Inequality_m8E764B9EF56D488E40480A3E69230EF623C7B92B_inline(L_9, L_10, NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:326>
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var)));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_12;
|
|
L_12 = InputEventTrace_get_kFileFormat_m1ECD7EAD5F4E9E247214316891DE8D4DBA07A40D(NULL);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_13 = L_12;
|
|
RuntimeObject* L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED_il2cpp_TypeInfo_var)), &L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral589E6D8BD59F7D804E4A1A1C559787B0B2549B6C)), L_14, NULL);
|
|
IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* L_16 = (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var)));
|
|
IOException__ctor_mE0612A16064F93C7EBB468D6874777BD70CB50CA(L_16, L_15, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:327>
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = VirtualFuncInvoker0< int32_t >::Invoke(15, L_17);
|
|
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
int32_t L_19 = ((InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_StaticFields*)il2cpp_codegen_static_fields_for(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var))->___kFileVersion;
|
|
if ((((int32_t)L_18) <= ((int32_t)L_19)))
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:328>
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var)));
|
|
int32_t L_20 = ((InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var))))->___kFileVersion;
|
|
int32_t L_21 = L_20;
|
|
RuntimeObject* L_22 = Box(il2cpp_defaults.int32_class, &L_21);
|
|
String_t* L_23;
|
|
L_23 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral34E2E1D5D393F33E08B55532C6B7D27294F02F4C)), L_22, NULL);
|
|
IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910* L_24 = (IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var)));
|
|
IOException__ctor_mE0612A16064F93C7EBB468D6874777BD70CB50CA(L_24, L_23, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:329>
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_25 = V_0;
|
|
NullCheck(L_25);
|
|
int32_t L_26;
|
|
L_26 = VirtualFuncInvoker0< int32_t >::Invoke(15, L_25);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:330>
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_27 = V_0;
|
|
NullCheck(L_27);
|
|
int32_t L_28;
|
|
L_28 = VirtualFuncInvoker0< int32_t >::Invoke(15, L_27);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:331>
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_29 = V_0;
|
|
NullCheck(L_29);
|
|
uint64_t L_30;
|
|
L_30 = VirtualFuncInvoker0< uint64_t >::Invoke(18, L_29);
|
|
V_1 = L_30;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:332>
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_31 = V_0;
|
|
NullCheck(L_31);
|
|
uint64_t L_32;
|
|
L_32 = VirtualFuncInvoker0< uint64_t >::Invoke(18, L_31);
|
|
V_2 = L_32;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:333>
|
|
uint8_t* L_33;
|
|
L_33 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
V_3 = L_33;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:335>
|
|
uint64_t L_34 = V_1;
|
|
if ((!(((uint64_t)L_34) > ((uint64_t)((int64_t)0)))))
|
|
{
|
|
goto IL_027e;
|
|
}
|
|
}
|
|
{
|
|
uint64_t L_35 = V_2;
|
|
if ((!(((uint64_t)L_35) > ((uint64_t)((int64_t)0)))))
|
|
{
|
|
goto IL_027e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:339>
|
|
uint8_t* L_36;
|
|
L_36 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
if ((((intptr_t)L_36) == ((intptr_t)((uintptr_t)0))))
|
|
{
|
|
goto IL_00d5;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_37 = __this->___m_EventBufferSize;
|
|
uint64_t L_38 = V_2;
|
|
if ((((int64_t)L_37) < ((int64_t)L_38)))
|
|
{
|
|
goto IL_00d5;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:342>
|
|
uint8_t* L_39;
|
|
L_39 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
V_4 = L_39;
|
|
goto IL_00e6;
|
|
}
|
|
|
|
IL_00d5:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:346>
|
|
uint64_t L_40 = V_2;
|
|
void* L_41;
|
|
L_41 = UnsafeUtility_Malloc_mD7BD28D5AE7E4901B225B7DFFE2B568EE7BDC0C9(L_40, 4, 4, NULL);
|
|
V_4 = (uint8_t*)L_41;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:347>
|
|
uint64_t L_42 = V_2;
|
|
__this->___m_EventBufferSize = L_42;
|
|
}
|
|
|
|
IL_00e6:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:352>
|
|
uint8_t* L_43 = V_4;
|
|
V_5 = L_43;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:353>
|
|
uint8_t* L_44 = V_5;
|
|
uint64_t L_45 = V_2;
|
|
V_6 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_44, (intptr_t)((uintptr_t)L_45)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:354>
|
|
V_7 = ((int64_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:355>
|
|
V_10 = ((int64_t)0);
|
|
goto IL_01b6_1;
|
|
}
|
|
|
|
IL_00ff_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:357>
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_46 = V_0;
|
|
NullCheck(L_46);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker0< int32_t >::Invoke(15, L_46);
|
|
V_11 = L_47;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:358>
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_48 = V_0;
|
|
NullCheck(L_48);
|
|
uint16_t L_49;
|
|
L_49 = VirtualFuncInvoker0< uint16_t >::Invoke(14, L_48);
|
|
V_12 = L_49;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:359>
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_50 = V_0;
|
|
NullCheck(L_50);
|
|
uint16_t L_51;
|
|
L_51 = VirtualFuncInvoker0< uint16_t >::Invoke(14, L_50);
|
|
V_13 = L_51;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:361>
|
|
uint32_t L_52 = V_12;
|
|
uint8_t* L_53 = V_6;
|
|
uint8_t* L_54 = V_5;
|
|
if ((((int64_t)((int64_t)(uint64_t)((uint32_t)L_52))) > ((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_53, (intptr_t)L_54))/1))))))
|
|
{
|
|
goto IL_01be_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:364>
|
|
uint8_t* L_55 = V_5;
|
|
int32_t L_56 = V_11;
|
|
*((int32_t*)L_55) = (int32_t)L_56;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:365>
|
|
uint8_t* L_57 = V_5;
|
|
V_5 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_57, 4));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:366>
|
|
uint8_t* L_58 = V_5;
|
|
uint32_t L_59 = V_12;
|
|
*((int16_t*)L_58) = (int16_t)((int32_t)(uint16_t)L_59);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:367>
|
|
uint8_t* L_60 = V_5;
|
|
V_5 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_60, 2));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:368>
|
|
uint8_t* L_61 = V_5;
|
|
uint32_t L_62 = V_13;
|
|
*((int16_t*)L_61) = (int16_t)((int32_t)(uint16_t)L_62);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:369>
|
|
uint8_t* L_63 = V_5;
|
|
V_5 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_63, 2));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:372>
|
|
uint32_t L_64 = V_12;
|
|
V_14 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract((int32_t)L_64, 4)), 2)), 2));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:373>
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_65 = V_0;
|
|
int32_t L_66 = V_14;
|
|
NullCheck(L_65);
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_67;
|
|
L_67 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t >::Invoke(25, L_65, L_66);
|
|
V_15 = L_67;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_018a_1:
|
|
{
|
|
V_17 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:374>
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_68 = V_15;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_69 = L_68;
|
|
V_17 = L_69;
|
|
if (!L_69)
|
|
{
|
|
goto IL_016b_2;
|
|
}
|
|
}
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_70 = V_17;
|
|
NullCheck(L_70);
|
|
if (((int32_t)(((RuntimeArray*)L_70)->max_length)))
|
|
{
|
|
goto IL_0171_2;
|
|
}
|
|
}
|
|
|
|
IL_016b_2:
|
|
{
|
|
V_16 = (uint8_t*)((uintptr_t)0);
|
|
goto IL_017c_2;
|
|
}
|
|
|
|
IL_0171_2:
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_71 = V_17;
|
|
NullCheck(L_71);
|
|
V_16 = (uint8_t*)((uintptr_t)((L_71)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
|
|
}
|
|
|
|
IL_017c_2:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:375>
|
|
uint8_t* L_72 = V_5;
|
|
uint8_t* L_73 = V_16;
|
|
int32_t L_74 = V_14;
|
|
UnsafeUtility_MemCpy_m5CEA91ACDADC522E584AE3A2AB2B0B74393A9177((void*)L_72, (void*)L_73, ((int64_t)L_74), NULL);
|
|
goto IL_018e_1;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_018e_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:377>
|
|
uint8_t* L_75 = V_5;
|
|
int32_t L_76 = V_14;
|
|
int32_t L_77;
|
|
L_77 = NumberHelpers_AlignToMultipleOf_m1DD6F7938F5F4EA99168EFE5AAD4604972F2FB6D_inline(L_76, 4, NULL);
|
|
V_5 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_75, L_77));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:378>
|
|
int64_t L_78 = V_7;
|
|
uint32_t L_79 = V_12;
|
|
uint32_t L_80;
|
|
L_80 = NumberHelpers_AlignToMultipleOf_m44B66C972BC1F508B9022564F265D1AA6A001AAE_inline(L_79, 4, NULL);
|
|
V_7 = ((int64_t)il2cpp_codegen_add(L_78, ((int64_t)(uint64_t)((uint32_t)L_80))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:380>
|
|
uint8_t* L_81 = V_5;
|
|
uint8_t* L_82 = V_6;
|
|
if ((!(((uintptr_t)L_81) < ((uintptr_t)L_82))))
|
|
{
|
|
goto IL_01be_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:355>
|
|
uint64_t L_83 = V_10;
|
|
V_10 = ((int64_t)il2cpp_codegen_add((int64_t)L_83, ((int64_t)1)));
|
|
}
|
|
|
|
IL_01b6_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:355>
|
|
uint64_t L_84 = V_10;
|
|
uint64_t L_85 = V_1;
|
|
if ((!(((uint64_t)L_84) >= ((uint64_t)L_85))))
|
|
{
|
|
goto IL_00ff_1;
|
|
}
|
|
}
|
|
|
|
IL_01be_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:385>
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_86 = V_0;
|
|
NullCheck(L_86);
|
|
int32_t L_87;
|
|
L_87 = VirtualFuncInvoker0< int32_t >::Invoke(15, L_86);
|
|
V_8 = L_87;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:386>
|
|
int32_t L_88 = V_8;
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_89 = (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A*)(DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A*)SZArrayNew(DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A_il2cpp_TypeInfo_var, (uint32_t)L_88);
|
|
V_9 = L_89;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:387>
|
|
V_18 = 0;
|
|
goto IL_0233_1;
|
|
}
|
|
|
|
IL_01d4_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:389>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:390>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:391>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:392>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:393>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:394>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:395>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:396>
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_90 = V_9;
|
|
int32_t L_91 = V_18;
|
|
il2cpp_codegen_initobj((&V_19), sizeof(DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52));
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_92 = V_0;
|
|
NullCheck(L_92);
|
|
int32_t L_93;
|
|
L_93 = VirtualFuncInvoker0< int32_t >::Invoke(15, L_92);
|
|
DeviceInfo_set_deviceId_m76EE4AFBA1FA3FFACF2E017498621E66A819DEBD_inline((&V_19), L_93, NULL);
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_94 = V_0;
|
|
NullCheck(L_94);
|
|
String_t* L_95;
|
|
L_95 = VirtualFuncInvoker0< String_t* >::Invoke(22, L_94);
|
|
DeviceInfo_set_layout_mB0175279434FFE48B744FE2CA4800A1EF24B2D69_inline((&V_19), L_95, NULL);
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_96 = V_0;
|
|
NullCheck(L_96);
|
|
int32_t L_97;
|
|
L_97 = VirtualFuncInvoker0< int32_t >::Invoke(15, L_96);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_98;
|
|
L_98 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(L_97, NULL);
|
|
DeviceInfo_set_stateFormat_mFC8581D56C34FFCBF8264CFD61BA12CE56755478_inline((&V_19), L_98, NULL);
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_99 = V_0;
|
|
NullCheck(L_99);
|
|
int32_t L_100;
|
|
L_100 = VirtualFuncInvoker0< int32_t >::Invoke(15, L_99);
|
|
DeviceInfo_set_stateSizeInBytes_m7D7507BD0D817A86E99E3E44E216B31855ED06B3_inline((&V_19), L_100, NULL);
|
|
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_101 = V_0;
|
|
NullCheck(L_101);
|
|
String_t* L_102;
|
|
L_102 = VirtualFuncInvoker0< String_t* >::Invoke(22, L_101);
|
|
(&V_19)->___m_FullLayoutJson = L_102;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_19)->___m_FullLayoutJson), (void*)L_102);
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 L_103 = V_19;
|
|
NullCheck(L_90);
|
|
(L_90)->SetAt(static_cast<il2cpp_array_size_t>(L_91), (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52)L_103);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:387>
|
|
int32_t L_104 = V_18;
|
|
V_18 = ((int32_t)il2cpp_codegen_add(L_104, 1));
|
|
}
|
|
|
|
IL_0233_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:387>
|
|
int32_t L_105 = V_18;
|
|
int32_t L_106 = V_8;
|
|
if ((((int32_t)L_105) < ((int32_t)L_106)))
|
|
{
|
|
goto IL_01d4_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:400>
|
|
uint8_t* L_107 = V_4;
|
|
InputEventTrace_set_m_EventBuffer_m9E277FFE218D8DB8738E10166B8685AAEBF20A56(__this, L_107, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:401>
|
|
uint8_t* L_108;
|
|
L_108 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156(__this, L_108, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:402>
|
|
uint8_t* L_109 = V_6;
|
|
InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B(__this, L_109, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:403>
|
|
uint64_t L_110 = V_1;
|
|
__this->___m_EventCount = L_110;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:404>
|
|
int64_t L_111 = V_7;
|
|
__this->___m_EventSizeInBytes = L_111;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:405>
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_112 = V_9;
|
|
__this->___m_DeviceInfos = L_112;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DeviceInfos), (void*)L_112);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:406>
|
|
goto IL_0296;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (il2cpp_defaults.object_class, il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_026e;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_026e:
|
|
{
|
|
{
|
|
RuntimeObject* L_113 = ((RuntimeObject*)IL2CPP_GET_ACTIVE_EXCEPTION(RuntimeObject*));;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:407>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:409>
|
|
uint8_t* L_114 = V_4;
|
|
uint8_t* L_115 = V_3;
|
|
if ((((intptr_t)L_114) == ((intptr_t)L_115)))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:410>
|
|
uint8_t* L_116 = V_4;
|
|
UnsafeUtility_Free_mFF99F4F02FE7F735AB30D8987D6953E55A2B23E1((void*)L_116, 4, NULL);
|
|
}
|
|
|
|
IL_027c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:411>
|
|
IL2CPP_RETHROW_MANAGED_EXCEPTION(IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*));
|
|
}
|
|
}
|
|
|
|
IL_027e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:416>
|
|
InputEventTrace_set_m_EventBuffer_m9E277FFE218D8DB8738E10166B8685AAEBF20A56(__this, (uint8_t*)((uintptr_t)0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:417>
|
|
InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156(__this, (uint8_t*)((uintptr_t)0), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:418>
|
|
InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B(__this, (uint8_t*)((uintptr_t)0), NULL);
|
|
}
|
|
|
|
IL_0296:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:422>
|
|
uint8_t* L_117;
|
|
L_117 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
uint8_t* L_118 = V_3;
|
|
if ((((intptr_t)L_117) == ((intptr_t)L_118)))
|
|
{
|
|
goto IL_02ab;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_119 = V_3;
|
|
if ((((intptr_t)L_119) == ((intptr_t)((uintptr_t)0))))
|
|
{
|
|
goto IL_02ab;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:423>
|
|
uint8_t* L_120 = V_3;
|
|
UnsafeUtility_Free_mFF99F4F02FE7F735AB30D8987D6953E55A2B23E1((void*)L_120, 4, NULL);
|
|
}
|
|
|
|
IL_02ab:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:425>
|
|
int32_t L_121 = __this->___m_ChangeCounter;
|
|
__this->___m_ChangeCounter = ((int32_t)il2cpp_codegen_add(L_121, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:426>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25674
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* InputEventTrace_LoadFrom_mEFB01D71D9BACB72028F20075B8B09E3C4052BB8 (String_t* ___0_filePath, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_0 = NULL;
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* V_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:440>
|
|
String_t* L_0 = ___0_filePath;
|
|
bool L_1;
|
|
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:441>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E6231226F0A62484622AE51964EB5710BB528F9)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_LoadFrom_mEFB01D71D9BACB72028F20075B8B09E3C4052BB8_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:443>
|
|
String_t* L_3 = ___0_filePath;
|
|
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_4;
|
|
L_4 = File_OpenRead_m6181B052EB0E98D2E18FAC79E7744D766BA4244C(L_3, NULL);
|
|
V_0 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0023:
|
|
{
|
|
{
|
|
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:444>
|
|
FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_7 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_8;
|
|
L_8 = InputEventTrace_LoadFrom_mB957CED841234BDBFBA2C7D99D89AF0CE73884AD(L_7, NULL);
|
|
V_1 = L_8;
|
|
goto IL_002d;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:445>
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
// Method Definition Index: 25675
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* InputEventTrace_LoadFrom_mB957CED841234BDBFBA2C7D99D89AF0CE73884AD (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___0_stream, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:458>
|
|
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___0_stream;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:459>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_LoadFrom_mB957CED841234BDBFBA2C7D99D89AF0CE73884AD_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:460>
|
|
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_2 = ___0_stream;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = VirtualFuncInvoker0< bool >::Invoke(7, L_2);
|
|
if (L_3)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:461>
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE518FE2FD73613C259C98F83F70015A67E8459D1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7E6C53D86D8ADC0DB8EFC0A2CD9877CC8BC9914)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_LoadFrom_mB957CED841234BDBFBA2C7D99D89AF0CE73884AD_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:463>
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_5 = (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD*)il2cpp_codegen_object_new(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
InputEventTrace__ctor_m33E71735CDB4DEC9D50431B1DF90CA88BD532AB3(L_5, ((int64_t)((int32_t)1048576)), (bool)0, ((int64_t)(-1)), ((int64_t)(-1)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:464>
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_6 = L_5;
|
|
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_7 = ___0_stream;
|
|
NullCheck(L_6);
|
|
InputEventTrace_ReadFrom_mA7D0BA1D2798D9B3C02633563006A65A3E31E327(L_6, L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:466>
|
|
return L_6;
|
|
}
|
|
}
|
|
// Method Definition Index: 25676
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* InputEventTrace_Replay_m6AF6120FF577F3025FEF03C4D21B018A1B5C6335 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:479>
|
|
InputEventTrace_Disable_m58CF35DBD23C6091AEE498C2DFC14E40D51BA8D9(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:480>
|
|
ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* L_0 = (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C*)il2cpp_codegen_object_new(ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C_il2cpp_TypeInfo_var);
|
|
ReplayController__ctor_mFACECC15923550957D306EF31786A98FD37F1F03(L_0, __this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25677
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_Resize_m257080DC43F8E24AD91F423FB340139965B1C190 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, int64_t ___0_newBufferSize, int64_t ___1_newMaxBufferSize, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int64_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
uint32_t V_7 = 0;
|
|
uint32_t V_8 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:495>
|
|
int64_t L_0 = ___0_newBufferSize;
|
|
if ((((int64_t)L_0) > ((int64_t)((int64_t)0))))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:496>
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_1 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5278FC49D5DD7EE6B7B489211DF85A018916ACB6)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC5F6475699851D077E0F965E3C29BEB8A33E339A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InputEventTrace_Resize_m257080DC43F8E24AD91F423FB340139965B1C190_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:498>
|
|
int64_t L_2 = __this->___m_EventBufferSize;
|
|
int64_t L_3 = ___0_newBufferSize;
|
|
if ((!(((uint64_t)L_2) == ((uint64_t)L_3))))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:499>
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:501>
|
|
int64_t L_4 = ___1_newMaxBufferSize;
|
|
int64_t L_5 = ___0_newBufferSize;
|
|
if ((((int64_t)L_4) >= ((int64_t)L_5)))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:502>
|
|
int64_t L_6 = ___0_newBufferSize;
|
|
___1_newMaxBufferSize = L_6;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:505>
|
|
int64_t L_7 = ___0_newBufferSize;
|
|
void* L_8;
|
|
L_8 = UnsafeUtility_Malloc_mD7BD28D5AE7E4901B225B7DFFE2B568EE7BDC0C9(L_7, 4, 4, NULL);
|
|
V_0 = (uint8_t*)L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:506>
|
|
uint8_t* L_9 = V_0;
|
|
if ((!(((uintptr_t)L_9) == ((uintptr_t)((uintptr_t)0)))))
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:507>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:510>
|
|
int64_t L_10 = __this->___m_EventCount;
|
|
if ((((int64_t)L_10) <= ((int64_t)((int64_t)0))))
|
|
{
|
|
goto IL_0102;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:514>
|
|
int64_t L_11 = ___0_newBufferSize;
|
|
int64_t L_12 = __this->___m_EventBufferSize;
|
|
if ((((int64_t)L_11) < ((int64_t)L_12)))
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
bool L_13 = __this->___m_HasWrapped;
|
|
if (!L_13)
|
|
{
|
|
goto IL_00f0;
|
|
}
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:516>
|
|
uint8_t* L_14;
|
|
L_14 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
|
|
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline((&V_1), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:517>
|
|
uint8_t* L_15 = V_0;
|
|
V_2 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_15;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:518>
|
|
V_3 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:519>
|
|
V_4 = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:520>
|
|
int64_t L_16 = __this->___m_EventSizeInBytes;
|
|
V_5 = L_16;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:522>
|
|
V_6 = 0;
|
|
goto IL_00cb;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:524>
|
|
uint32_t L_17;
|
|
L_17 = InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597((&V_1), NULL);
|
|
V_7 = L_17;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:525>
|
|
uint32_t L_18 = V_7;
|
|
uint32_t L_19;
|
|
L_19 = NumberHelpers_AlignToMultipleOf_m44B66C972BC1F508B9022564F265D1AA6A001AAE_inline(L_18, 4, NULL);
|
|
V_8 = L_19;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:529>
|
|
int64_t L_20 = V_5;
|
|
int64_t L_21 = ___0_newBufferSize;
|
|
if ((((int64_t)L_20) > ((int64_t)L_21)))
|
|
{
|
|
goto IL_00b3;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:531>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_22 = V_2;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_23;
|
|
L_23 = InputEventPtr_ToPointer_m2DE1A988A02CC6E632A5262095B719513F166CA6((&V_1), NULL);
|
|
uint32_t L_24 = V_7;
|
|
UnsafeUtility_MemCpy_m5CEA91ACDADC522E584AE3A2AB2B0B74393A9177((void*)L_22, (void*)L_23, ((int64_t)(uint64_t)((uint32_t)L_24)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:532>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_25 = V_2;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_26;
|
|
L_26 = InputEvent_GetNextInMemory_mC3AFC8F09360ED6791DCF32F2788143DDF139E21(L_25, NULL);
|
|
V_2 = L_26;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:533>
|
|
int32_t L_27 = V_4;
|
|
uint32_t L_28 = V_8;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_27, (int32_t)L_28));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:534>
|
|
int32_t L_29 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_29, 1));
|
|
}
|
|
|
|
IL_00b3:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:537>
|
|
int64_t L_30 = V_5;
|
|
uint32_t L_31 = V_8;
|
|
V_5 = ((int64_t)il2cpp_codegen_subtract(L_30, ((int64_t)(uint64_t)((uint32_t)L_31))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:538>
|
|
bool L_32;
|
|
L_32 = InputEventTrace_GetNextEvent_mDF7ED13DD6F42BA87EDE532CAB99BB697C8B108A(__this, (&V_1), NULL);
|
|
if (!L_32)
|
|
{
|
|
goto IL_00d6;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:522>
|
|
int32_t L_33 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_33, 1));
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:522>
|
|
int32_t L_34 = V_6;
|
|
int64_t L_35 = __this->___m_EventCount;
|
|
if ((((int64_t)((int64_t)L_34)) < ((int64_t)L_35)))
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
}
|
|
|
|
IL_00d6:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:542>
|
|
__this->___m_HasWrapped = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:543>
|
|
int32_t L_36 = V_3;
|
|
__this->___m_EventCount = ((int64_t)L_36);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:544>
|
|
int32_t L_37 = V_4;
|
|
__this->___m_EventSizeInBytes = ((int64_t)L_37);
|
|
goto IL_0102;
|
|
}
|
|
|
|
IL_00f0:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:549>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:550>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:551>
|
|
uint8_t* L_38 = V_0;
|
|
uint8_t* L_39;
|
|
L_39 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
|
|
int64_t L_40 = __this->___m_EventSizeInBytes;
|
|
UnsafeUtility_MemCpy_m5CEA91ACDADC522E584AE3A2AB2B0B74393A9177((void*)L_38, (void*)L_39, L_40, NULL);
|
|
}
|
|
|
|
IL_0102:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:555>
|
|
uint8_t* L_41;
|
|
L_41 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
if ((((intptr_t)L_41) == ((intptr_t)((uintptr_t)0))))
|
|
{
|
|
goto IL_0118;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:556>
|
|
uint8_t* L_42;
|
|
L_42 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
UnsafeUtility_Free_mFF99F4F02FE7F735AB30D8987D6953E55A2B23E1((void*)L_42, 4, NULL);
|
|
}
|
|
|
|
IL_0118:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:558>
|
|
int64_t L_43 = ___0_newBufferSize;
|
|
__this->___m_EventBufferSize = L_43;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:559>
|
|
uint8_t* L_44 = V_0;
|
|
InputEventTrace_set_m_EventBuffer_m9E277FFE218D8DB8738E10166B8685AAEBF20A56(__this, L_44, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:560>
|
|
uint8_t* L_45 = V_0;
|
|
InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156(__this, L_45, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:561>
|
|
uint8_t* L_46;
|
|
L_46 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
int64_t L_47 = __this->___m_EventSizeInBytes;
|
|
InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B(__this, ((uint8_t*)il2cpp_codegen_add((intptr_t)L_46, ((intptr_t)L_47))), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:562>
|
|
int64_t L_48 = ___1_newMaxBufferSize;
|
|
__this->___m_MaxEventBufferSize = L_48;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:564>
|
|
int32_t L_49 = __this->___m_ChangeCounter;
|
|
__this->___m_ChangeCounter = ((int32_t)il2cpp_codegen_add(L_49, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:566>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25678
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Clear_mA0F23B4A934720A074AF146EDC4B1758BE341ED2 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:574>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(uint8_t*));
|
|
uint8_t* L_0 = V_0;
|
|
InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B(__this, L_0, NULL);
|
|
uint8_t* L_1 = V_0;
|
|
InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156(__this, L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:575>
|
|
__this->___m_EventCount = ((int64_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:576>
|
|
__this->___m_EventSizeInBytes = ((int64_t)0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:577>
|
|
int32_t L_2 = __this->___m_ChangeCounter;
|
|
__this->___m_ChangeCounter = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:578>
|
|
__this->___m_DeviceInfos = (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DeviceInfos), (void*)(DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:579>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25679
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Enable_mF9369AEAFDEDC7C4ED2995DA4F385AF308506DD3 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:587>
|
|
bool L_0 = __this->___m_Enabled;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:588>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:590>
|
|
uint8_t* L_1;
|
|
L_1 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
if ((!(((uintptr_t)L_1) == ((uintptr_t)((uintptr_t)0)))))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:591>
|
|
InputEventTrace_Allocate_mDF187B47860B3630C655626FC6745DA0CC927E9D(__this, NULL);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:593>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_2;
|
|
L_2 = InputSystem_get_onEvent_mADCC1DBC03BC468ABF3AF7FB9BF2A0D9E1740510(NULL);
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_3 = (Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA*)il2cpp_codegen_object_new(Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
|
|
Action_2__ctor_m43B5BA62418FAB32773B12CEFF46A46855BF5B10(L_3, __this, (intptr_t)((void*)InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8_RuntimeMethod_var), NULL);
|
|
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_4;
|
|
L_4 = InputEventListener_op_Addition_mE4193B2988A4BA5E50D618112E188CEFAB5B6AFC(L_2, L_3, NULL);
|
|
InputSystem_set_onEvent_m8FD1599425D2F0408F6001E4D1663D53105D7F21(L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:594>
|
|
bool L_5 = __this->___m_RecordFrameMarkers;
|
|
if (!L_5)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:595>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_6 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_6, __this, (intptr_t)((void*)InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_add_onBeforeUpdate_m022480417EA69F0488F81F112B2D9BED5D65AC5C(L_6, NULL);
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:597>
|
|
__this->___m_Enabled = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:598>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25680
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Disable_m58CF35DBD23C6091AEE498C2DFC14E40D51BA8D9 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:606>
|
|
bool L_0 = __this->___m_Enabled;
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:607>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:609>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_1;
|
|
L_1 = InputSystem_get_onEvent_mADCC1DBC03BC468ABF3AF7FB9BF2A0D9E1740510(NULL);
|
|
Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA* L_2 = (Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA*)il2cpp_codegen_object_new(Action_2_t4943DD8C32CAB983950535CEF3BABA85DF8C9AAA_il2cpp_TypeInfo_var);
|
|
Action_2__ctor_m43B5BA62418FAB32773B12CEFF46A46855BF5B10(L_2, __this, (intptr_t)((void*)InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8_RuntimeMethod_var), NULL);
|
|
InputEventListener_tB0B541BC249BB696401201CF9DCAB4DFA1462B1D L_3;
|
|
L_3 = InputEventListener_op_Subtraction_m1F22563B9F83525FF3046236D787006F931913FA(L_1, L_2, NULL);
|
|
InputSystem_set_onEvent_m8FD1599425D2F0408F6001E4D1663D53105D7F21(L_3, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:610>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_4 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_4, __this, (intptr_t)((void*)InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83_RuntimeMethod_var), NULL);
|
|
InputSystem_remove_onBeforeUpdate_m4BD541DC1AB9FC6C87FB71B35A39CC75223E530C(L_4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:612>
|
|
__this->___m_Enabled = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:613>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25681
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputEventTrace_GetNextEvent_mDF7ED13DD6F42BA87EDE532CAB99BB697C8B108A (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* ___0_current, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
uint8_t* V_1 = NULL;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:644>
|
|
uint8_t* L_0;
|
|
L_0 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0)))))
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:645>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:649>
|
|
uint8_t* L_1;
|
|
L_1 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
|
|
if ((!(((uintptr_t)L_1) == ((uintptr_t)((uintptr_t)0)))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:650>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:653>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_2 = ___0_current;
|
|
bool L_3;
|
|
L_3 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012(L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:655>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_4 = ___0_current;
|
|
uint8_t* L_5;
|
|
L_5 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline((&L_6), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_5, NULL);
|
|
*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)L_4 = L_6;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:656>
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:661>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_7 = ___0_current;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_8;
|
|
L_8 = InputEventPtr_Next_m401E057F7E6DAB9468F04D705173539E8876809D(L_7, NULL);
|
|
V_2 = L_8;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_9;
|
|
L_9 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&V_2), NULL);
|
|
V_0 = (uint8_t*)L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:662>
|
|
uint8_t* L_10;
|
|
L_10 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
int64_t L_11 = __this->___m_EventBufferSize;
|
|
V_1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, ((intptr_t)L_11)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:665>
|
|
uint8_t* L_12 = V_0;
|
|
uint8_t* L_13;
|
|
L_13 = InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF(__this, NULL);
|
|
if ((!(((uintptr_t)L_12) == ((uintptr_t)L_13))))
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:666>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:672>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:673>
|
|
uint8_t* L_14 = V_1;
|
|
uint8_t* L_15 = V_0;
|
|
if ((((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_14, (intptr_t)L_15))/1)))) < ((int64_t)((int64_t)((int32_t)20)))))
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_16 = V_0;
|
|
uint32_t L_17;
|
|
L_17 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_16, NULL);
|
|
if (L_17)
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:675>
|
|
uint8_t* L_18;
|
|
L_18 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
V_0 = L_18;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:676>
|
|
uint8_t* L_19 = V_0;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_20 = ___0_current;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_21;
|
|
L_21 = InputEventPtr_ToPointer_m2DE1A988A02CC6E632A5262095B719513F166CA6(L_20, NULL);
|
|
if ((!(((uintptr_t)L_19) == ((uintptr_t)L_21))))
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:677>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:681>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_22 = ___0_current;
|
|
uint8_t* L_23 = V_0;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_24;
|
|
memset((&L_24), 0, sizeof(L_24));
|
|
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline((&L_24), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_23, NULL);
|
|
*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)L_22 = L_24;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:682>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25682
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventTrace_GetEnumerator_mEB8437D4B14D194CBA901FB9DD034AB0BD1015E3 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:687>
|
|
Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* L_0 = (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75*)il2cpp_codegen_object_new(Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75_il2cpp_TypeInfo_var);
|
|
Enumerator__ctor_m4F5637FFD01430441D557749B2443A43E2E52575(L_0, __this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25683
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputEventTrace_System_Collections_IEnumerable_GetEnumerator_m35DFC81CECF28C55A9C7674E80AE9C2C4CFF02BD (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:692>
|
|
RuntimeObject* L_0;
|
|
L_0 = InputEventTrace_GetEnumerator_mEB8437D4B14D194CBA901FB9DD034AB0BD1015E3(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25684
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Dispose_m863313DA63405B01E2654F5B69ADAF01D8D6805F (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:705>
|
|
InputEventTrace_Disable_m58CF35DBD23C6091AEE498C2DFC14E40D51BA8D9(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:706>
|
|
InputEventTrace_Release_m07D09F2199EA12E1DA722C54B84C4E1398081D01(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:707>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25685
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:739>
|
|
uint64_t L_0 = __this->___m_EventBufferStorage;
|
|
return (uint8_t*)(((uintptr_t)L_0));
|
|
}
|
|
}
|
|
// Method Definition Index: 25686
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBuffer_m9E277FFE218D8DB8738E10166B8685AAEBF20A56 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, uint8_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:740>
|
|
uint8_t* L_0 = ___0_value;
|
|
__this->___m_EventBufferStorage = ((int64_t)(uint64_t)((uintptr_t)(intptr_t)L_0));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25687
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:745>
|
|
uint64_t L_0 = __this->___m_EventBufferHeadStorage;
|
|
return (uint8_t*)(((uintptr_t)L_0));
|
|
}
|
|
}
|
|
// Method Definition Index: 25688
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, uint8_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:746>
|
|
uint8_t* L_0 = ___0_value;
|
|
__this->___m_EventBufferHeadStorage = ((int64_t)(uint64_t)((uintptr_t)(intptr_t)L_0));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25689
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:751>
|
|
uint64_t L_0 = __this->___m_EventBufferTailStorage;
|
|
return (uint8_t*)(((uintptr_t)L_0));
|
|
}
|
|
}
|
|
// Method Definition Index: 25690
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, uint8_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:752>
|
|
uint8_t* L_0 = ___0_value;
|
|
__this->___m_EventBufferTailStorage = ((int64_t)(uint64_t)((uintptr_t)(intptr_t)L_0));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25691
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Allocate_mDF187B47860B3630C655626FC6745DA0CC927E9D (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:757>
|
|
int64_t L_0 = __this->___m_EventBufferSize;
|
|
void* L_1;
|
|
L_1 = UnsafeUtility_Malloc_mD7BD28D5AE7E4901B225B7DFFE2B568EE7BDC0C9(L_0, 4, 4, NULL);
|
|
InputEventTrace_set_m_EventBuffer_m9E277FFE218D8DB8738E10166B8685AAEBF20A56(__this, (uint8_t*)L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:758>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25692
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_Release_m07D09F2199EA12E1DA722C54B84C4E1398081D01 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:762>
|
|
InputEventTrace_Clear_mA0F23B4A934720A074AF146EDC4B1758BE341ED2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:764>
|
|
uint8_t* L_0;
|
|
L_0 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
if ((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0))))
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:766>
|
|
uint8_t* L_1;
|
|
L_1 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
UnsafeUtility_Free_mFF99F4F02FE7F735AB30D8987D6953E55A2B23E1((void*)L_1, 4, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:767>
|
|
InputEventTrace_set_m_EventBuffer_m9E277FFE218D8DB8738E10166B8685AAEBF20A56(__this, (uint8_t*)((uintptr_t)0), NULL);
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:769>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25693
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_OnBeforeUpdate_m5C7650BB886DCFFADEB5E267D1E016A4E782DF83 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnsafeUtility_SizeOf_TisInputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5_m0A49629FF4362F75BF20F043E1BA1E7D050C76F9_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:775>
|
|
bool L_0 = __this->___m_RecordFrameMarkers;
|
|
if (!L_0)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:780>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:781>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:782>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:783>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:784>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:785>
|
|
il2cpp_codegen_initobj((&V_1), sizeof(InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5));
|
|
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1;
|
|
L_1 = InputEventTrace_get_FrameMarkerEvent_m491AB38CDCEED20E74D4717FB782716649FB16FC(NULL);
|
|
InputEvent_set_type_mA12F3F32108A0B88A4EE7BCA8AE7F2972F8E9740((&V_1), L_1, NULL);
|
|
RuntimeObject* L_2 = ((InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var))->___s_Instance;
|
|
NullCheck(L_2);
|
|
double L_3;
|
|
L_3 = InterfaceFuncInvoker0< double >::Invoke(19, IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var, L_2);
|
|
InputEvent_set_internalTime_m914C4E1111E2A886D56B9D0A888ECE911F894980((&V_1), L_3, NULL);
|
|
int32_t L_4;
|
|
L_4 = UnsafeUtility_SizeOf_TisInputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5_m0A49629FF4362F75BF20F043E1BA1E7D050C76F9_inline(UnsafeUtility_SizeOf_TisInputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5_m0A49629FF4362F75BF20F043E1BA1E7D050C76F9_RuntimeMethod_var);
|
|
InputEvent_set_sizeInBytes_m0F44793DDA0884B427B82447CE1106FC4E6F691C((&V_1), L_4, NULL);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_5 = V_1;
|
|
V_0 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:787>
|
|
void* L_6;
|
|
L_6 = il2cpp_codegen_unsafe_cast((&V_0));
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_7;
|
|
memset((&L_7), 0, sizeof(L_7));
|
|
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline((&L_7), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_6, NULL);
|
|
InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8(__this, L_7, (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B*)NULL, NULL);
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:789>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25694
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace_OnInputEvent_m119567393F344B8F53888E8564191B1280414AC8 (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_inputEvent, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___1_device, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayHelpers_Append_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m12D0540A13D944AB6449C772B158A7FF8E39A538_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackArray_1_get_length_m096E657BAB53406356BABE16CE03C92212CF5A52_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m9DEBF1BF04DA506E770B06B906F6ED856417BC9A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6CD29DF87BDE4FB4030DE06320C56337EE9127EF);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint32_t V_0 = 0;
|
|
uint8_t* V_1 = NULL;
|
|
bool V_2 = false;
|
|
uint8_t* V_3 = NULL;
|
|
int64_t V_4 = 0;
|
|
int64_t V_5 = 0;
|
|
int64_t V_6 = 0;
|
|
uint8_t* V_7 = NULL;
|
|
uint8_t* V_8 = NULL;
|
|
uint32_t V_9 = 0;
|
|
bool V_10 = false;
|
|
int32_t V_11 = 0;
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t G_B18_0 = 0;
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* G_B49_0 = NULL;
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A** G_B49_1 = NULL;
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* G_B48_0 = NULL;
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A** G_B48_1 = NULL;
|
|
String_t* G_B50_0 = NULL;
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* G_B50_1 = NULL;
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A** G_B50_2 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:794>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_handled_m6981E3A01858EB383B2420DA720DE82BF7A8ADFF((&___0_inputEvent), NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:795>
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:798>
|
|
int32_t L_1 = __this->___m_DeviceId;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = InputEventPtr_get_deviceId_mD8B68EDC37D90A69EE67A47B3E17F4D80D4620D3((&___0_inputEvent), NULL);
|
|
int32_t L_3 = __this->___m_DeviceId;
|
|
if ((((int32_t)L_2) == ((int32_t)L_3)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_4;
|
|
L_4 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69((&___0_inputEvent), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_5;
|
|
L_5 = InputEventTrace_get_FrameMarkerEvent_m491AB38CDCEED20E74D4717FB782716649FB16FC(NULL);
|
|
bool L_6;
|
|
L_6 = FourCC_op_Inequality_m8E764B9EF56D488E40480A3E69230EF623C7B92B_inline(L_4, L_5, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:799>
|
|
return;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:802>
|
|
Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* L_7 = __this->___m_OnFilterEvent;
|
|
if (!L_7)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
Func_3_t909DE6B45C7207C868E7F32B3EB0D3BAD2365CB0* L_8 = __this->___m_OnFilterEvent;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_9 = ___0_inputEvent;
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_10 = ___1_device;
|
|
NullCheck(L_8);
|
|
bool L_11;
|
|
L_11 = Func_3_Invoke_mF26F7E74E56162E7527FB17F4A83729B04772C55_inline(L_8, L_9, L_10, NULL);
|
|
if (L_11)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:803>
|
|
return;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:806>
|
|
uint8_t* L_12;
|
|
L_12 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
if ((!(((uintptr_t)L_12) == ((uintptr_t)((uintptr_t)0)))))
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:807>
|
|
return;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:809>
|
|
uint32_t L_13;
|
|
L_13 = InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597((&___0_inputEvent), NULL);
|
|
uint32_t L_14;
|
|
L_14 = NumberHelpers_AlignToMultipleOf_m44B66C972BC1F508B9022564F265D1AA6A001AAE_inline(L_13, 4, NULL);
|
|
V_0 = L_14;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:812>
|
|
uint32_t L_15 = V_0;
|
|
int64_t L_16 = __this->___m_MaxEventBufferSize;
|
|
if ((((int64_t)((int64_t)(uint64_t)((uint32_t)L_15))) <= ((int64_t)L_16)))
|
|
{
|
|
goto IL_0071;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:813>
|
|
return;
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:817>
|
|
uint8_t* L_17;
|
|
L_17 = InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF(__this, NULL);
|
|
if ((!(((uintptr_t)L_17) == ((uintptr_t)((uintptr_t)0)))))
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:820>
|
|
uint8_t* L_18;
|
|
L_18 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156(__this, L_18, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:821>
|
|
uint8_t* L_19;
|
|
L_19 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B(__this, L_19, NULL);
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:824>
|
|
uint8_t* L_20;
|
|
L_20 = InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF(__this, NULL);
|
|
uint32_t L_21 = V_0;
|
|
V_1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_20, (intptr_t)((uintptr_t)L_21)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:825>
|
|
uint8_t* L_22 = V_1;
|
|
uint8_t* L_23;
|
|
L_23 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
|
|
if ((!(((uintptr_t)L_22) > ((uintptr_t)L_23))))
|
|
{
|
|
goto IL_00b9;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_24;
|
|
L_24 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
|
|
uint8_t* L_25;
|
|
L_25 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
G_B18_0 = ((((int32_t)((((intptr_t)L_24) == ((intptr_t)L_25))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00ba;
|
|
}
|
|
|
|
IL_00b9:
|
|
{
|
|
G_B18_0 = 0;
|
|
}
|
|
|
|
IL_00ba:
|
|
{
|
|
V_2 = (bool)G_B18_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:828>
|
|
uint8_t* L_26 = V_1;
|
|
uint8_t* L_27;
|
|
L_27 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
int64_t L_28 = __this->___m_EventBufferSize;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:829>
|
|
if (!((!(((uintptr_t)L_26) <= ((uintptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_27, ((intptr_t)L_28))))))? 1 : 0))
|
|
{
|
|
goto IL_019f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:832>
|
|
int64_t L_29 = __this->___m_EventBufferSize;
|
|
int64_t L_30 = __this->___m_MaxEventBufferSize;
|
|
if ((((int64_t)L_29) >= ((int64_t)L_30)))
|
|
{
|
|
goto IL_0135;
|
|
}
|
|
}
|
|
{
|
|
bool L_31 = __this->___m_HasWrapped;
|
|
if (L_31)
|
|
{
|
|
goto IL_0135;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:834>
|
|
int64_t L_32 = __this->___m_GrowIncrementSize;
|
|
uint32_t L_33 = V_0;
|
|
uint32_t L_34;
|
|
L_34 = NumberHelpers_AlignToMultipleOf_m44B66C972BC1F508B9022564F265D1AA6A001AAE_inline(L_33, 4, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int64_t L_35;
|
|
L_35 = Math_Max_mD37411571F0547F04F280D5A8D1F044819AFA597(L_32, ((int64_t)(uint64_t)((uint32_t)L_34)), NULL);
|
|
V_5 = L_35;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:835>
|
|
int64_t L_36 = __this->___m_EventBufferSize;
|
|
int64_t L_37 = V_5;
|
|
V_6 = ((int64_t)il2cpp_codegen_add(L_36, L_37));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:836>
|
|
int64_t L_38 = V_6;
|
|
int64_t L_39 = __this->___m_MaxEventBufferSize;
|
|
if ((((int64_t)L_38) <= ((int64_t)L_39)))
|
|
{
|
|
goto IL_0119;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:837>
|
|
int64_t L_40 = __this->___m_MaxEventBufferSize;
|
|
V_6 = L_40;
|
|
}
|
|
|
|
IL_0119:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:839>
|
|
int64_t L_41 = V_6;
|
|
uint32_t L_42 = V_0;
|
|
if ((((int64_t)L_41) >= ((int64_t)((int64_t)(uint64_t)((uint32_t)L_42)))))
|
|
{
|
|
goto IL_0120;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:842>
|
|
return;
|
|
}
|
|
|
|
IL_0120:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:845>
|
|
int64_t L_43 = V_6;
|
|
bool L_44;
|
|
L_44 = InputEventTrace_Resize_m257080DC43F8E24AD91F423FB340139965B1C190(__this, L_43, ((int64_t)(-1)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:847>
|
|
uint8_t* L_45;
|
|
L_45 = InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF(__this, NULL);
|
|
uint32_t L_46 = V_0;
|
|
V_1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_45, (intptr_t)((uintptr_t)L_46)));
|
|
}
|
|
|
|
IL_0135:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:851>
|
|
int64_t L_47 = __this->___m_EventBufferSize;
|
|
uint8_t* L_48;
|
|
L_48 = InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF(__this, NULL);
|
|
uint8_t* L_49;
|
|
L_49 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
V_4 = ((int64_t)il2cpp_codegen_subtract(L_47, ((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_48, (intptr_t)L_49))/1)))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:852>
|
|
int64_t L_50 = V_4;
|
|
uint32_t L_51 = V_0;
|
|
if ((((int64_t)L_50) >= ((int64_t)((int64_t)(uint64_t)((uint32_t)L_51)))))
|
|
{
|
|
goto IL_019f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:855>
|
|
__this->___m_HasWrapped = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:859>
|
|
int64_t L_52 = V_4;
|
|
if ((((int64_t)L_52) < ((int64_t)((int64_t)((int32_t)20)))))
|
|
{
|
|
goto IL_0170;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:860>
|
|
uint8_t* L_53;
|
|
L_53 = InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF(__this, NULL);
|
|
UnsafeUtility_MemClear_m6C4377117084A11A667A567BC2F5E606A632A7C1((void*)L_53, ((int64_t)((int32_t)20)), NULL);
|
|
}
|
|
|
|
IL_0170:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:862>
|
|
uint8_t* L_54;
|
|
L_54 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B(__this, L_54, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:863>
|
|
uint8_t* L_55;
|
|
L_55 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
uint32_t L_56 = V_0;
|
|
V_1 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_55, (intptr_t)((uintptr_t)L_56)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:867>
|
|
bool L_57 = V_2;
|
|
if (!L_57)
|
|
{
|
|
goto IL_0195;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:868>
|
|
uint8_t* L_58;
|
|
L_58 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156(__this, L_58, NULL);
|
|
}
|
|
|
|
IL_0195:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:871>
|
|
uint8_t* L_59 = V_1;
|
|
uint8_t* L_60;
|
|
L_60 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
|
|
V_2 = (bool)((!(((uintptr_t)L_59) <= ((uintptr_t)L_60)))? 1 : 0);
|
|
}
|
|
|
|
IL_019f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:877>
|
|
bool L_61 = V_2;
|
|
if (!L_61)
|
|
{
|
|
goto IL_0215;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:879>
|
|
uint8_t* L_62;
|
|
L_62 = InputEventTrace_get_m_EventBufferHead_m88F6EDC94DB00CF2675D70A37A4A00CCD6BACD75(__this, NULL);
|
|
V_7 = L_62;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:880>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:881>
|
|
uint8_t* L_63;
|
|
L_63 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
int64_t L_64 = __this->___m_EventBufferSize;
|
|
V_8 = ((uint8_t*)il2cpp_codegen_subtract((intptr_t)((uint8_t*)il2cpp_codegen_add((intptr_t)L_63, ((intptr_t)L_64))), ((int32_t)20)));
|
|
goto IL_0208;
|
|
}
|
|
|
|
IL_01bf:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:885>
|
|
uint8_t* L_65 = V_7;
|
|
uint32_t L_66;
|
|
L_66 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_65, NULL);
|
|
V_9 = L_66;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:886>
|
|
uint8_t* L_67 = V_7;
|
|
uint32_t L_68 = V_9;
|
|
V_7 = ((uint8_t*)il2cpp_codegen_add((intptr_t)L_67, (intptr_t)((uintptr_t)L_68)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:887>
|
|
int64_t L_69 = __this->___m_EventCount;
|
|
__this->___m_EventCount = ((int64_t)il2cpp_codegen_subtract(L_69, ((int64_t)1)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:888>
|
|
int64_t L_70 = __this->___m_EventSizeInBytes;
|
|
uint32_t L_71 = V_9;
|
|
__this->___m_EventSizeInBytes = ((int64_t)il2cpp_codegen_subtract(L_70, ((int64_t)(uint64_t)((uint32_t)L_71))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:889>
|
|
uint8_t* L_72 = V_7;
|
|
uint8_t* L_73 = V_8;
|
|
if ((!(((uintptr_t)L_72) <= ((uintptr_t)L_73))))
|
|
{
|
|
goto IL_01fe;
|
|
}
|
|
}
|
|
{
|
|
uint8_t* L_74 = V_7;
|
|
uint32_t L_75;
|
|
L_75 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307((InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_74, NULL);
|
|
if (L_75)
|
|
{
|
|
goto IL_0208;
|
|
}
|
|
}
|
|
|
|
IL_01fe:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:891>
|
|
uint8_t* L_76;
|
|
L_76 = InputEventTrace_get_m_EventBuffer_mE0A429C0F9F57F7EF20002FB6DB132137739311B(__this, NULL);
|
|
V_7 = L_76;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:892>
|
|
goto IL_020d;
|
|
}
|
|
|
|
IL_0208:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:883>
|
|
uint8_t* L_77 = V_7;
|
|
uint8_t* L_78 = V_1;
|
|
if ((!(((uintptr_t)L_77) >= ((uintptr_t)L_78))))
|
|
{
|
|
goto IL_01bf;
|
|
}
|
|
}
|
|
|
|
IL_020d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:896>
|
|
uint8_t* L_79 = V_7;
|
|
InputEventTrace_set_m_EventBufferHead_m1D7E13093AAC343D59DC33FF9EE2656399156156(__this, L_79, NULL);
|
|
}
|
|
|
|
IL_0215:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:899>
|
|
uint8_t* L_80;
|
|
L_80 = InputEventTrace_get_m_EventBufferTail_m593729CFB6F66C1D30117FDF1478C7428BD761EF(__this, NULL);
|
|
V_3 = L_80;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:900>
|
|
uint8_t* L_81 = V_1;
|
|
InputEventTrace_set_m_EventBufferTail_mB66F5AF649362018180B0DC73A2B7B9DE24E4C7B(__this, L_81, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:903>
|
|
uint8_t* L_82 = V_3;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_83;
|
|
L_83 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&___0_inputEvent), NULL);
|
|
uint32_t L_84;
|
|
L_84 = InputEventPtr_get_sizeInBytes_mE060F5A7176AAF8ED749DB4A3DC7976249716597((&___0_inputEvent), NULL);
|
|
UnsafeUtility_MemCpy_m5CEA91ACDADC522E584AE3A2AB2B0B74393A9177((void*)L_82, (void*)L_83, ((int64_t)(uint64_t)((uint32_t)L_84)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:904>
|
|
int32_t L_85 = __this->___m_ChangeCounter;
|
|
__this->___m_ChangeCounter = ((int32_t)il2cpp_codegen_add(L_85, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:905>
|
|
int64_t L_86 = __this->___m_EventCount;
|
|
__this->___m_EventCount = ((int64_t)il2cpp_codegen_add(L_86, ((int64_t)1)));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:906>
|
|
int64_t L_87 = __this->___m_EventSizeInBytes;
|
|
uint32_t L_88 = V_0;
|
|
__this->___m_EventSizeInBytes = ((int64_t)il2cpp_codegen_add(L_87, ((int64_t)(uint64_t)((uint32_t)L_88))));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:909>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_89 = ___1_device;
|
|
if (!L_89)
|
|
{
|
|
goto IL_033a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:911>
|
|
V_10 = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:912>
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_90 = __this->___m_DeviceInfos;
|
|
if (!L_90)
|
|
{
|
|
goto IL_02ab;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:913>
|
|
V_11 = 0;
|
|
goto IL_029f;
|
|
}
|
|
|
|
IL_027a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:914>
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_91 = __this->___m_DeviceInfos;
|
|
int32_t L_92 = V_11;
|
|
NullCheck(L_91);
|
|
int32_t L_93;
|
|
L_93 = DeviceInfo_get_deviceId_m1F56DCC1850CA1B775C357DA6D521F04EA74F0C6_inline(((L_91)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_92))), NULL);
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_94 = ___1_device;
|
|
NullCheck(L_94);
|
|
int32_t L_95;
|
|
L_95 = InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline(L_94, NULL);
|
|
if ((!(((uint32_t)L_93) == ((uint32_t)L_95))))
|
|
{
|
|
goto IL_0299;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:916>
|
|
V_10 = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:917>
|
|
goto IL_02ab;
|
|
}
|
|
|
|
IL_0299:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:913>
|
|
int32_t L_96 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add(L_96, 1));
|
|
}
|
|
|
|
IL_029f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:913>
|
|
int32_t L_97 = V_11;
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A* L_98 = __this->___m_DeviceInfos;
|
|
NullCheck(L_98);
|
|
if ((((int32_t)L_97) < ((int32_t)((int32_t)(((RuntimeArray*)L_98)->max_length)))))
|
|
{
|
|
goto IL_027a;
|
|
}
|
|
}
|
|
|
|
IL_02ab:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:919>
|
|
bool L_99 = V_10;
|
|
if (L_99)
|
|
{
|
|
goto IL_033a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:920>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:921>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:922>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:923>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:924>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:925>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:926>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:927>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:928>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:929>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:930>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:931>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:932>
|
|
DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A** L_100 = (DeviceInfoU5BU5D_t83A513EC4EB7BD3AA21A9352117520BC63C34E1A**)(&__this->___m_DeviceInfos);
|
|
il2cpp_codegen_initobj((&V_12), sizeof(DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52));
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_101 = ___1_device;
|
|
NullCheck(L_101);
|
|
int32_t L_102;
|
|
L_102 = InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline(L_101, NULL);
|
|
(&V_12)->___m_DeviceId = L_102;
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_103 = ___1_device;
|
|
NullCheck(L_103);
|
|
String_t* L_104;
|
|
L_104 = InputControl_get_layout_mE6054F87BB94A1F1D06355E137A1840B2EFF7971(L_103, NULL);
|
|
(&V_12)->___m_Layout = L_104;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_12)->___m_Layout), (void*)L_104);
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_105 = ___1_device;
|
|
NullCheck(L_105);
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 L_106;
|
|
L_106 = InputControl_get_stateBlock_mCAE31879EDC6621B35B368B4916219D30EAA0B0B_inline(L_105, NULL);
|
|
V_13 = L_106;
|
|
il2cpp_codegen_runtime_class_init_inline(InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5_il2cpp_TypeInfo_var);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_107;
|
|
L_107 = InputStateBlock_get_format_mA393354EDC4A58DDCBE0990902A49E0A22F15F86_inline((&V_13), NULL);
|
|
(&V_12)->___m_StateFormat = L_107;
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_108 = ___1_device;
|
|
NullCheck(L_108);
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 L_109;
|
|
L_109 = InputControl_get_stateBlock_mCAE31879EDC6621B35B368B4916219D30EAA0B0B_inline(L_108, NULL);
|
|
V_13 = L_109;
|
|
uint32_t L_110;
|
|
L_110 = InputStateBlock_get_alignedSizeInBytes_mF360E8CFBEE9BE05FC7DFA3533E069A5A96827F5((&V_13), NULL);
|
|
(&V_12)->___m_StateSizeInBytes = L_110;
|
|
il2cpp_codegen_runtime_class_init_inline(InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_il2cpp_TypeInfo_var);
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_111 = ___1_device;
|
|
NullCheck(L_111);
|
|
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 L_112 = ((InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E*)L_111)->___m_Layout;
|
|
bool L_113;
|
|
L_113 = Collection_IsGeneratedLayout_mAD9527FC1D6FA3C9075ACAF2F0215E3B5C0C359C((&((InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_StaticFields*)il2cpp_codegen_static_fields_for(InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_il2cpp_TypeInfo_var))->___s_Layouts), L_112, NULL);
|
|
if (L_113)
|
|
{
|
|
G_B49_0 = (&V_12);
|
|
G_B49_1 = L_100;
|
|
goto IL_031d;
|
|
}
|
|
G_B48_0 = (&V_12);
|
|
G_B48_1 = L_100;
|
|
}
|
|
{
|
|
G_B50_0 = ((String_t*)(NULL));
|
|
G_B50_1 = G_B48_0;
|
|
G_B50_2 = G_B48_1;
|
|
goto IL_032d;
|
|
}
|
|
|
|
IL_031d:
|
|
{
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_114 = ___1_device;
|
|
NullCheck(L_114);
|
|
String_t* L_115;
|
|
L_115 = InputControl_get_layout_mE6054F87BB94A1F1D06355E137A1840B2EFF7971(L_114, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D* L_116;
|
|
L_116 = InputSystem_LoadLayout_m51D956618DED057AED89ACBC4068B49BC8764189(L_115, NULL);
|
|
NullCheck(L_116);
|
|
String_t* L_117;
|
|
L_117 = InputControlLayout_ToJson_mC3A56BD729D0884D80D6215145CBB99BBB3AE358(L_116, NULL);
|
|
G_B50_0 = L_117;
|
|
G_B50_1 = G_B49_0;
|
|
G_B50_2 = G_B49_1;
|
|
}
|
|
|
|
IL_032d:
|
|
{
|
|
G_B50_1->___m_FullLayoutJson = G_B50_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&G_B50_1->___m_FullLayoutJson), (void*)G_B50_0);
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 L_118 = V_12;
|
|
int32_t L_119;
|
|
L_119 = ArrayHelpers_Append_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m12D0540A13D944AB6449C772B158A7FF8E39A538(G_B50_2, L_118, ArrayHelpers_Append_TisDeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_m12D0540A13D944AB6449C772B158A7FF8E39A538_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_033a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:936>
|
|
CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* L_120 = (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*)(&__this->___m_EventListeners);
|
|
int32_t L_121;
|
|
L_121 = CallbackArray_1_get_length_m096E657BAB53406356BABE16CE03C92212CF5A52(L_120, CallbackArray_1_get_length_m096E657BAB53406356BABE16CE03C92212CF5A52_RuntimeMethod_var);
|
|
if ((((int32_t)L_121) <= ((int32_t)0)))
|
|
{
|
|
goto IL_035f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:937>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:938>
|
|
CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477* L_122 = (CallbackArray_1_tAD4A1ECAC1FC4436A788BF59DBD4892BE2D26477*)(&__this->___m_EventListeners);
|
|
uint8_t* L_123 = V_3;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_124;
|
|
memset((&L_124), 0, sizeof(L_124));
|
|
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline((&L_124), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)L_123, NULL);
|
|
DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m9DEBF1BF04DA506E770B06B906F6ED856417BC9A(L_122, L_124, _stringLiteral6CD29DF87BDE4FB4030DE06320C56337EE9127EF, NULL, DelegateHelpers_InvokeCallbacksSafe_TisInputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_m9DEBF1BF04DA506E770B06B906F6ED856417BC9A_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_035f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:941>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25695
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputEventTrace_get_kFileFormat_m1ECD7EAD5F4E9E247214316891DE8D4DBA07A40D (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:981>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
FourCC__ctor_mFE3A3F80C6900CD18CB9BDD3C9B604823F2E791F((&L_0), ((int32_t)73), ((int32_t)69), ((int32_t)86), ((int32_t)84), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25696
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputEventTrace__cctor_m028F937D06711C841E6F940EFCCD32DB02FC9FB6 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF33AEA4F74EB3F443686A5ABBEB28AFF89059C6F);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:30>
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_0), _stringLiteralF33AEA4F74EB3F443686A5ABBEB28AFF89059C6F, NULL);
|
|
((InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_StaticFields*)il2cpp_codegen_static_fields_for(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var))->___k_InputEvenTraceMarker = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:982>
|
|
((InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_StaticFields*)il2cpp_codegen_static_fields_for(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var))->___kFileVersion = 1;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25697
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m4F5637FFD01430441D557749B2443A43E2E52575 (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* __this, InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* ___0_trace, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:949>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:951>
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_0 = ___0_trace;
|
|
__this->___m_Trace = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Trace), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:952>
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_1 = ___0_trace;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___m_ChangeCounter;
|
|
__this->___m_ChangeCounter = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:953>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25698
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m385FC51CC8FD384DE531046778BB39C30B623B4F (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:957>
|
|
__this->___m_Trace = (InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Trace), (void*)(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:958>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_0 = (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)(&__this->___m_Current);
|
|
il2cpp_codegen_initobj(L_0, sizeof(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:959>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25699
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mBAEFD5A6376C9CFEE01B48D250572D491A8C6C24 (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:963>
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_0 = __this->___m_Trace;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:964>
|
|
String_t* L_1;
|
|
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(3, __this);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_2 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_2, L_1, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mBAEFD5A6376C9CFEE01B48D250572D491A8C6C24_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:965>
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_3 = __this->___m_Trace;
|
|
NullCheck(L_3);
|
|
int32_t L_4 = L_3->___m_ChangeCounter;
|
|
int32_t L_5 = __this->___m_ChangeCounter;
|
|
if ((((int32_t)L_4) == ((int32_t)L_5)))
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:966>
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_6 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral82D9A561A7A240949C795C99087C473D0967B043)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mBAEFD5A6376C9CFEE01B48D250572D491A8C6C24_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:968>
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_7 = __this->___m_Trace;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_8 = (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)(&__this->___m_Current);
|
|
NullCheck(L_7);
|
|
bool L_9;
|
|
L_9 = InputEventTrace_GetNextEvent_mDF7ED13DD6F42BA87EDE532CAB99BB697C8B108A(L_7, L_8, NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// Method Definition Index: 25700
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m46AEA042ECC7F28D364C0716655595E40642DA97 (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:973>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_0 = (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)(&__this->___m_Current);
|
|
il2cpp_codegen_initobj(L_0, sizeof(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:974>
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_1 = __this->___m_Trace;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___m_ChangeCounter;
|
|
__this->___m_ChangeCounter = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:975>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25701
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 Enumerator_get_Current_m3C388C6F62B1736308A7B1AAB5D1AE461B2D50CC (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:977>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_0 = __this->___m_Current;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25702
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_System_Collections_IEnumerator_get_Current_m5A9E9359FAC5B803483750D45AA3A021EC206376 (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:978>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_0;
|
|
L_0 = Enumerator_get_Current_m3C388C6F62B1736308A7B1AAB5D1AE461B2D50CC_inline(__this, NULL);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0_il2cpp_TypeInfo_var, &L_1);
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25703
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* ReplayController_get_trace_m302517610A782CCCBAF79F4AF6E7FCDA4A332EE7 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1026>
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_0 = __this->___m_EventTrace;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25704
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReplayController_get_finished_mBD93E7E39307728EB74B4677E6CDD43A4F029856 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1034>
|
|
bool L_0 = __this->___U3CfinishedU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25705
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReplayController_set_finished_m05C11A4E622954AFDACE0F7AB76E93EEECD6B6A2 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1034>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CfinishedU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25706
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReplayController_get_paused_mA3967138FEFDD72AE8823B2B2DACEBE6E5555F30 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1040>
|
|
bool L_0 = __this->___U3CpausedU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25707
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReplayController_set_paused_m1C90331162E8C5BDA8041F1CF98E045AFE661D1F (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1040>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CpausedU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25708
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReplayController_get_position_m39297BBE091E3E76FDD27B71AA7355148E908B88 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1046>
|
|
int32_t L_0 = __this->___U3CpositionU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25709
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReplayController_set_position_m4948A3C77785BCBBE721AC7C452C470A9C24C098 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1046>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpositionU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25710
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReplayController_get_createdDevices_m323215E6F2382A6E4C02936095FF14042579E78C (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1062>
|
|
InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C L_0 = __this->___m_CreatedDevices;
|
|
InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C_il2cpp_TypeInfo_var, &L_1);
|
|
return (RuntimeObject*)L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 25711
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReplayController__ctor_mFACECC15923550957D306EF31786A98FD37F1F03 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* ___0_trace, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1076>
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1078>
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_0 = ___0_trace;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1079>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD8332BDAEF71624DC1D56CDA64F0BAC2461AA9EF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReplayController__ctor_mFACECC15923550957D306EF31786A98FD37F1F03_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1081>
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_2 = ___0_trace;
|
|
__this->___m_EventTrace = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_EventTrace), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1082>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25712
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReplayController_Dispose_mFD934A373395714CBCAFDB0DB034B6728F61BA15 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tA6A2274AE31A9D0C4E245176DC4855437D643269_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_GetEnumerator_mF42E560968274088F43D58E20B67D7C313C7980B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReplayController_OnBeginFrame_m099944319B93E1E8A2B6264F50F31CF5434277EF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1089>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_0, __this, (intptr_t)((void*)ReplayController_OnBeginFrame_m099944319B93E1E8A2B6264F50F31CF5434277EF_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_remove_onBeforeUpdate_m4BD541DC1AB9FC6C87FB71B35A39CC75223E530C(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1090>
|
|
ReplayController_set_finished_m05C11A4E622954AFDACE0F7AB76E93EEECD6B6A2_inline(__this, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1092>
|
|
InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C* L_1 = (InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C*)(&__this->___m_CreatedDevices);
|
|
RuntimeObject* L_2;
|
|
L_2 = InlinedArray_1_GetEnumerator_mF42E560968274088F43D58E20B67D7C313C7980B(L_1, InlinedArray_1_GetEnumerator_mF42E560968274088F43D58E20B67D7C313C7980B_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003b:
|
|
{
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0031_1;
|
|
}
|
|
|
|
IL_0026_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1092>
|
|
RuntimeObject* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_6;
|
|
L_6 = InterfaceFuncInvoker0< InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* >::Invoke(0, IEnumerator_1_tA6A2274AE31A9D0C4E245176DC4855437D643269_il2cpp_TypeInfo_var, L_5);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1093>
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_RemoveDevice_mBA895DEE9FCFC53AC9040DE72860D95ABFB5E858(L_6, NULL);
|
|
}
|
|
|
|
IL_0031_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1092>
|
|
RuntimeObject* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
bool L_8;
|
|
L_8 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_7);
|
|
if (L_8)
|
|
{
|
|
goto IL_0026_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1094>
|
|
InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C* L_9 = (InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C*)(&__this->___m_CreatedDevices);
|
|
il2cpp_codegen_initobj(L_9, sizeof(InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1095>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25713
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* ReplayController_WithDeviceMappedFromTo_m031C51AFBE0637B093457927BA8D452F78B6F3D0 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_recordedDevice, InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___1_playbackDevice, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1111>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = ___0_recordedDevice;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1112>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0CF8CCC4707209C88733F45D2F50CAF236223A22)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReplayController_WithDeviceMappedFromTo_m031C51AFBE0637B093457927BA8D452F78B6F3D0_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1113>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_2 = ___1_playbackDevice;
|
|
if (L_2)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1114>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_3 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA699959862D8ADBB4A539849B791187B154DA724)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReplayController_WithDeviceMappedFromTo_m031C51AFBE0637B093457927BA8D452F78B6F3D0_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1116>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_4 = ___0_recordedDevice;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline(L_4, NULL);
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_6 = ___1_playbackDevice;
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline(L_6, NULL);
|
|
ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* L_8;
|
|
L_8 = ReplayController_WithDeviceMappedFromTo_m88AC8466C0CEAB26F9F502DF6A1B3853512F7090(__this, L_5, L_7, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1117>
|
|
return __this;
|
|
}
|
|
}
|
|
// Method Definition Index: 25714
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* ReplayController_WithDeviceMappedFromTo_m88AC8466C0CEAB26F9F502DF6A1B3853512F7090 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, int32_t ___0_recordedDeviceId, int32_t ___1_playbackDeviceId, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_AppendWithCapacity_mDB0D8ADCFF5D374E15017980D7073D63B8E8C48F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_RemoveAtWithCapacity_m4D058322BEC61FA58F04CE9A837A2E464759415E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_get_Item_m1C8BF2A41804F8D2B398B234FE3B1E940D36DFF1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_set_Item_m6A196904387C38864370BABA0CBACC0EEF6BB786_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2__ctor_m3C86D5D8BB0D1118068E83ED43D64F4E64E7C221_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_m5A886C4B3E54DEA04D456E49D7FB92A4545FCD8F_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1130>
|
|
V_0 = 0;
|
|
goto IL_0046;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1132>
|
|
InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43* L_0 = (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43*)(&__this->___m_DeviceIDMappings);
|
|
int32_t L_1 = V_0;
|
|
KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189 L_2;
|
|
L_2 = InlinedArray_1_get_Item_m1C8BF2A41804F8D2B398B234FE3B1E940D36DFF1(L_0, L_1, InlinedArray_1_get_Item_m1C8BF2A41804F8D2B398B234FE3B1E940D36DFF1_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
int32_t L_3;
|
|
L_3 = KeyValuePair_2_get_Key_m5A886C4B3E54DEA04D456E49D7FB92A4545FCD8F_inline((&V_1), KeyValuePair_2_get_Key_m5A886C4B3E54DEA04D456E49D7FB92A4545FCD8F_RuntimeMethod_var);
|
|
int32_t L_4 = ___0_recordedDeviceId;
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)L_4))))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1135>
|
|
int32_t L_5 = ___0_recordedDeviceId;
|
|
int32_t L_6 = ___1_playbackDeviceId;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)L_6))))
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1136>
|
|
InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43* L_7 = (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43*)(&__this->___m_DeviceIDMappings);
|
|
int32_t L_8 = V_0;
|
|
InlinedArray_1_RemoveAtWithCapacity_m4D058322BEC61FA58F04CE9A837A2E464759415E(L_7, L_8, InlinedArray_1_RemoveAtWithCapacity_m4D058322BEC61FA58F04CE9A837A2E464759415E_RuntimeMethod_var);
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1138>
|
|
InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43* L_9 = (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43*)(&__this->___m_DeviceIDMappings);
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = ___0_recordedDeviceId;
|
|
int32_t L_12 = ___1_playbackDeviceId;
|
|
KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189 L_13;
|
|
memset((&L_13), 0, sizeof(L_13));
|
|
KeyValuePair_2__ctor_m3C86D5D8BB0D1118068E83ED43D64F4E64E7C221((&L_13), L_11, L_12, KeyValuePair_2__ctor_m3C86D5D8BB0D1118068E83ED43D64F4E64E7C221_RuntimeMethod_var);
|
|
InlinedArray_1_set_Item_m6A196904387C38864370BABA0CBACC0EEF6BB786(L_9, L_10, L_13, InlinedArray_1_set_Item_m6A196904387C38864370BABA0CBACC0EEF6BB786_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1140>
|
|
return __this;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1130>
|
|
int32_t L_14 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_14, 1));
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1130>
|
|
int32_t L_15 = V_0;
|
|
InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43* L_16 = (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43*)(&__this->___m_DeviceIDMappings);
|
|
int32_t L_17 = L_16->___length;
|
|
if ((((int32_t)L_15) < ((int32_t)L_17)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1144>
|
|
int32_t L_18 = ___0_recordedDeviceId;
|
|
int32_t L_19 = ___1_playbackDeviceId;
|
|
if ((!(((uint32_t)L_18) == ((uint32_t)L_19))))
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1145>
|
|
return __this;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1148>
|
|
InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43* L_20 = (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43*)(&__this->___m_DeviceIDMappings);
|
|
int32_t L_21 = ___0_recordedDeviceId;
|
|
int32_t L_22 = ___1_playbackDeviceId;
|
|
KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189 L_23;
|
|
memset((&L_23), 0, sizeof(L_23));
|
|
KeyValuePair_2__ctor_m3C86D5D8BB0D1118068E83ED43D64F4E64E7C221((&L_23), L_21, L_22, KeyValuePair_2__ctor_m3C86D5D8BB0D1118068E83ED43D64F4E64E7C221_RuntimeMethod_var);
|
|
int32_t L_24;
|
|
L_24 = InlinedArray_1_AppendWithCapacity_mDB0D8ADCFF5D374E15017980D7073D63B8E8C48F(L_20, L_23, ((int32_t)10), InlinedArray_1_AppendWithCapacity_mDB0D8ADCFF5D374E15017980D7073D63B8E8C48F_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1149>
|
|
return __this;
|
|
}
|
|
}
|
|
// Method Definition Index: 25715
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* ReplayController_WithAllDevicesMappedToNewInstances_mE3646C9DA51E76700A20C50D4DB8677AF27D5814 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1166>
|
|
__this->___m_CreateNewDevices = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1167>
|
|
return __this;
|
|
}
|
|
}
|
|
// Method Definition Index: 25716
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* ReplayController_OnFinished_m95B708248C2320BFA3373C1A41A5130DEE8956AA (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_action, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1177>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = ___0_action;
|
|
__this->___m_OnFinished = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OnFinished), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1178>
|
|
return __this;
|
|
}
|
|
}
|
|
// Method Definition Index: 25717
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* ReplayController_OnEvent_mDD42B905AA6C1FB9C1BF8CA5C192F8194A7AB97A (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* ___0_action, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1188>
|
|
Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* L_0 = ___0_action;
|
|
__this->___m_OnEvent = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OnEvent), (void*)L_0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1189>
|
|
return __this;
|
|
}
|
|
}
|
|
// Method Definition Index: 25718
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* ReplayController_PlayOneEvent_m2533EAE40DCB7642C6A4F4CF04E989D9AD0C1548 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1207>
|
|
bool L_0;
|
|
L_0 = ReplayController_MoveNext_m2887515FB9A9316E0A2A272C57ADA2301DD90980(__this, (bool)1, (&V_0), NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1208>
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral85B9AAF0EB29996A5ABED6647FBC8A4437062717)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReplayController_PlayOneEvent_m2533EAE40DCB7642C6A4F4CF04E989D9AD0C1548_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1210>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_2 = V_0;
|
|
ReplayController_QueueEvent_mC5FA360DEB643DF3D85E7A9AFD6510D66A7F8BEE(__this, L_2, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1212>
|
|
return __this;
|
|
}
|
|
}
|
|
// Method Definition Index: 25719
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* ReplayController_Rewind_m966D7F7493073FA5213D740C41EF3980703E5925 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1226>
|
|
__this->___m_Enumerator = (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Enumerator), (void*)(Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1227>
|
|
__this->___m_AllEventsByTime = (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_AllEventsByTime), (void*)(List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1228>
|
|
__this->___m_AllEventsByTimeIndex = (-1);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1229>
|
|
ReplayController_set_position_m4948A3C77785BCBBE721AC7C452C470A9C24C098_inline(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1230>
|
|
return __this;
|
|
}
|
|
}
|
|
// Method Definition Index: 25720
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* ReplayController_PlayAllFramesOneByOne_m1F8D045A9E2A1A24F8E07811CCF01D82226420CA (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReplayController_OnBeginFrame_m099944319B93E1E8A2B6264F50F31CF5434277EF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1251>
|
|
ReplayController_set_finished_m05C11A4E622954AFDACE0F7AB76E93EEECD6B6A2_inline(__this, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1252>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_0, __this, (intptr_t)((void*)ReplayController_OnBeginFrame_m099944319B93E1E8A2B6264F50F31CF5434277EF_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_add_onBeforeUpdate_m022480417EA69F0488F81F112B2D9BED5D65AC5C(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1253>
|
|
return __this;
|
|
}
|
|
}
|
|
// Method Definition Index: 25721
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* ReplayController_PlayAllEvents_m9A0CDBB6150CD394857B0BA1A2EDB189FFC7F931 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1269>
|
|
ReplayController_set_finished_m05C11A4E622954AFDACE0F7AB76E93EEECD6B6A2_inline(__this, (bool)0, NULL);
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_001d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1277>
|
|
ReplayController_Finished_m264D5E388A7FA1EFCED8420A5969C84D505493DF(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1278>
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
|
|
IL_0007_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1272>
|
|
bool L_0;
|
|
L_0 = ReplayController_MoveNext_m2887515FB9A9316E0A2A272C57ADA2301DD90980(__this, (bool)1, (&V_0), NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_001b_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1273>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1 = V_0;
|
|
ReplayController_QueueEvent_mC5FA360DEB643DF3D85E7A9AFD6510D66A7F8BEE(__this, L_1, NULL);
|
|
goto IL_0007_1;
|
|
}
|
|
|
|
IL_001b_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1274>
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1279>
|
|
return __this;
|
|
}
|
|
}
|
|
// Method Definition Index: 25722
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* ReplayController_PlayAllEventsAccordingToTimestamps_m9BF27D0D471C45409AE8D1FB6706FD875037DF4E (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m2EE80016B94F10A7E9150D8ABB6C5668609CBAB3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_mEB9A929B41F7294B9F91D91FFCEB73C358478813_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m6CF56031007CD05AA70A2FDA98FB9652FD3C0DF5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReplayController_OnBeginFrame_m099944319B93E1E8A2B6264F50F31CF5434277EF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CPlayAllEventsAccordingToTimestampsU3Eb__38_0_mD6E1BBAC6B62A15BA7EF6AA962FB149E191F86A5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* V_0 = NULL;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188* G_B5_0 = NULL;
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* G_B5_1 = NULL;
|
|
Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188* G_B4_0 = NULL;
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* G_B4_1 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1303>
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_0 = (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448*)il2cpp_codegen_object_new(List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m6CF56031007CD05AA70A2FDA98FB9652FD3C0DF5(L_0, List_1__ctor_m6CF56031007CD05AA70A2FDA98FB9652FD3C0DF5_RuntimeMethod_var);
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1304>
|
|
bool L_1;
|
|
L_1 = ReplayController_MoveNext_m2887515FB9A9316E0A2A272C57ADA2301DD90980(__this, (bool)1, (&V_1), NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1305>
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_2 = V_0;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_3 = V_1;
|
|
NullCheck(L_2);
|
|
List_1_Add_m2EE80016B94F10A7E9150D8ABB6C5668609CBAB3_inline(L_2, L_3, List_1_Add_m2EE80016B94F10A7E9150D8ABB6C5668609CBAB3_RuntimeMethod_var);
|
|
goto IL_0006;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1306>
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_4 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_il2cpp_TypeInfo_var);
|
|
Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188* L_5 = ((U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_il2cpp_TypeInfo_var))->___U3CU3E9__38_0;
|
|
Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188* L_6 = L_5;
|
|
if (L_6)
|
|
{
|
|
G_B5_0 = L_6;
|
|
G_B5_1 = L_4;
|
|
goto IL_003a;
|
|
}
|
|
G_B4_0 = L_6;
|
|
G_B4_1 = L_4;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F* L_7 = ((U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_il2cpp_TypeInfo_var))->___U3CU3E9;
|
|
Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188* L_8 = (Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188*)il2cpp_codegen_object_new(Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188_il2cpp_TypeInfo_var);
|
|
Comparison_1__ctor_m3066D7B2DF7828CC841C0313A7664013366E7F33(L_8, L_7, (intptr_t)((void*)U3CU3Ec_U3CPlayAllEventsAccordingToTimestampsU3Eb__38_0_mD6E1BBAC6B62A15BA7EF6AA962FB149E191F86A5_RuntimeMethod_var), NULL);
|
|
Comparison_1_t862EC1638BBB220501FBDE3A364BB2316809E188* L_9 = L_8;
|
|
((U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_il2cpp_TypeInfo_var))->___U3CU3E9__38_0 = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_il2cpp_TypeInfo_var))->___U3CU3E9__38_0), (void*)L_9);
|
|
G_B5_0 = L_9;
|
|
G_B5_1 = G_B4_1;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
NullCheck(G_B5_1);
|
|
List_1_Sort_mEB9A929B41F7294B9F91D91FFCEB73C358478813(G_B5_1, G_B5_0, List_1_Sort_mEB9A929B41F7294B9F91D91FFCEB73C358478813_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1307>
|
|
Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* L_10 = __this->___m_Enumerator;
|
|
NullCheck(L_10);
|
|
Enumerator_Dispose_m385FC51CC8FD384DE531046778BB39C30B623B4F(L_10, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1308>
|
|
__this->___m_Enumerator = (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Enumerator), (void*)(Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75*)NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1309>
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_11 = V_0;
|
|
__this->___m_AllEventsByTime = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_AllEventsByTime), (void*)L_11);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1310>
|
|
ReplayController_set_position_m4948A3C77785BCBBE721AC7C452C470A9C24C098_inline(__this, 0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1313>
|
|
ReplayController_set_finished_m05C11A4E622954AFDACE0F7AB76E93EEECD6B6A2_inline(__this, (bool)0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1314>
|
|
__this->___m_StartTimeAsPerFirstEvent = (-1.0);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1315>
|
|
__this->___m_AllEventsByTimeIndex = (-1);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1316>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_12 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_12, __this, (intptr_t)((void*)ReplayController_OnBeginFrame_m099944319B93E1E8A2B6264F50F31CF5434277EF_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_add_onBeforeUpdate_m022480417EA69F0488F81F112B2D9BED5D65AC5C(L_12, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1317>
|
|
return __this;
|
|
}
|
|
}
|
|
// Method Definition Index: 25723
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReplayController_OnBeginFrame_m099944319B93E1E8A2B6264F50F31CF5434277EF (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
int32_t V_2 = 0;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1322>
|
|
bool L_0;
|
|
L_0 = ReplayController_get_paused_mA3967138FEFDD72AE8823B2B2DACEBE6E5555F30_inline(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1323>
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1325>
|
|
bool L_1;
|
|
L_1 = ReplayController_MoveNext_m2887515FB9A9316E0A2A272C57ADA2301DD90980(__this, (bool)0, (&V_0), NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1327>
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_2 = __this->___m_AllEventsByTime;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = __this->___m_AllEventsByTimeIndex;
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_4 = __this->___m_AllEventsByTime;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_inline(L_4, List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_RuntimeMethod_var);
|
|
if ((((int32_t)L_3) < ((int32_t)L_5)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1328>
|
|
ReplayController_Finished_m264D5E388A7FA1EFCED8420A5969C84D505493DF(__this, NULL);
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1329>
|
|
return;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1334>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_6;
|
|
L_6 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69((&V_0), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_7;
|
|
L_7 = InputEventTrace_get_FrameMarkerEvent_m491AB38CDCEED20E74D4717FB782716649FB16FC(NULL);
|
|
bool L_8;
|
|
L_8 = FourCC_op_Equality_m3D556D9BE044419563A7F44DCA15F1EB30656D4C_inline(L_6, L_7, NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1336>
|
|
bool L_9;
|
|
L_9 = ReplayController_MoveNext_m2887515FB9A9316E0A2A272C57ADA2301DD90980(__this, (bool)0, (&V_1), NULL);
|
|
if (L_9)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1339>
|
|
ReplayController_Finished_m264D5E388A7FA1EFCED8420A5969C84D505493DF(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1340>
|
|
return;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1344>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_10;
|
|
L_10 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69((&V_1), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_11;
|
|
L_11 = InputEventTrace_get_FrameMarkerEvent_m491AB38CDCEED20E74D4717FB782716649FB16FC(NULL);
|
|
bool L_12;
|
|
L_12 = FourCC_op_Equality_m3D556D9BE044419563A7F44DCA15F1EB30656D4C_inline(L_10, L_11, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1346>
|
|
int32_t L_13;
|
|
L_13 = ReplayController_get_position_m39297BBE091E3E76FDD27B71AA7355148E908B88_inline(__this, NULL);
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract(L_13, 1));
|
|
int32_t L_14 = V_2;
|
|
ReplayController_set_position_m4948A3C77785BCBBE721AC7C452C470A9C24C098_inline(__this, L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1347>
|
|
Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* L_15 = __this->___m_Enumerator;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_16 = V_0;
|
|
NullCheck(L_15);
|
|
L_15->___m_Current = L_16;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1348>
|
|
return;
|
|
}
|
|
|
|
IL_008b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1351>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_17 = V_1;
|
|
V_0 = L_17;
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1357>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_18 = V_0;
|
|
ReplayController_QueueEvent_mC5FA360DEB643DF3D85E7A9AFD6510D66A7F8BEE(__this, L_18, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1360>
|
|
bool L_19;
|
|
L_19 = ReplayController_MoveNext_m2887515FB9A9316E0A2A272C57ADA2301DD90980(__this, (bool)0, (&V_3), NULL);
|
|
if (L_19)
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1362>
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_20 = __this->___m_AllEventsByTime;
|
|
if (!L_20)
|
|
{
|
|
goto IL_00ba;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_21 = __this->___m_AllEventsByTimeIndex;
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_22 = __this->___m_AllEventsByTime;
|
|
NullCheck(L_22);
|
|
int32_t L_23;
|
|
L_23 = List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_inline(L_22, List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_RuntimeMethod_var);
|
|
if ((((int32_t)L_21) < ((int32_t)L_23)))
|
|
{
|
|
goto IL_00f5;
|
|
}
|
|
}
|
|
|
|
IL_00ba:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1363>
|
|
ReplayController_Finished_m264D5E388A7FA1EFCED8420A5969C84D505493DF(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1364>
|
|
return;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1368>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_24;
|
|
L_24 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69((&V_3), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_25;
|
|
L_25 = InputEventTrace_get_FrameMarkerEvent_m491AB38CDCEED20E74D4717FB782716649FB16FC(NULL);
|
|
bool L_26;
|
|
L_26 = FourCC_op_Equality_m3D556D9BE044419563A7F44DCA15F1EB30656D4C_inline(L_24, L_25, NULL);
|
|
if (!L_26)
|
|
{
|
|
goto IL_00f1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1371>
|
|
Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* L_27 = __this->___m_Enumerator;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_28 = V_0;
|
|
NullCheck(L_27);
|
|
L_27->___m_Current = L_28;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1372>
|
|
int32_t L_29;
|
|
L_29 = ReplayController_get_position_m39297BBE091E3E76FDD27B71AA7355148E908B88_inline(__this, NULL);
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract(L_29, 1));
|
|
int32_t L_30 = V_2;
|
|
ReplayController_set_position_m4948A3C77785BCBBE721AC7C452C470A9C24C098_inline(__this, L_30, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1373>
|
|
return;
|
|
}
|
|
|
|
IL_00f1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1376>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_31 = V_3;
|
|
V_0 = L_31;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1355>
|
|
goto IL_008d;
|
|
}
|
|
|
|
IL_00f5:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1378>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25724
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReplayController_Finished_m264D5E388A7FA1EFCED8420A5969C84D505493DF (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReplayController_OnBeginFrame_m099944319B93E1E8A2B6264F50F31CF5434277EF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B2_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B1_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1382>
|
|
ReplayController_set_finished_m05C11A4E622954AFDACE0F7AB76E93EEECD6B6A2_inline(__this, (bool)1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1383>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_0, __this, (intptr_t)((void*)ReplayController_OnBeginFrame_m099944319B93E1E8A2B6264F50F31CF5434277EF_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_remove_onBeforeUpdate_m4BD541DC1AB9FC6C87FB71B35A39CC75223E530C(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1384>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = __this->___m_OnFinished;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_2 = L_1;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
goto IL_0023;
|
|
}
|
|
G_B1_0 = L_2;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(G_B2_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1385>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25725
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReplayController_QueueEvent_mC5FA360DEB643DF3D85E7A9AFD6510D66A7F8BEE (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
double V_0 = 0.0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* G_B5_0 = NULL;
|
|
Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* G_B4_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1390>
|
|
double L_0;
|
|
L_0 = InputEventPtr_get_internalTime_mB0A20BAF50AC9842691B0495A766A18B05CB4781((&___0_eventPtr), NULL);
|
|
V_0 = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1391>
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_1 = __this->___m_AllEventsByTime;
|
|
if (!L_1)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1392>
|
|
double L_2 = __this->___m_StartTimeAsPerRuntime;
|
|
double L_3;
|
|
L_3 = InputEventPtr_get_internalTime_mB0A20BAF50AC9842691B0495A766A18B05CB4781((&___0_eventPtr), NULL);
|
|
double L_4 = __this->___m_StartTimeAsPerFirstEvent;
|
|
InputEventPtr_set_internalTime_mBD0B465C6882DD13F5FA3AAE487C0FA8A68E3810((&___0_eventPtr), ((double)il2cpp_codegen_add(L_2, ((double)il2cpp_codegen_subtract(L_3, L_4)))), NULL);
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1394>
|
|
RuntimeObject* L_5 = ((InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var))->___s_Instance;
|
|
NullCheck(L_5);
|
|
double L_6;
|
|
L_6 = InterfaceFuncInvoker0< double >::Invoke(19, IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var, L_5);
|
|
InputEventPtr_set_internalTime_mBD0B465C6882DD13F5FA3AAE487C0FA8A68E3810((&___0_eventPtr), L_6, NULL);
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1398>
|
|
int32_t L_7;
|
|
L_7 = InputEventPtr_get_id_mED485DFF0A720B0A27201BAFD554D42A8FE527FB((&___0_eventPtr), NULL);
|
|
V_1 = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1401>
|
|
int32_t L_8;
|
|
L_8 = InputEventPtr_get_deviceId_mD8B68EDC37D90A69EE67A47B3E17F4D80D4620D3((&___0_eventPtr), NULL);
|
|
V_2 = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1402>
|
|
int32_t L_9 = V_2;
|
|
int32_t L_10;
|
|
L_10 = ReplayController_ApplyDeviceMapping_mE74A404A704F80B52F5FC9C728B13D0433A46962(__this, L_9, NULL);
|
|
InputEventPtr_set_deviceId_mDC5B90109CDEECE63A5F1310379DB8B1B31D2B97((&___0_eventPtr), L_10, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1405>
|
|
Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* L_11 = __this->___m_OnEvent;
|
|
Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* L_12 = L_11;
|
|
if (L_12)
|
|
{
|
|
G_B5_0 = L_12;
|
|
goto IL_0069;
|
|
}
|
|
G_B4_0 = L_12;
|
|
}
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_13 = ___0_eventPtr;
|
|
NullCheck(G_B5_0);
|
|
Action_1_Invoke_m30D56EDF2807EF309EEF182BA63A3F0EF0B08A15_inline(G_B5_0, L_13, NULL);
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0078:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1415>
|
|
double L_14 = V_0;
|
|
InputEventPtr_set_internalTime_mBD0B465C6882DD13F5FA3AAE487C0FA8A68E3810((&___0_eventPtr), L_14, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1416>
|
|
int32_t L_15 = V_1;
|
|
InputEventPtr_set_id_m8CCBE3CAF92578F56613E99AAA4334BCCFCFD40B((&___0_eventPtr), L_15, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1417>
|
|
int32_t L_16 = V_2;
|
|
InputEventPtr_set_deviceId_mDC5B90109CDEECE63A5F1310379DB8B1B31D2B97((&___0_eventPtr), L_16, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1418>
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1410>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_17 = ___0_eventPtr;
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_QueueEvent_mC30D182ADDD60BFC2AF10D24CEE2481D0EB77996(L_17, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1411>
|
|
goto IL_0091;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1419>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25726
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReplayController_MoveNext_m2887515FB9A9316E0A2A272C57ADA2301DD90980 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, bool ___0_skipFrameEvents, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* ___1_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m230131CE40A0013D25B1FB05FDDB98CB898BB718_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1423>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_0 = ___1_eventPtr;
|
|
il2cpp_codegen_initobj(L_0, sizeof(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1425>
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_1 = __this->___m_AllEventsByTime;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0103;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1427>
|
|
int32_t L_2 = __this->___m_AllEventsByTimeIndex;
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_3 = __this->___m_AllEventsByTime;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_inline(L_3, List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_RuntimeMethod_var);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_2, 1))) < ((int32_t)L_4)))
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1429>
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_5 = __this->___m_AllEventsByTime;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_inline(L_5, List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_RuntimeMethod_var);
|
|
ReplayController_set_position_m4948A3C77785BCBBE721AC7C452C470A9C24C098_inline(__this, L_6, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1430>
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_7 = __this->___m_AllEventsByTime;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_inline(L_7, List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_RuntimeMethod_var);
|
|
__this->___m_AllEventsByTimeIndex = L_8;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1431>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1434>
|
|
int32_t L_9 = __this->___m_AllEventsByTimeIndex;
|
|
if ((((int32_t)L_9) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0080;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1436>
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_10 = __this->___m_AllEventsByTime;
|
|
NullCheck(L_10);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_11;
|
|
L_11 = List_1_get_Item_m230131CE40A0013D25B1FB05FDDB98CB898BB718(L_10, 0, List_1_get_Item_m230131CE40A0013D25B1FB05FDDB98CB898BB718_RuntimeMethod_var);
|
|
V_0 = L_11;
|
|
double L_12;
|
|
L_12 = InputEventPtr_get_internalTime_mB0A20BAF50AC9842691B0495A766A18B05CB4781((&V_0), NULL);
|
|
__this->___m_StartTimeAsPerFirstEvent = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1437>
|
|
RuntimeObject* L_13 = ((InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var))->___s_Instance;
|
|
NullCheck(L_13);
|
|
double L_14;
|
|
L_14 = InterfaceFuncInvoker0< double >::Invoke(19, IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var, L_13);
|
|
__this->___m_StartTimeAsPerRuntime = L_14;
|
|
goto IL_00cc;
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1439>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1440>
|
|
int32_t L_15 = __this->___m_AllEventsByTimeIndex;
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_16 = __this->___m_AllEventsByTime;
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_inline(L_16, List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_RuntimeMethod_var);
|
|
if ((((int32_t)L_15) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_17, 1)))))
|
|
{
|
|
goto IL_00cc;
|
|
}
|
|
}
|
|
{
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_18 = __this->___m_AllEventsByTime;
|
|
int32_t L_19 = __this->___m_AllEventsByTimeIndex;
|
|
NullCheck(L_18);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_20;
|
|
L_20 = List_1_get_Item_m230131CE40A0013D25B1FB05FDDB98CB898BB718(L_18, ((int32_t)il2cpp_codegen_add(L_19, 1)), List_1_get_Item_m230131CE40A0013D25B1FB05FDDB98CB898BB718_RuntimeMethod_var);
|
|
V_0 = L_20;
|
|
double L_21;
|
|
L_21 = InputEventPtr_get_internalTime_mB0A20BAF50AC9842691B0495A766A18B05CB4781((&V_0), NULL);
|
|
double L_22 = __this->___m_StartTimeAsPerFirstEvent;
|
|
RuntimeObject* L_23 = ((InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var))->___s_Instance;
|
|
NullCheck(L_23);
|
|
double L_24;
|
|
L_24 = InterfaceFuncInvoker0< double >::Invoke(19, IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var, L_23);
|
|
double L_25 = __this->___m_StartTimeAsPerRuntime;
|
|
if ((!(((double)L_21) > ((double)((double)il2cpp_codegen_add(L_22, ((double)il2cpp_codegen_subtract(L_24, L_25))))))))
|
|
{
|
|
goto IL_00cc;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1444>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00cc:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1447>
|
|
int32_t L_26 = __this->___m_AllEventsByTimeIndex;
|
|
__this->___m_AllEventsByTimeIndex = ((int32_t)il2cpp_codegen_add(L_26, 1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1448>
|
|
int32_t L_27;
|
|
L_27 = ReplayController_get_position_m39297BBE091E3E76FDD27B71AA7355148E908B88_inline(__this, NULL);
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_27, 1));
|
|
int32_t L_28 = V_1;
|
|
ReplayController_set_position_m4948A3C77785BCBBE721AC7C452C470A9C24C098_inline(__this, L_28, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1449>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_29 = ___1_eventPtr;
|
|
List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* L_30 = __this->___m_AllEventsByTime;
|
|
int32_t L_31 = __this->___m_AllEventsByTimeIndex;
|
|
NullCheck(L_30);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_32;
|
|
L_32 = List_1_get_Item_m230131CE40A0013D25B1FB05FDDB98CB898BB718(L_30, L_31, List_1_get_Item_m230131CE40A0013D25B1FB05FDDB98CB898BB718_RuntimeMethod_var);
|
|
*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)L_29 = L_32;
|
|
goto IL_0161;
|
|
}
|
|
|
|
IL_0103:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1453>
|
|
Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* L_33 = __this->___m_Enumerator;
|
|
if (L_33)
|
|
{
|
|
goto IL_011c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1454>
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_34 = __this->___m_EventTrace;
|
|
Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* L_35 = (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75*)il2cpp_codegen_object_new(Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75_il2cpp_TypeInfo_var);
|
|
Enumerator__ctor_m4F5637FFD01430441D557749B2443A43E2E52575(L_35, L_34, NULL);
|
|
__this->___m_Enumerator = L_35;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Enumerator), (void*)L_35);
|
|
}
|
|
|
|
IL_011c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1458>
|
|
Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* L_36 = __this->___m_Enumerator;
|
|
NullCheck(L_36);
|
|
bool L_37;
|
|
L_37 = Enumerator_MoveNext_mBAEFD5A6376C9CFEE01B48D250572D491A8C6C24(L_36, NULL);
|
|
if (L_37)
|
|
{
|
|
goto IL_012b;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1459>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_012b:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1461>
|
|
int32_t L_38;
|
|
L_38 = ReplayController_get_position_m39297BBE091E3E76FDD27B71AA7355148E908B88_inline(__this, NULL);
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_38, 1));
|
|
int32_t L_39 = V_1;
|
|
ReplayController_set_position_m4948A3C77785BCBBE721AC7C452C470A9C24C098_inline(__this, L_39, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1462>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_40 = ___1_eventPtr;
|
|
Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* L_41 = __this->___m_Enumerator;
|
|
NullCheck(L_41);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_42;
|
|
L_42 = Enumerator_get_Current_m3C388C6F62B1736308A7B1AAB5D1AE461B2D50CC_inline(L_41, NULL);
|
|
*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)L_40 = L_42;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1464>
|
|
bool L_43 = ___0_skipFrameEvents;
|
|
if (!L_43)
|
|
{
|
|
goto IL_0161;
|
|
}
|
|
}
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_44 = ___1_eventPtr;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_45;
|
|
L_45 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69(L_44, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD_il2cpp_TypeInfo_var);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_46;
|
|
L_46 = InputEventTrace_get_FrameMarkerEvent_m491AB38CDCEED20E74D4717FB782716649FB16FC(NULL);
|
|
bool L_47;
|
|
L_47 = FourCC_op_Equality_m3D556D9BE044419563A7F44DCA15F1EB30656D4C_inline(L_45, L_46, NULL);
|
|
if (L_47)
|
|
{
|
|
goto IL_011c;
|
|
}
|
|
}
|
|
|
|
IL_0161:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1467>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25727
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReplayController_ApplyDeviceMapping_mE74A404A704F80B52F5FC9C728B13D0433A46962 (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, int32_t ___0_originalDeviceId, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_AppendWithCapacity_mC3DD9D6BFC53FE2F13BC3FEE652EC3B2CBA547AE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InlinedArray_1_get_Item_m1C8BF2A41804F8D2B398B234FE3B1E940D36DFF1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_m5A886C4B3E54DEA04D456E49D7FB92A4545FCD8F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m83DA000FF3605DAD9160D02FB36863DF77DB468A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Predicate_1_t81E65ECFCC613C16F7408ECA5D3D94536697174D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_IndexOf_mFE4262FD29B7CC10555B765F22C7D263C0BC97AB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArray_1_get_Item_mDFB5E4BE282F80EE3CF856F0DD06DD5BD72B8B2A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass43_0_U3CApplyDeviceMappingU3Eb__0_mD9F26ADD12D189195E38531637DD0404DCBC9F1D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
int32_t V_3 = 0;
|
|
ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* V_7 = NULL;
|
|
int32_t V_8 = 0;
|
|
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A* L_0 = (U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__DisplayClass43_0__ctor_m44DFCFD88DB448F015B1576A19C27E625666493C(L_0, NULL);
|
|
V_0 = L_0;
|
|
U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A* L_1 = V_0;
|
|
int32_t L_2 = ___0_originalDeviceId;
|
|
NullCheck(L_1);
|
|
L_1->___originalDeviceId = L_2;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1473>
|
|
V_1 = 0;
|
|
goto IL_0039;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1475>
|
|
InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43* L_3 = (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43*)(&__this->___m_DeviceIDMappings);
|
|
int32_t L_4 = V_1;
|
|
KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189 L_5;
|
|
L_5 = InlinedArray_1_get_Item_m1C8BF2A41804F8D2B398B234FE3B1E940D36DFF1(L_3, L_4, InlinedArray_1_get_Item_m1C8BF2A41804F8D2B398B234FE3B1E940D36DFF1_RuntimeMethod_var);
|
|
V_2 = L_5;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1476>
|
|
int32_t L_6;
|
|
L_6 = KeyValuePair_2_get_Key_m5A886C4B3E54DEA04D456E49D7FB92A4545FCD8F_inline((&V_2), KeyValuePair_2_get_Key_m5A886C4B3E54DEA04D456E49D7FB92A4545FCD8F_RuntimeMethod_var);
|
|
U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->___originalDeviceId;
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)L_8))))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1477>
|
|
int32_t L_9;
|
|
L_9 = KeyValuePair_2_get_Value_m83DA000FF3605DAD9160D02FB36863DF77DB468A_inline((&V_2), KeyValuePair_2_get_Value_m83DA000FF3605DAD9160D02FB36863DF77DB468A_RuntimeMethod_var);
|
|
return L_9;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1473>
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1473>
|
|
int32_t L_11 = V_1;
|
|
InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43* L_12 = (InlinedArray_1_tCD4550E16CF87B93F7C4EF9D0F922C1D5E99FA43*)(&__this->___m_DeviceIDMappings);
|
|
int32_t L_13 = L_12->___length;
|
|
if ((((int32_t)L_11) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1481>
|
|
bool L_14 = __this->___m_CreateNewDevices;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0120;
|
|
}
|
|
}
|
|
try
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1486>
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_15 = __this->___m_EventTrace;
|
|
NullCheck(L_15);
|
|
ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570 L_16;
|
|
L_16 = InputEventTrace_get_deviceInfos_m66BCE6CE81C634A9352F04CF76CEA14F4E8B3942(L_15, NULL);
|
|
V_4 = L_16;
|
|
U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A* L_17 = V_0;
|
|
Predicate_1_t81E65ECFCC613C16F7408ECA5D3D94536697174D* L_18 = (Predicate_1_t81E65ECFCC613C16F7408ECA5D3D94536697174D*)il2cpp_codegen_object_new(Predicate_1_t81E65ECFCC613C16F7408ECA5D3D94536697174D_il2cpp_TypeInfo_var);
|
|
Predicate_1__ctor_mB518D664C1FF6E6E0E5886154563FF1AD31B74D3(L_18, L_17, (intptr_t)((void*)U3CU3Ec__DisplayClass43_0_U3CApplyDeviceMappingU3Eb__0_mD9F26ADD12D189195E38531637DD0404DCBC9F1D_RuntimeMethod_var), NULL);
|
|
int32_t L_19;
|
|
L_19 = ReadOnlyArray_1_IndexOf_mFE4262FD29B7CC10555B765F22C7D263C0BC97AB((&V_4), L_18, ReadOnlyArray_1_IndexOf_mFE4262FD29B7CC10555B765F22C7D263C0BC97AB_RuntimeMethod_var);
|
|
V_3 = L_19;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1487>
|
|
int32_t L_20 = V_3;
|
|
if ((((int32_t)L_20) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_011b_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1489>
|
|
InputEventTrace_t1D25547AACA8FD1C1AA974F31EF9BD9478205FBD* L_21 = __this->___m_EventTrace;
|
|
NullCheck(L_21);
|
|
ReadOnlyArray_1_tA6BF8CE904C9753E9B1BA944C102C36E3B75E570 L_22;
|
|
L_22 = InputEventTrace_get_deviceInfos_m66BCE6CE81C634A9352F04CF76CEA14F4E8B3942(L_21, NULL);
|
|
V_4 = L_22;
|
|
int32_t L_23 = V_3;
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 L_24;
|
|
L_24 = ReadOnlyArray_1_get_Item_mDFB5E4BE282F80EE3CF856F0DD06DD5BD72B8B2A((&V_4), L_23, ReadOnlyArray_1_get_Item_mDFB5E4BE282F80EE3CF856F0DD06DD5BD72B8B2A_RuntimeMethod_var);
|
|
V_5 = L_24;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1492>
|
|
String_t* L_25;
|
|
L_25 = DeviceInfo_get_layout_mC531D6400FCF8EE7CCBE96D0DC9328BC0A5AC24C_inline((&V_5), NULL);
|
|
InternedString__ctor_m2E9672D46D84C82F705DE799CE8B6123EB95E935((&V_6), L_25, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1493>
|
|
il2cpp_codegen_runtime_class_init_inline(InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_il2cpp_TypeInfo_var);
|
|
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 L_26 = V_6;
|
|
bool L_27;
|
|
L_27 = Collection_HasLayout_m76BD57A515EFDE26B81646B755529776C02ACA8E((&((InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_StaticFields*)il2cpp_codegen_static_fields_for(InputControlLayout_t46A40BE4C976BE33E85F61E63EB34323FED9831D_il2cpp_TypeInfo_var))->___s_Layouts), L_26, NULL);
|
|
if (L_27)
|
|
{
|
|
goto IL_00dc_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1495>
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 L_28 = V_5;
|
|
String_t* L_29 = L_28.___m_FullLayoutJson;
|
|
bool L_30;
|
|
L_30 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_29, NULL);
|
|
if (!L_30)
|
|
{
|
|
goto IL_00c5_1;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1496>
|
|
U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A* L_31 = V_0;
|
|
NullCheck(L_31);
|
|
int32_t L_32 = L_31->___originalDeviceId;
|
|
V_8 = L_32;
|
|
goto IL_0127;
|
|
}
|
|
|
|
IL_00c5_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1498>
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 L_33 = V_5;
|
|
String_t* L_34 = L_33.___m_FullLayoutJson;
|
|
il2cpp_codegen_initobj((&V_9), sizeof(Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C));
|
|
Nullable_1_t4EEC710224A7596AC94C3B6D292E4CB7D84B7F2C L_35 = V_9;
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputSystem_RegisterLayout_m8FBCD0A0BD4FF8E93362CC0965AF7718F2EB318A(L_34, (String_t*)NULL, L_35, NULL);
|
|
}
|
|
|
|
IL_00dc_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1502>
|
|
InternedString_t8D62A48CB7D85AAE9CFCCCFB0A77AC2844905735 L_36 = V_6;
|
|
String_t* L_37;
|
|
L_37 = InternedString_op_Implicit_m99D80AAE853F54FA2EF2603D020C7454B608D2F6(L_36, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(InputSystem_t4120CA4FE7DCFD56AF9391933FC3F1F485350164_il2cpp_TypeInfo_var);
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_38;
|
|
L_38 = InputSystem_AddDevice_m80FC919566BCDE8E9B09F19FA2AF32FF53A9710F(L_37, (String_t*)NULL, (String_t*)NULL, NULL);
|
|
V_7 = L_38;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1503>
|
|
U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A* L_39 = V_0;
|
|
NullCheck(L_39);
|
|
int32_t L_40 = L_39->___originalDeviceId;
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_41 = V_7;
|
|
NullCheck(L_41);
|
|
int32_t L_42;
|
|
L_42 = InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline(L_41, NULL);
|
|
ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* L_43;
|
|
L_43 = ReplayController_WithDeviceMappedFromTo_m88AC8466C0CEAB26F9F502DF6A1B3853512F7090(__this, L_40, L_42, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1504>
|
|
InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C* L_44 = (InlinedArray_1_t1B3C6A098E8582B58A16218A7BA01827E025158C*)(&__this->___m_CreatedDevices);
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_45 = V_7;
|
|
int32_t L_46;
|
|
L_46 = InlinedArray_1_AppendWithCapacity_mC3DD9D6BFC53FE2F13BC3FEE652EC3B2CBA547AE(L_44, L_45, ((int32_t)10), InlinedArray_1_AppendWithCapacity_mC3DD9D6BFC53FE2F13BC3FEE652EC3B2CBA547AE_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1505>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_47 = V_7;
|
|
NullCheck(L_47);
|
|
int32_t L_48;
|
|
L_48 = InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline(L_47, NULL);
|
|
V_8 = L_48;
|
|
goto IL_0127;
|
|
}
|
|
|
|
IL_011b_1:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1507>
|
|
goto IL_0120;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (il2cpp_defaults.object_class, il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_011d;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_011d:
|
|
{
|
|
RuntimeObject* L_49 = ((RuntimeObject*)IL2CPP_GET_ACTIVE_EXCEPTION(RuntimeObject*));;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1508>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1511>
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0120;
|
|
}
|
|
|
|
IL_0120:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1514>
|
|
U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A* L_50 = V_0;
|
|
NullCheck(L_50);
|
|
int32_t L_51 = L_50->___originalDeviceId;
|
|
return L_51;
|
|
}
|
|
|
|
IL_0127:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1515>
|
|
int32_t L_52 = V_8;
|
|
return L_52;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25728
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mDECAA01D180B4F03913E6E0BBB46019554673294 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F* L_0 = (U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F*)il2cpp_codegen_object_new(U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__ctor_m2B226897DC23B48ACB5AF11CF779F3B02EDC558D(L_0, NULL);
|
|
((U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_il2cpp_TypeInfo_var))->___U3CU3E9 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F_il2cpp_TypeInfo_var))->___U3CU3E9), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25729
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m2B226897DC23B48ACB5AF11CF779F3B02EDC558D (U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25730
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CPlayAllEventsAccordingToTimestampsU3Eb__38_0_mD6E1BBAC6B62A15BA7EF6AA962FB149E191F86A5 (U3CU3Ec_t5336D6DE5130C3DB505031E2A946E99F7FF3205F* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_a, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
double V_0 = 0.0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1306>
|
|
double L_0;
|
|
L_0 = InputEventPtr_get_time_mD2C90C66C334E767E2F9B5B9A3711B500027B185((&___0_a), NULL);
|
|
V_0 = L_0;
|
|
double L_1;
|
|
L_1 = InputEventPtr_get_time_mD2C90C66C334E767E2F9B5B9A3711B500027B185((&___1_b), NULL);
|
|
int32_t L_2;
|
|
L_2 = Double_CompareTo_m40FD7CA33B178CCFA4B6755267DC67841092CCFC((&V_0), L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25731
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass43_0__ctor_m44DFCFD88DB448F015B1576A19C27E625666493C (U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25732
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass43_0_U3CApplyDeviceMappingU3Eb__0_mD9F26ADD12D189195E38531637DD0404DCBC9F1D (U3CU3Ec__DisplayClass43_0_tC673746FB77AF6915ACB62C483E6BD5A00DC974A* __this, DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52 ___0_x, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1486>
|
|
int32_t L_0;
|
|
L_0 = DeviceInfo_get_deviceId_m1F56DCC1850CA1B775C357DA6D521F04EA74F0C6_inline((&___0_x), NULL);
|
|
int32_t L_1 = __this->___originalDeviceId;
|
|
return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshal_pinvoke(const DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52& unmarshaled, DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___m_DeviceId = unmarshaled.___m_DeviceId;
|
|
marshaled.___m_Layout = il2cpp_codegen_marshal_string(unmarshaled.___m_Layout);
|
|
marshaled.___m_StateFormat = unmarshaled.___m_StateFormat;
|
|
marshaled.___m_StateSizeInBytes = unmarshaled.___m_StateSizeInBytes;
|
|
marshaled.___m_FullLayoutJson = il2cpp_codegen_marshal_string(unmarshaled.___m_FullLayoutJson);
|
|
}
|
|
IL2CPP_EXTERN_C void DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshal_pinvoke_back(const DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshaled_pinvoke& marshaled, DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52& unmarshaled)
|
|
{
|
|
int32_t unmarshaledm_DeviceId_temp_0 = 0;
|
|
unmarshaledm_DeviceId_temp_0 = marshaled.___m_DeviceId;
|
|
unmarshaled.___m_DeviceId = unmarshaledm_DeviceId_temp_0;
|
|
unmarshaled.___m_Layout = il2cpp_codegen_marshal_string_result(marshaled.___m_Layout);
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_Layout), (void*)il2cpp_codegen_marshal_string_result(marshaled.___m_Layout));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED unmarshaledm_StateFormat_temp_2;
|
|
memset((&unmarshaledm_StateFormat_temp_2), 0, sizeof(unmarshaledm_StateFormat_temp_2));
|
|
unmarshaledm_StateFormat_temp_2 = marshaled.___m_StateFormat;
|
|
unmarshaled.___m_StateFormat = unmarshaledm_StateFormat_temp_2;
|
|
int32_t unmarshaledm_StateSizeInBytes_temp_3 = 0;
|
|
unmarshaledm_StateSizeInBytes_temp_3 = marshaled.___m_StateSizeInBytes;
|
|
unmarshaled.___m_StateSizeInBytes = unmarshaledm_StateSizeInBytes_temp_3;
|
|
unmarshaled.___m_FullLayoutJson = il2cpp_codegen_marshal_string_result(marshaled.___m_FullLayoutJson);
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_FullLayoutJson), (void*)il2cpp_codegen_marshal_string_result(marshaled.___m_FullLayoutJson));
|
|
}
|
|
IL2CPP_EXTERN_C void DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshal_pinvoke_cleanup(DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshaled_pinvoke& marshaled)
|
|
{
|
|
il2cpp_codegen_marshal_free(marshaled.___m_Layout);
|
|
marshaled.___m_Layout = NULL;
|
|
il2cpp_codegen_marshal_free(marshaled.___m_FullLayoutJson);
|
|
marshaled.___m_FullLayoutJson = NULL;
|
|
}
|
|
IL2CPP_EXTERN_C void DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshal_com(const DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52& unmarshaled, DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___m_DeviceId = unmarshaled.___m_DeviceId;
|
|
marshaled.___m_Layout = il2cpp_codegen_marshal_bstring(unmarshaled.___m_Layout);
|
|
marshaled.___m_StateFormat = unmarshaled.___m_StateFormat;
|
|
marshaled.___m_StateSizeInBytes = unmarshaled.___m_StateSizeInBytes;
|
|
marshaled.___m_FullLayoutJson = il2cpp_codegen_marshal_bstring(unmarshaled.___m_FullLayoutJson);
|
|
}
|
|
IL2CPP_EXTERN_C void DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshal_com_back(const DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshaled_com& marshaled, DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52& unmarshaled)
|
|
{
|
|
int32_t unmarshaledm_DeviceId_temp_0 = 0;
|
|
unmarshaledm_DeviceId_temp_0 = marshaled.___m_DeviceId;
|
|
unmarshaled.___m_DeviceId = unmarshaledm_DeviceId_temp_0;
|
|
unmarshaled.___m_Layout = il2cpp_codegen_marshal_bstring_result(marshaled.___m_Layout);
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_Layout), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___m_Layout));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED unmarshaledm_StateFormat_temp_2;
|
|
memset((&unmarshaledm_StateFormat_temp_2), 0, sizeof(unmarshaledm_StateFormat_temp_2));
|
|
unmarshaledm_StateFormat_temp_2 = marshaled.___m_StateFormat;
|
|
unmarshaled.___m_StateFormat = unmarshaledm_StateFormat_temp_2;
|
|
int32_t unmarshaledm_StateSizeInBytes_temp_3 = 0;
|
|
unmarshaledm_StateSizeInBytes_temp_3 = marshaled.___m_StateSizeInBytes;
|
|
unmarshaled.___m_StateSizeInBytes = unmarshaledm_StateSizeInBytes_temp_3;
|
|
unmarshaled.___m_FullLayoutJson = il2cpp_codegen_marshal_bstring_result(marshaled.___m_FullLayoutJson);
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___m_FullLayoutJson), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___m_FullLayoutJson));
|
|
}
|
|
IL2CPP_EXTERN_C void DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshal_com_cleanup(DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52_marshaled_com& marshaled)
|
|
{
|
|
il2cpp_codegen_marshal_free_bstring(marshaled.___m_Layout);
|
|
marshaled.___m_Layout = NULL;
|
|
il2cpp_codegen_marshal_free_bstring(marshaled.___m_FullLayoutJson);
|
|
marshaled.___m_FullLayoutJson = NULL;
|
|
}
|
|
// Method Definition Index: 25733
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DeviceInfo_get_deviceId_m1F56DCC1850CA1B775C357DA6D521F04EA74F0C6 (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1531>
|
|
int32_t L_0 = __this->___m_DeviceId;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t DeviceInfo_get_deviceId_m1F56DCC1850CA1B775C357DA6D521F04EA74F0C6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = DeviceInfo_get_deviceId_m1F56DCC1850CA1B775C357DA6D521F04EA74F0C6_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25734
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceInfo_set_deviceId_m76EE4AFBA1FA3FFACF2E017498621E66A819DEBD (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1532>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_DeviceId = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DeviceInfo_set_deviceId_m76EE4AFBA1FA3FFACF2E017498621E66A819DEBD_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52*>(__this + _offset);
|
|
DeviceInfo_set_deviceId_m76EE4AFBA1FA3FFACF2E017498621E66A819DEBD_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25735
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DeviceInfo_get_layout_mC531D6400FCF8EE7CCBE96D0DC9328BC0A5AC24C (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1541>
|
|
String_t* L_0 = __this->___m_Layout;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* DeviceInfo_get_layout_mC531D6400FCF8EE7CCBE96D0DC9328BC0A5AC24C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = DeviceInfo_get_layout_mC531D6400FCF8EE7CCBE96D0DC9328BC0A5AC24C_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25736
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceInfo_set_layout_mB0175279434FFE48B744FE2CA4800A1EF24B2D69 (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1542>
|
|
String_t* L_0 = ___0_value;
|
|
__this->___m_Layout = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Layout), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DeviceInfo_set_layout_mB0175279434FFE48B744FE2CA4800A1EF24B2D69_AdjustorThunk (RuntimeObject* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52*>(__this + _offset);
|
|
DeviceInfo_set_layout_mB0175279434FFE48B744FE2CA4800A1EF24B2D69_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25737
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceInfo_get_stateFormat_mA04A926E1277535752AC4117996C3B0F89D26916 (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1552>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = __this->___m_StateFormat;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceInfo_get_stateFormat_mA04A926E1277535752AC4117996C3B0F89D26916_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = DeviceInfo_get_stateFormat_mA04A926E1277535752AC4117996C3B0F89D26916_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25738
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceInfo_set_stateFormat_mFC8581D56C34FFCBF8264CFD61BA12CE56755478 (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1553>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = ___0_value;
|
|
__this->___m_StateFormat = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DeviceInfo_set_stateFormat_mFC8581D56C34FFCBF8264CFD61BA12CE56755478_AdjustorThunk (RuntimeObject* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_value, const RuntimeMethod* method)
|
|
{
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52*>(__this + _offset);
|
|
DeviceInfo_set_stateFormat_mFC8581D56C34FFCBF8264CFD61BA12CE56755478_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25739
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DeviceInfo_get_stateSizeInBytes_mD21A7DBF02B25079F7A1F1482AC2EFE5A86F5C9C (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1561>
|
|
int32_t L_0 = __this->___m_StateSizeInBytes;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t DeviceInfo_get_stateSizeInBytes_mD21A7DBF02B25079F7A1F1482AC2EFE5A86F5C9C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = DeviceInfo_get_stateSizeInBytes_mD21A7DBF02B25079F7A1F1482AC2EFE5A86F5C9C_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25740
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeviceInfo_set_stateSizeInBytes_m7D7507BD0D817A86E99E3E44E216B31855ED06B3 (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1562>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_StateSizeInBytes = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DeviceInfo_set_stateSizeInBytes_m7D7507BD0D817A86E99E3E44E216B31855ED06B3_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52*>(__this + _offset);
|
|
DeviceInfo_set_stateSizeInBytes_m7D7507BD0D817A86E99E3E44E216B31855ED06B3_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25741
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t StateEvent_get_stateSizeInBytes_m07E8E8D19DA4D9B58A23DC19680794764AE8FA21 (StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:34>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)(&__this->___baseEvent);
|
|
uint32_t L_1;
|
|
L_1 = InputEvent_get_sizeInBytes_m71B7FE5CF7674275875248208BB51161C90B9307(L_0, NULL);
|
|
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, ((int32_t)24)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint32_t StateEvent_get_stateSizeInBytes_m07E8E8D19DA4D9B58A23DC19680794764AE8FA21_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F*>(__this + _offset);
|
|
uint32_t _returnValue;
|
|
_returnValue = StateEvent_get_stateSizeInBytes_m07E8E8D19DA4D9B58A23DC19680794764AE8FA21(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25742
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* StateEvent_get_state_m4DE9A0A398BE8CBC86DF8FA13B75028B22B27C26 (StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* __this, const RuntimeMethod* method)
|
|
{
|
|
uint8_t* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:39>
|
|
U3CstateDataU3Ee__FixedBuffer_t00ED1E0C66E396C0021CE2F46B671748BC5E5FEC* L_0 = (U3CstateDataU3Ee__FixedBuffer_t00ED1E0C66E396C0021CE2F46B671748BC5E5FEC*)(&__this->___stateData);
|
|
uint8_t* L_1 = (uint8_t*)(&L_0->___FixedElementField);
|
|
V_0 = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:40>
|
|
uint8_t* L_2 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:42>
|
|
return (void*)(((uintptr_t)L_2));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void* StateEvent_get_state_m4DE9A0A398BE8CBC86DF8FA13B75028B22B27C26_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F*>(__this + _offset);
|
|
void* _returnValue;
|
|
_returnValue = StateEvent_get_state_m4DE9A0A398BE8CBC86DF8FA13B75028B22B27C26(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25743
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 StateEvent_ToEventPtr_mD3680659E169AB02E24D776602EDDE77369CE06D (StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* __this, const RuntimeMethod* method)
|
|
{
|
|
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* V_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:48>
|
|
V_0 = __this;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:49>
|
|
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* L_0 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:51>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline((&L_1), (InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5*)((uintptr_t)L_0), NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 StateEvent_ToEventPtr_mD3680659E169AB02E24D776602EDDE77369CE06D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F*>(__this + _offset);
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 _returnValue;
|
|
_returnValue = StateEvent_ToEventPtr_mD3680659E169AB02E24D776602EDDE77369CE06D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25744
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED StateEvent_get_typeStatic_m919C8D08A31FF49959788F03C2DADD67B763B0BB (StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:55>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1398030676), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED StateEvent_get_typeStatic_m919C8D08A31FF49959788F03C2DADD67B763B0BB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = StateEvent_get_typeStatic_m919C8D08A31FF49959788F03C2DADD67B763B0BB(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25748
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* StateEvent_From_m673CE00ED44EED4E56EF99C685FF0636E5B11F4D (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_ptr, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:121>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012((&___0_ptr), NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:122>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE493A589C92D423742E94550596D4C4E4B20CC33)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StateEvent_From_m673CE00ED44EED4E56EF99C685FF0636E5B11F4D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:123>
|
|
bool L_2;
|
|
L_2 = InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327((&___0_ptr), InputEventPtr_IsA_TisStateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F_mA9BDDBB4B234A924F74AB0343F6F3CFDBFF70327_RuntimeMethod_var);
|
|
if (L_2)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:124>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_3;
|
|
L_3 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69((&___0_ptr), NULL);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED_il2cpp_TypeInfo_var)), &L_4);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDC29674F226716B02549B8B392EB04F0D3FBEB76)), L_5, NULL);
|
|
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_7 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
|
|
InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StateEvent_From_m673CE00ED44EED4E56EF99C685FF0636E5B11F4D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:126>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_8 = ___0_ptr;
|
|
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* L_9;
|
|
L_9 = StateEvent_FromUnchecked_m2735488B081D9C8E972D4F2B6D80C044599BFB81(L_8, NULL);
|
|
return L_9;
|
|
}
|
|
}
|
|
// Method Definition Index: 25749
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* StateEvent_FromUnchecked_m2735488B081D9C8E972D4F2B6D80C044599BFB81 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_ptr, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:131>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0;
|
|
L_0 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&___0_ptr), NULL);
|
|
return (StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F*)(L_0);
|
|
}
|
|
}
|
|
// Method Definition Index: 25750
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF StateEvent_From_m3A895E1EFC3ACCC663394334EBAA2B6CEC08BC6E (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* ___1_eventPtr, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:149>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = ___0_device;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_1 = ___1_eventPtr;
|
|
int32_t L_2 = ___2_allocator;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_3;
|
|
L_3 = StateEvent_From_m1C02D0B7B693C47FFA472D23EF1F2CF0FBEA9AC9(L_0, L_1, L_2, (bool)0, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 25751
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF StateEvent_FromDefaultStateFor_m75B0A43DF9C0C010A531A4C0A525B58D3C879CBF (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* ___1_eventPtr, int32_t ___2_allocator, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:168>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = ___0_device;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_1 = ___1_eventPtr;
|
|
int32_t L_2 = ___2_allocator;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_3;
|
|
L_3 = StateEvent_From_m1C02D0B7B693C47FFA472D23EF1F2CF0FBEA9AC9(L_0, L_1, L_2, (bool)1, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// Method Definition Index: 25752
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF StateEvent_From_m1C02D0B7B693C47FFA472D23EF1F2CF0FBEA9AC9 (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* ___0_device, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* ___1_eventPtr, int32_t ___2_allocator, bool ___3_useDefaultState, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
uint32_t V_1 = 0;
|
|
uint32_t V_2 = 0;
|
|
uint8_t* V_3 = NULL;
|
|
uint32_t V_4 = 0;
|
|
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* V_5 = NULL;
|
|
void* G_B7_0 = NULL;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:173>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = ___0_device;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:174>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StateEvent_From_m1C02D0B7B693C47FFA472D23EF1F2CF0FBEA9AC9_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:175>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_2 = ___0_device;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = InputDevice_get_added_m27CF78B0777E142AAF9139ABFD88F67BBAABA15C(L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:176>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:177>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_4 = ___0_device;
|
|
String_t* L_5;
|
|
L_5 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral336A688B6B40BC4C1AF41D269266485DC8485E3B)), L_4, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_6, L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE847FDE91DE0DA95AFBA0EEF52C90BEB4CE621BF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StateEvent_From_m1C02D0B7B693C47FFA472D23EF1F2CF0FBEA9AC9_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:179>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_7 = ___0_device;
|
|
NullCheck(L_7);
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_8 = (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5*)(&((InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E*)L_7)->___m_StateBlock);
|
|
il2cpp_codegen_runtime_class_init_inline(InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5_il2cpp_TypeInfo_var);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_9;
|
|
L_9 = InputStateBlock_get_format_mA393354EDC4A58DDCBE0990902A49E0A22F15F86_inline(L_8, NULL);
|
|
V_0 = L_9;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:180>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_10 = ___0_device;
|
|
NullCheck(L_10);
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_11 = (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5*)(&((InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E*)L_10)->___m_StateBlock);
|
|
uint32_t L_12;
|
|
L_12 = InputStateBlock_get_alignedSizeInBytes_mF360E8CFBEE9BE05FC7DFA3533E069A5A96827F5(L_11, NULL);
|
|
V_1 = L_12;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:181>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_13 = ___0_device;
|
|
NullCheck(L_13);
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* L_14 = (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5*)(&((InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E*)L_13)->___m_StateBlock);
|
|
uint32_t L_15;
|
|
L_15 = InputStateBlock_get_byteOffset_m6EADE5C9C8B346D38E543E38777ED67ED2AEA0AC_inline(L_14, NULL);
|
|
V_2 = L_15;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:182>
|
|
bool L_16 = ___3_useDefaultState;
|
|
if (L_16)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_17 = ___0_device;
|
|
NullCheck(L_17);
|
|
void* L_18;
|
|
L_18 = InputControl_get_currentStatePtr_m77D2900EEE4AAB505C98292AF8538DDCF44F8C3C(L_17, NULL);
|
|
G_B7_0 = L_18;
|
|
goto IL_0061;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_19 = ___0_device;
|
|
NullCheck(L_19);
|
|
void* L_20;
|
|
L_20 = InputControl_get_defaultStatePtr_m0AB5C2504696867BAC98126C4A352141389C3160_inline(L_19, NULL);
|
|
G_B7_0 = L_20;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
uint32_t L_21 = V_2;
|
|
V_3 = (uint8_t*)((void*)il2cpp_codegen_add((intptr_t)G_B7_0, (int32_t)L_21));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:183>
|
|
uint32_t L_22 = V_1;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(((int32_t)24), (int32_t)L_22));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:185>
|
|
uint32_t L_23 = V_4;
|
|
uint32_t L_24;
|
|
L_24 = NumberHelpers_AlignToMultipleOf_m44B66C972BC1F508B9022564F265D1AA6A001AAE_inline(L_23, 4, NULL);
|
|
int32_t L_25 = ___2_allocator;
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_26;
|
|
memset((&L_26), 0, sizeof(L_26));
|
|
NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F((&L_26), L_24, L_25, 1, NativeArray_1__ctor_m981CC7E27B6C9946024877F2696920951443B04F_RuntimeMethod_var);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:186>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_27 = L_26;
|
|
void* L_28;
|
|
L_28 = NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2(L_27, NativeArrayUnsafeUtility_GetUnsafePtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m8CFDB2DF56E810A2E2FB3686AF676FCAC65AFCC2_RuntimeMethod_var);
|
|
V_5 = (StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F*)L_28;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:188>
|
|
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* L_29 = V_5;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_30;
|
|
L_30 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1398030676), NULL);
|
|
uint32_t L_31 = V_4;
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_32 = ___0_device;
|
|
NullCheck(L_32);
|
|
int32_t L_33;
|
|
L_33 = InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline(L_32, NULL);
|
|
RuntimeObject* L_34 = ((InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_StaticFields*)il2cpp_codegen_static_fields_for(InputRuntime_t225BBC258A47D8CC1DE6C04E13FB51C375EEB4C3_il2cpp_TypeInfo_var))->___s_Instance;
|
|
NullCheck(L_34);
|
|
double L_35;
|
|
L_35 = InterfaceFuncInvoker0< double >::Invoke(19, IInputRuntime_t97E0310F85D952B7B42F6FEB50A1C8D88A0C0C09_il2cpp_TypeInfo_var, L_34);
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_36;
|
|
memset((&L_36), 0, sizeof(L_36));
|
|
InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924((&L_36), L_30, L_31, L_33, L_35, NULL);
|
|
NullCheck(L_29);
|
|
L_29->___baseEvent = L_36;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:189>
|
|
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* L_37 = V_5;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_38 = V_0;
|
|
NullCheck(L_37);
|
|
L_37->___stateFormat = L_38;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:191>
|
|
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* L_39 = V_5;
|
|
void* L_40;
|
|
L_40 = StateEvent_get_state_m4DE9A0A398BE8CBC86DF8FA13B75028B22B27C26((StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F*)L_39, NULL);
|
|
uint8_t* L_41 = V_3;
|
|
uint32_t L_42 = V_1;
|
|
UnsafeUtility_MemCpy_m5CEA91ACDADC522E584AE3A2AB2B0B74393A9177(L_40, (void*)L_41, ((int64_t)(uint64_t)((uint32_t)L_42)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:193>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* L_43 = ___1_eventPtr;
|
|
StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F* L_44 = V_5;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_45;
|
|
L_45 = StateEvent_ToEventPtr_mD3680659E169AB02E24D776602EDDE77369CE06D((StateEvent_tB93D5F08B084A2BC9FFC71B084409DBBD2516C0F*)L_44, NULL);
|
|
*(InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0*)L_43 = L_45;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/StateEvent.cs:194>
|
|
return L_27;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25753
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TextEvent_get_typeStatic_m1140CC664806484A029BEACF8E85E2EA41DB0CD0 (TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:31>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1413830740), NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED TextEvent_get_typeStatic_m1140CC664806484A029BEACF8E85E2EA41DB0CD0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E*>(__this + _offset);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED _returnValue;
|
|
_returnValue = TextEvent_get_typeStatic_m1140CC664806484A029BEACF8E85E2EA41DB0CD0(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25754
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E* TextEvent_From_m392E7397CAB8204770ABAD76324B9182EBA20469 (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventPtr_IsA_TisTextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E_m01CE0B6701368BD1BFDB10DE3162AF9A3D413B8A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:35>
|
|
bool L_0;
|
|
L_0 = InputEventPtr_get_valid_m27705F3E3203539F9C0C5857F48DCC35EC158012((&___0_eventPtr), NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:36>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBA67382D61289B0EDBD1CD867DE673562B9B5111)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TextEvent_From_m392E7397CAB8204770ABAD76324B9182EBA20469_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:37>
|
|
bool L_2;
|
|
L_2 = InputEventPtr_IsA_TisTextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E_m01CE0B6701368BD1BFDB10DE3162AF9A3D413B8A((&___0_eventPtr), InputEventPtr_IsA_TisTextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E_m01CE0B6701368BD1BFDB10DE3162AF9A3D413B8A_RuntimeMethod_var);
|
|
if (L_2)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:38>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:39>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_3;
|
|
L_3 = InputEventPtr_get_type_m15241E84546FBC6172CF80B8E0D4EDA9B0FABC69((&___0_eventPtr), NULL);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED_il2cpp_TypeInfo_var)), &L_4);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5C199811F186FA928A800B2EFB80A1C7498DA9B5)), L_5, NULL);
|
|
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_7 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)));
|
|
InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TextEvent_From_m392E7397CAB8204770ABAD76324B9182EBA20469_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:41>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_8;
|
|
L_8 = InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline((&___0_eventPtr), NULL);
|
|
return (TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E*)(L_8);
|
|
}
|
|
}
|
|
// Method Definition Index: 25755
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E TextEvent_Create_mA0C940CB8C8A2FC03C256F6D7A63511D8F0FB1F4 (int32_t ___0_deviceId, Il2CppChar ___1_character, double ___2_time, const RuntimeMethod* method)
|
|
{
|
|
TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:47>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:48>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:49>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:50>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:51>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1413830740), NULL);
|
|
int32_t L_1 = ___0_deviceId;
|
|
double L_2 = ___2_time;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924((&L_3), L_0, ((int32_t)24), L_1, L_2, NULL);
|
|
(&V_0)->___baseEvent = L_3;
|
|
Il2CppChar L_4 = ___1_character;
|
|
(&V_0)->___character = L_4;
|
|
TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E L_5 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:52>
|
|
return L_5;
|
|
}
|
|
}
|
|
// Method Definition Index: 25756
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E TextEvent_Create_mAF268A3F6F1E4D0B69B719EC71A26C3E39965DFF (int32_t ___0_deviceId, int32_t ___1_character, double ___2_time, const RuntimeMethod* method)
|
|
{
|
|
TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:57>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:58>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:59>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:60>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:61>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E));
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0;
|
|
L_0 = FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline(((int32_t)1413830740), NULL);
|
|
int32_t L_1 = ___0_deviceId;
|
|
double L_2 = ___2_time;
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5 L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
InputEvent__ctor_mC37410F819784AAFC4D2A58C104E0F093E932924((&L_3), L_0, ((int32_t)24), L_1, L_2, NULL);
|
|
(&V_0)->___baseEvent = L_3;
|
|
int32_t L_4 = ___1_character;
|
|
(&V_0)->___character = L_4;
|
|
TextEvent_tF73CB03EDB372F136C2771DD4C35D1450CD5089E L_5 = V_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/TextEvent.cs:62>
|
|
return L_5;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
void InputUpdateDelegate_Invoke_m1E6E6B61C1F41C34A6E36AF210BF56197583256A_Multicast(InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* __this, int32_t ___0_updateType, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___1_eventBuffer, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_array_size_t length = __this->___delegates->max_length;
|
|
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* currentDelegate = reinterpret_cast<InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55*>(delegatesToInvoke[i]);
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*, const RuntimeMethod*);
|
|
((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_updateType, ___1_eventBuffer, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
|
|
}
|
|
}
|
|
void InputUpdateDelegate_Invoke_m1E6E6B61C1F41C34A6E36AF210BF56197583256A_OpenInst(InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* __this, int32_t ___0_updateType, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___1_eventBuffer, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (int32_t, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___method_ptr)(___0_updateType, ___1_eventBuffer, method);
|
|
}
|
|
void InputUpdateDelegate_Invoke_m1E6E6B61C1F41C34A6E36AF210BF56197583256A_OpenStatic(InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* __this, int32_t ___0_updateType, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___1_eventBuffer, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (int32_t, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___method_ptr)(___0_updateType, ___1_eventBuffer, method);
|
|
}
|
|
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55 (InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* __this, int32_t ___0_updateType, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___1_eventBuffer, const RuntimeMethod* method)
|
|
{
|
|
|
|
|
|
typedef void (DEFAULT_CALL *PInvokeFunc)(int32_t, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke*);
|
|
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke* ____1_eventBuffer_marshaled = NULL;
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshaled_pinvoke ____1_eventBuffer_marshaled_dereferenced = {};
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke(*___1_eventBuffer, ____1_eventBuffer_marshaled_dereferenced);
|
|
____1_eventBuffer_marshaled = &____1_eventBuffer_marshaled_dereferenced;
|
|
|
|
il2cppPInvokeFunc(___0_updateType, ____1_eventBuffer_marshaled);
|
|
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE _____1_eventBuffer_marshaled_unmarshaled_dereferenced;
|
|
memset((&_____1_eventBuffer_marshaled_unmarshaled_dereferenced), 0, sizeof(_____1_eventBuffer_marshaled_unmarshaled_dereferenced));
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_back(*____1_eventBuffer_marshaled, _____1_eventBuffer_marshaled_unmarshaled_dereferenced);
|
|
InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_marshal_pinvoke_cleanup(*____1_eventBuffer_marshaled);
|
|
*___1_eventBuffer = _____1_eventBuffer_marshaled_unmarshaled_dereferenced;
|
|
|
|
}
|
|
// Method Definition Index: 25757
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputUpdateDelegate__ctor_m3B042EEEB64F60473356D68735482D18DC72BE8A (InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
__this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
|
|
__this->___method = ___1_method;
|
|
__this->___m_target = ___0_object;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
|
|
int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
|
|
__this->___method_code = (intptr_t)__this;
|
|
if (MethodIsStatic((RuntimeMethod*)___1_method))
|
|
{
|
|
bool isOpen = parameterCount == 2;
|
|
if (isOpen)
|
|
__this->___invoke_impl = (intptr_t)&InputUpdateDelegate_Invoke_m1E6E6B61C1F41C34A6E36AF210BF56197583256A_OpenStatic;
|
|
else
|
|
{
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (___0_object == NULL)
|
|
il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
__this->___extra_arg = (intptr_t)&InputUpdateDelegate_Invoke_m1E6E6B61C1F41C34A6E36AF210BF56197583256A_Multicast;
|
|
}
|
|
// Method Definition Index: 25758
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputUpdateDelegate_Invoke_m1E6E6B61C1F41C34A6E36AF210BF56197583256A (InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* __this, int32_t ___0_updateType, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___1_eventBuffer, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_updateType, ___1_eventBuffer, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 25759
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InputUpdateDelegate_BeginInvoke_m8D3AF780E439E287A0F878BF199F9D29C82BB5CC (InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* __this, int32_t ___0_updateType, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___1_eventBuffer, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___2_callback, RuntimeObject* ___3_object, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputUpdateType_t31A66F5342D924983382FA675EF78007C04EC590_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
void *__d_args[3] = {0};
|
|
__d_args[0] = Box(InputUpdateType_t31A66F5342D924983382FA675EF78007C04EC590_il2cpp_TypeInfo_var, &___0_updateType);
|
|
__d_args[1] = Box(InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE_il2cpp_TypeInfo_var, &*___1_eventBuffer);
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___2_callback, (RuntimeObject*)___3_object);
|
|
}
|
|
// Method Definition Index: 25760
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputUpdateDelegate_EndInvoke_mBF3D556902AD150E226D2E09CEF43C648F54DE3D (InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* __this, InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* ___0_eventBuffer, RuntimeObject* ___1_result, const RuntimeMethod* method)
|
|
{
|
|
void* ___out_args[] = {
|
|
___0_eventBuffer,
|
|
};
|
|
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___1_result, ___out_args);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25792
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputMetrics_get_maxNumDevices_m0FEEC51F3510A61C081B4C4159FD4453CC847428 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:20>
|
|
int32_t L_0 = __this->___U3CmaxNumDevicesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputMetrics_get_maxNumDevices_m0FEEC51F3510A61C081B4C4159FD4453CC847428_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputMetrics_get_maxNumDevices_m0FEEC51F3510A61C081B4C4159FD4453CC847428_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25793
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputMetrics_set_maxNumDevices_m9F11EC470346A3CB0048D2DAE5B38E3344E51C08 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:20>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CmaxNumDevicesU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputMetrics_set_maxNumDevices_m9F11EC470346A3CB0048D2DAE5B38E3344E51C08_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
InputMetrics_set_maxNumDevices_m9F11EC470346A3CB0048D2DAE5B38E3344E51C08_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25794
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentNumDevices_m95D2F0878FD22AFB147019A4511CEA6856FAFB45 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:26>
|
|
int32_t L_0 = __this->___U3CcurrentNumDevicesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputMetrics_get_currentNumDevices_m95D2F0878FD22AFB147019A4511CEA6856FAFB45_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputMetrics_get_currentNumDevices_m95D2F0878FD22AFB147019A4511CEA6856FAFB45_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25795
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputMetrics_set_currentNumDevices_m548C2BF7385931D42DD8FF22BB010FF602AC14EA (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:26>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CcurrentNumDevicesU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputMetrics_set_currentNumDevices_m548C2BF7385931D42DD8FF22BB010FF602AC14EA_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
InputMetrics_set_currentNumDevices_m548C2BF7385931D42DD8FF22BB010FF602AC14EA_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25796
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputMetrics_get_maxStateSizeInBytes_m105BD2DF857955095D11D617F738350B638C4EF2 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:31>
|
|
int32_t L_0 = __this->___U3CmaxStateSizeInBytesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputMetrics_get_maxStateSizeInBytes_m105BD2DF857955095D11D617F738350B638C4EF2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputMetrics_get_maxStateSizeInBytes_m105BD2DF857955095D11D617F738350B638C4EF2_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25797
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputMetrics_set_maxStateSizeInBytes_m31330B150C4D44C95E79B2BCF9AC422E9D3CD105 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:31>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CmaxStateSizeInBytesU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputMetrics_set_maxStateSizeInBytes_m31330B150C4D44C95E79B2BCF9AC422E9D3CD105_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
InputMetrics_set_maxStateSizeInBytes_m31330B150C4D44C95E79B2BCF9AC422E9D3CD105_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25798
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentStateSizeInBytes_mF8F8501666ADFA81A4BD4DF71F8E27847B0D6EA5 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:36>
|
|
int32_t L_0 = __this->___U3CcurrentStateSizeInBytesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputMetrics_get_currentStateSizeInBytes_mF8F8501666ADFA81A4BD4DF71F8E27847B0D6EA5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputMetrics_get_currentStateSizeInBytes_mF8F8501666ADFA81A4BD4DF71F8E27847B0D6EA5_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25799
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputMetrics_set_currentStateSizeInBytes_m9BBDBBD4A727B654A36F2396F40DB4D0E137CD7D (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:36>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CcurrentStateSizeInBytesU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputMetrics_set_currentStateSizeInBytes_m9BBDBBD4A727B654A36F2396F40DB4D0E137CD7D_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
InputMetrics_set_currentStateSizeInBytes_m9BBDBBD4A727B654A36F2396F40DB4D0E137CD7D_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25800
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentControlCount_mEBDE0B72A6A56819D2BBA87394C386EECEBD78F3 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:42>
|
|
int32_t L_0 = __this->___U3CcurrentControlCountU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputMetrics_get_currentControlCount_mEBDE0B72A6A56819D2BBA87394C386EECEBD78F3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputMetrics_get_currentControlCount_mEBDE0B72A6A56819D2BBA87394C386EECEBD78F3_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25801
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputMetrics_set_currentControlCount_mDF1F18CB6B69696C953510A4FE58C87D6FA72729 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:42>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CcurrentControlCountU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputMetrics_set_currentControlCount_mDF1F18CB6B69696C953510A4FE58C87D6FA72729_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
InputMetrics_set_currentControlCount_mDF1F18CB6B69696C953510A4FE58C87D6FA72729_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25802
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentLayoutCount_m69DC513C2784189A9B3F214A3332DD9DC352A528 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:47>
|
|
int32_t L_0 = __this->___U3CcurrentLayoutCountU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputMetrics_get_currentLayoutCount_m69DC513C2784189A9B3F214A3332DD9DC352A528_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputMetrics_get_currentLayoutCount_m69DC513C2784189A9B3F214A3332DD9DC352A528_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25803
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputMetrics_set_currentLayoutCount_m43BD6E6E44CA3DF2C58AC09B180F83DEC5FDAF4A (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:47>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CcurrentLayoutCountU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputMetrics_set_currentLayoutCount_m43BD6E6E44CA3DF2C58AC09B180F83DEC5FDAF4A_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
InputMetrics_set_currentLayoutCount_m43BD6E6E44CA3DF2C58AC09B180F83DEC5FDAF4A_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25804
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputMetrics_get_totalEventBytes_m04F4BFD498777335799D63A81C29AA97143CC13B (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:52>
|
|
int32_t L_0 = __this->___U3CtotalEventBytesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputMetrics_get_totalEventBytes_m04F4BFD498777335799D63A81C29AA97143CC13B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputMetrics_get_totalEventBytes_m04F4BFD498777335799D63A81C29AA97143CC13B_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25805
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventBytes_m3E9A896A75E1A57ABA893EA1F63E98E041D404ED (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:52>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CtotalEventBytesU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputMetrics_set_totalEventBytes_m3E9A896A75E1A57ABA893EA1F63E98E041D404ED_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
InputMetrics_set_totalEventBytes_m3E9A896A75E1A57ABA893EA1F63E98E041D404ED_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25806
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputMetrics_get_totalEventCount_m2EA373AAB2B4975C2BBAE3C37DA78946BB5BD0D0 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:57>
|
|
int32_t L_0 = __this->___U3CtotalEventCountU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputMetrics_get_totalEventCount_m2EA373AAB2B4975C2BBAE3C37DA78946BB5BD0D0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputMetrics_get_totalEventCount_m2EA373AAB2B4975C2BBAE3C37DA78946BB5BD0D0_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25807
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventCount_mE8188B2A42002E32190B8981B2B5D2D08A95DBE5 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:57>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CtotalEventCountU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputMetrics_set_totalEventCount_mE8188B2A42002E32190B8981B2B5D2D08A95DBE5_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
InputMetrics_set_totalEventCount_mE8188B2A42002E32190B8981B2B5D2D08A95DBE5_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25808
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputMetrics_get_totalUpdateCount_mCF84FB729C509B5D85A54EA1A6AC36980ED2CC61 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:63>
|
|
int32_t L_0 = __this->___U3CtotalUpdateCountU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t InputMetrics_get_totalUpdateCount_mCF84FB729C509B5D85A54EA1A6AC36980ED2CC61_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = InputMetrics_get_totalUpdateCount_mCF84FB729C509B5D85A54EA1A6AC36980ED2CC61_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25809
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputMetrics_set_totalUpdateCount_mF43ADDD579F92E2727B55A6E10B578180C2019C2 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:63>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CtotalUpdateCountU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputMetrics_set_totalUpdateCount_mF43ADDD579F92E2727B55A6E10B578180C2019C2_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
InputMetrics_set_totalUpdateCount_mF43ADDD579F92E2727B55A6E10B578180C2019C2_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25810
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputMetrics_get_totalEventProcessingTime_mCF205D2B52FA9BC1E869BA7A6039FC0E712DABE3 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:73>
|
|
double L_0 = __this->___U3CtotalEventProcessingTimeU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C double InputMetrics_get_totalEventProcessingTime_mCF205D2B52FA9BC1E869BA7A6039FC0E712DABE3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
double _returnValue;
|
|
_returnValue = InputMetrics_get_totalEventProcessingTime_mCF205D2B52FA9BC1E869BA7A6039FC0E712DABE3_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25811
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventProcessingTime_m1C75FA1C698121B1A1C5BE0044264CCAA0304732 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:73>
|
|
double L_0 = ___0_value;
|
|
__this->___U3CtotalEventProcessingTimeU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputMetrics_set_totalEventProcessingTime_m1C75FA1C698121B1A1C5BE0044264CCAA0304732_AdjustorThunk (RuntimeObject* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
InputMetrics_set_totalEventProcessingTime_m1C75FA1C698121B1A1C5BE0044264CCAA0304732_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25812
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputMetrics_get_totalEventLagTime_m70516750050E2D62430DB62B5D6E2EB22697C1E6 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:79>
|
|
double L_0 = __this->___U3CtotalEventLagTimeU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C double InputMetrics_get_totalEventLagTime_m70516750050E2D62430DB62B5D6E2EB22697C1E6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
double _returnValue;
|
|
_returnValue = InputMetrics_get_totalEventLagTime_m70516750050E2D62430DB62B5D6E2EB22697C1E6_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25813
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventLagTime_m486CE7F87D0221E5829B6D7BDE37837CB3D239F4 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:79>
|
|
double L_0 = ___0_value;
|
|
__this->___U3CtotalEventLagTimeU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void InputMetrics_set_totalEventLagTime_m486CE7F87D0221E5829B6D7BDE37837CB3D239F4_AdjustorThunk (RuntimeObject* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
InputMetrics_set_totalEventLagTime_m486CE7F87D0221E5829B6D7BDE37837CB3D239F4_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25814
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float InputMetrics_get_averageEventBytesPerFrame_m3B35751312B79976908CAA27A8F8E9DB387E3DB8 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:84>
|
|
int32_t L_0;
|
|
L_0 = InputMetrics_get_totalEventBytes_m04F4BFD498777335799D63A81C29AA97143CC13B_inline(__this, NULL);
|
|
int32_t L_1;
|
|
L_1 = InputMetrics_get_totalUpdateCount_mCF84FB729C509B5D85A54EA1A6AC36980ED2CC61_inline(__this, NULL);
|
|
return ((float)(((float)L_0)/((float)L_1)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float InputMetrics_get_averageEventBytesPerFrame_m3B35751312B79976908CAA27A8F8E9DB387E3DB8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = InputMetrics_get_averageEventBytesPerFrame_m3B35751312B79976908CAA27A8F8E9DB387E3DB8(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25815
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputMetrics_get_averageProcessingTimePerEvent_m2A93733786AB9DD394CD35F52B3E3BD5B9307020 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:92>
|
|
double L_0;
|
|
L_0 = InputMetrics_get_totalEventProcessingTime_mCF205D2B52FA9BC1E869BA7A6039FC0E712DABE3_inline(__this, NULL);
|
|
int32_t L_1;
|
|
L_1 = InputMetrics_get_totalEventCount_m2EA373AAB2B4975C2BBAE3C37DA78946BB5BD0D0_inline(__this, NULL);
|
|
return ((double)(L_0/((double)L_1)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C double InputMetrics_get_averageProcessingTimePerEvent_m2A93733786AB9DD394CD35F52B3E3BD5B9307020_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
double _returnValue;
|
|
_returnValue = InputMetrics_get_averageProcessingTimePerEvent_m2A93733786AB9DD394CD35F52B3E3BD5B9307020(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25816
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double InputMetrics_get_averageLagTimePerEvent_mE4CDD4A599B33E03A76F2E75E1CECDBED08115C7 (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:98>
|
|
double L_0;
|
|
L_0 = InputMetrics_get_totalEventLagTime_m70516750050E2D62430DB62B5D6E2EB22697C1E6_inline(__this, NULL);
|
|
int32_t L_1;
|
|
L_1 = InputMetrics_get_totalEventCount_m2EA373AAB2B4975C2BBAE3C37DA78946BB5BD0D0_inline(__this, NULL);
|
|
return ((double)(L_0/((double)L_1)));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C double InputMetrics_get_averageLagTimePerEvent_mE4CDD4A599B33E03A76F2E75E1CECDBED08115C7_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338*>(__this + _offset);
|
|
double _returnValue;
|
|
_returnValue = InputMetrics_get_averageLagTimePerEvent_mE4CDD4A599B33E03A76F2E75E1CECDBED08115C7(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25817
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputUpdate_OnBeforeUpdate_mFA52E401CB450644C86ED0BF541778F87C25C350 (int32_t ___0_type, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:119>
|
|
int32_t L_0 = ___0_type;
|
|
((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_LatestUpdateType = L_0;
|
|
int32_t L_1 = ___0_type;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, 1))) > ((uint32_t)1))))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___0_type;
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)16)))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:125>
|
|
UpdateStepCount_OnBeforeUpdate_m064BE8C6A6E25B934C7CD9B81514C3A61376E002((&((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_PlayerUpdateStepCount), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:126>
|
|
uint32_t L_3;
|
|
L_3 = UpdateStepCount_get_value_m939CB192D174FC917F8ABE9E05FEC308BFCDB459_inline((&((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_PlayerUpdateStepCount), NULL);
|
|
((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_UpdateStepCount = L_3;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:138>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25818
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputUpdate_OnUpdate_mD8BE4B7923DCD47BD219EF00C83EB5D7238611C7 (int32_t ___0_type, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:142>
|
|
int32_t L_0 = ___0_type;
|
|
((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_LatestUpdateType = L_0;
|
|
int32_t L_1 = ___0_type;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, 1))) > ((uint32_t)1))))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___0_type;
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)16)))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:148>
|
|
UpdateStepCount_OnUpdate_m7E993B061FBF276567B5004742BED2443F2D1426((&((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_PlayerUpdateStepCount), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:149>
|
|
uint32_t L_3;
|
|
L_3 = UpdateStepCount_get_value_m939CB192D174FC917F8ABE9E05FEC308BFCDB459_inline((&((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_PlayerUpdateStepCount), NULL);
|
|
((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_UpdateStepCount = L_3;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:161>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25819
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026 InputUpdate_Save_m6214BF2D6F1760F25E62E16A373C3604B8DCC1B3 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:174>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:175>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:176>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:177>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:178>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:179>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:180>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:181>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:182>
|
|
il2cpp_codegen_initobj((&V_0), sizeof(SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026));
|
|
int32_t L_0 = ((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_LatestUpdateType;
|
|
(&V_0)->___lastUpdateType = L_0;
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324 L_1 = ((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_PlayerUpdateStepCount;
|
|
(&V_0)->___playerUpdateStepCount = L_1;
|
|
SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026 L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 25820
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputUpdate_Restore_m71BD8B07EC8C07C82F8DA7DDFCA5B7330AADDB9D (SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026 ___0_state, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:187>
|
|
SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026 L_0 = ___0_state;
|
|
int32_t L_1 = L_0.___lastUpdateType;
|
|
((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_LatestUpdateType = L_1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:188>
|
|
SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026 L_2 = ___0_state;
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324 L_3 = L_2.___playerUpdateStepCount;
|
|
((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_PlayerUpdateStepCount = L_3;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:194>
|
|
int32_t L_4 = ((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_LatestUpdateType;
|
|
V_0 = L_4;
|
|
int32_t L_5 = V_0;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_5, 1))) > ((uint32_t)1))))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_0;
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)16)))))
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:199>
|
|
uint32_t L_7;
|
|
L_7 = UpdateStepCount_get_value_m939CB192D174FC917F8ABE9E05FEC308BFCDB459_inline((&((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_PlayerUpdateStepCount), NULL);
|
|
((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_UpdateStepCount = L_7;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:200>
|
|
return;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:208>
|
|
((InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_StaticFields*)il2cpp_codegen_static_fields_for(InputUpdate_t3D4F0AD6CD83C86A73B8165929FF0CB151A07CCD_il2cpp_TypeInfo_var))->___s_UpdateStepCount = 0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:211>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25821
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputUpdate_GetUpdateTypeForPlayer_m6077A2E346925FCB56E1554E12DA16F45B3F252A (int32_t ___0_mask, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:215>
|
|
int32_t L_0 = ___0_mask;
|
|
if (!((int32_t)((int32_t)L_0&((int32_t)16))))
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:216>
|
|
return (int32_t)(((int32_t)16));
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:218>
|
|
int32_t L_1 = ___0_mask;
|
|
if (!((int32_t)((int32_t)L_1&1)))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:219>
|
|
return (int32_t)(1);
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:221>
|
|
int32_t L_2 = ___0_mask;
|
|
if (!((int32_t)((int32_t)L_2&2)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:222>
|
|
return (int32_t)(2);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:224>
|
|
return (int32_t)(0);
|
|
}
|
|
}
|
|
// Method Definition Index: 25822
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InputUpdate_IsPlayerUpdate_m1742D058C11228F0B2FC3F35A7B42883D6BCD2C4 (int32_t ___0_updateType, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:229>
|
|
int32_t L_0 = ___0_updateType;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)8))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:230>
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:231>
|
|
int32_t L_1 = ___0_updateType;
|
|
return (bool)((!(((uint32_t)L_1) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C void UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_pinvoke(const UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324& unmarshaled, UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___m_WasUpdated = static_cast<int32_t>(unmarshaled.___m_WasUpdated);
|
|
marshaled.___U3CvalueU3Ek__BackingField = unmarshaled.___U3CvalueU3Ek__BackingField;
|
|
}
|
|
IL2CPP_EXTERN_C void UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_pinvoke_back(const UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_pinvoke& marshaled, UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324& unmarshaled)
|
|
{
|
|
bool unmarshaledm_WasUpdated_temp_0 = false;
|
|
unmarshaledm_WasUpdated_temp_0 = static_cast<bool>(marshaled.___m_WasUpdated);
|
|
unmarshaled.___m_WasUpdated = unmarshaledm_WasUpdated_temp_0;
|
|
uint32_t unmarshaledU3CvalueU3Ek__BackingField_temp_1 = 0;
|
|
unmarshaledU3CvalueU3Ek__BackingField_temp_1 = marshaled.___U3CvalueU3Ek__BackingField;
|
|
unmarshaled.___U3CvalueU3Ek__BackingField = unmarshaledU3CvalueU3Ek__BackingField_temp_1;
|
|
}
|
|
IL2CPP_EXTERN_C void UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_pinvoke_cleanup(UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
IL2CPP_EXTERN_C void UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_com(const UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324& unmarshaled, UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___m_WasUpdated = static_cast<int32_t>(unmarshaled.___m_WasUpdated);
|
|
marshaled.___U3CvalueU3Ek__BackingField = unmarshaled.___U3CvalueU3Ek__BackingField;
|
|
}
|
|
IL2CPP_EXTERN_C void UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_com_back(const UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_com& marshaled, UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324& unmarshaled)
|
|
{
|
|
bool unmarshaledm_WasUpdated_temp_0 = false;
|
|
unmarshaledm_WasUpdated_temp_0 = static_cast<bool>(marshaled.___m_WasUpdated);
|
|
unmarshaled.___m_WasUpdated = unmarshaledm_WasUpdated_temp_0;
|
|
uint32_t unmarshaledU3CvalueU3Ek__BackingField_temp_1 = 0;
|
|
unmarshaledU3CvalueU3Ek__BackingField_temp_1 = marshaled.___U3CvalueU3Ek__BackingField;
|
|
unmarshaled.___U3CvalueU3Ek__BackingField = unmarshaledU3CvalueU3Ek__BackingField_temp_1;
|
|
}
|
|
IL2CPP_EXTERN_C void UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_com_cleanup(UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// Method Definition Index: 25823
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UpdateStepCount_get_value_m939CB192D174FC917F8ABE9E05FEC308BFCDB459 (UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:89>
|
|
uint32_t L_0 = __this->___U3CvalueU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C uint32_t UpdateStepCount_get_value_m939CB192D174FC917F8ABE9E05FEC308BFCDB459_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324*>(__this + _offset);
|
|
uint32_t _returnValue;
|
|
_returnValue = UpdateStepCount_get_value_m939CB192D174FC917F8ABE9E05FEC308BFCDB459_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// Method Definition Index: 25824
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UpdateStepCount_set_value_m94BD09FB80BCEAA8211533A7391D3708C19AF60A (UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324* __this, uint32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:89>
|
|
uint32_t L_0 = ___0_value;
|
|
__this->___U3CvalueU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void UpdateStepCount_set_value_m94BD09FB80BCEAA8211533A7391D3708C19AF60A_AdjustorThunk (RuntimeObject* __this, uint32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324*>(__this + _offset);
|
|
UpdateStepCount_set_value_m94BD09FB80BCEAA8211533A7391D3708C19AF60A_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// Method Definition Index: 25825
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UpdateStepCount_OnBeforeUpdate_m064BE8C6A6E25B934C7CD9B81514C3A61376E002 (UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324* __this, const RuntimeMethod* method)
|
|
{
|
|
uint32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:93>
|
|
__this->___m_WasUpdated = (bool)1;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:94>
|
|
uint32_t L_0;
|
|
L_0 = UpdateStepCount_get_value_m939CB192D174FC917F8ABE9E05FEC308BFCDB459_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
uint32_t L_1 = V_0;
|
|
UpdateStepCount_set_value_m94BD09FB80BCEAA8211533A7391D3708C19AF60A_inline(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_1, 1)), NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:95>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void UpdateStepCount_OnBeforeUpdate_m064BE8C6A6E25B934C7CD9B81514C3A61376E002_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324*>(__this + _offset);
|
|
UpdateStepCount_OnBeforeUpdate_m064BE8C6A6E25B934C7CD9B81514C3A61376E002(_thisAdjusted, method);
|
|
}
|
|
// Method Definition Index: 25826
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UpdateStepCount_OnUpdate_m7E993B061FBF276567B5004742BED2443F2D1426 (UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324* __this, const RuntimeMethod* method)
|
|
{
|
|
uint32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:100>
|
|
bool L_0 = __this->___m_WasUpdated;
|
|
if (L_0)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:101>
|
|
uint32_t L_1;
|
|
L_1 = UpdateStepCount_get_value_m939CB192D174FC917F8ABE9E05FEC308BFCDB459_inline(__this, NULL);
|
|
V_0 = L_1;
|
|
uint32_t L_2 = V_0;
|
|
UpdateStepCount_set_value_m94BD09FB80BCEAA8211533A7391D3708C19AF60A_inline(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_2, 1)), NULL);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:102>
|
|
__this->___m_WasUpdated = (bool)0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:103>
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void UpdateStepCount_OnUpdate_m7E993B061FBF276567B5004742BED2443F2D1426_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324*>(__this + _offset);
|
|
UpdateStepCount_OnUpdate_m7E993B061FBF276567B5004742BED2443F2D1426(_thisAdjusted, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
|
|
|
|
IL2CPP_EXTERN_C void SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026_marshal_pinvoke(const SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026& unmarshaled, SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___lastUpdateType = unmarshaled.___lastUpdateType;
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_pinvoke(unmarshaled.___playerUpdateStepCount, marshaled.___playerUpdateStepCount);
|
|
}
|
|
IL2CPP_EXTERN_C void SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026_marshal_pinvoke_back(const SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026_marshaled_pinvoke& marshaled, SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026& unmarshaled)
|
|
{
|
|
int32_t unmarshaledlastUpdateType_temp_0 = 0;
|
|
unmarshaledlastUpdateType_temp_0 = marshaled.___lastUpdateType;
|
|
unmarshaled.___lastUpdateType = unmarshaledlastUpdateType_temp_0;
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324 unmarshaledplayerUpdateStepCount_temp_1;
|
|
memset((&unmarshaledplayerUpdateStepCount_temp_1), 0, sizeof(unmarshaledplayerUpdateStepCount_temp_1));
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_pinvoke_back(marshaled.___playerUpdateStepCount, unmarshaledplayerUpdateStepCount_temp_1);
|
|
unmarshaled.___playerUpdateStepCount = unmarshaledplayerUpdateStepCount_temp_1;
|
|
}
|
|
IL2CPP_EXTERN_C void SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026_marshal_pinvoke_cleanup(SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026_marshaled_pinvoke& marshaled)
|
|
{
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_pinvoke_cleanup(marshaled.___playerUpdateStepCount);
|
|
}
|
|
|
|
|
|
IL2CPP_EXTERN_C void SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026_marshal_com(const SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026& unmarshaled, SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___lastUpdateType = unmarshaled.___lastUpdateType;
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_com(unmarshaled.___playerUpdateStepCount, marshaled.___playerUpdateStepCount);
|
|
}
|
|
IL2CPP_EXTERN_C void SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026_marshal_com_back(const SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026_marshaled_com& marshaled, SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026& unmarshaled)
|
|
{
|
|
int32_t unmarshaledlastUpdateType_temp_0 = 0;
|
|
unmarshaledlastUpdateType_temp_0 = marshaled.___lastUpdateType;
|
|
unmarshaled.___lastUpdateType = unmarshaledlastUpdateType_temp_0;
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324 unmarshaledplayerUpdateStepCount_temp_1;
|
|
memset((&unmarshaledplayerUpdateStepCount_temp_1), 0, sizeof(unmarshaledplayerUpdateStepCount_temp_1));
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_com_back(marshaled.___playerUpdateStepCount, unmarshaledplayerUpdateStepCount_temp_1);
|
|
unmarshaled.___playerUpdateStepCount = unmarshaledplayerUpdateStepCount_temp_1;
|
|
}
|
|
IL2CPP_EXTERN_C void SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026_marshal_com_cleanup(SerializedState_t3109D2FBBC10098C57DC414CF8E80C5685232026_marshaled_com& marshaled)
|
|
{
|
|
UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324_marshal_com_cleanup(marshaled.___playerUpdateStepCount);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// Method Definition Index: 25827
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NativeInputRuntime_AllocateDeviceId_m946D273D3B7AAFAAC30A8F26FD91050C2F64284C (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:27>
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
int32_t L_0;
|
|
L_0 = NativeInputSystem_AllocateDeviceId_m0F5EA2F96B8C2DB31D86E14B7F3C34105E6D67BA(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25828
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime_Update_m2D4646BBC664C86F1E2DBBDBD3C4E5947DCDC759 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, int32_t ___0_updateType, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:32>
|
|
int32_t L_0 = ___0_updateType;
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
NativeInputSystem_Update_m898216ECCA26122D827C2FB45FC4A20296031036(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:33>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25829
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime_QueueEvent_m0F23D7F562BB21BDB91599A087FC1D93B608E997 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_ptr, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:37>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___0_ptr;
|
|
intptr_t L_1;
|
|
L_1 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)L_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
NativeInputSystem_QueueInputEvent_m9363FC2953D733EA8A3AE58470A90B4767ED0B7B(L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:38>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25830
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t NativeInputRuntime_DeviceCommand_mB8A526874AD69E9506C9107ED93456FCBE1CCDF1 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, int32_t ___0_deviceId, InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* ___1_commandPtr, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:43>
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* L_0 = ___1_commandPtr;
|
|
if ((!(((uintptr_t)L_0) == ((uintptr_t)((uintptr_t)0)))))
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:44>
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8ABFE73B54F1E2EDA1877D47B6AD4176818D1A01)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NativeInputRuntime_DeviceCommand_mB8A526874AD69E9506C9107ED93456FCBE1CCDF1_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:46>
|
|
int32_t L_2 = ___0_deviceId;
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* L_3 = ___1_commandPtr;
|
|
NullCheck(L_3);
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_4 = L_3->___type;
|
|
int32_t L_5;
|
|
L_5 = FourCC_op_Implicit_mC296B4E8C4929EACBB7066BB9856C116EE082A7B_inline(L_4, NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* L_6 = ___1_commandPtr;
|
|
void* L_7;
|
|
L_7 = InputDeviceCommand_get_payloadPtr_mCE339E6458B03F15067C3ADE7D22EEBAE4D29982((InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*)L_6, NULL);
|
|
intptr_t L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline((&L_8), L_7, NULL);
|
|
InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E* L_9 = ___1_commandPtr;
|
|
int32_t L_10;
|
|
L_10 = InputDeviceCommand_get_payloadSizeInBytes_m65597C869B0A3AF1D1B928605A06216AB6897D11((InputDeviceCommand_t219FD4502984D73D423496E4A2ED7FDB6CBE710E*)L_9, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
int64_t L_11;
|
|
L_11 = NativeInputSystem_IOCTL_m11AC7B69197C6214E794B563D48FD60E848901E7(L_2, L_5, L_8, L_10, NULL);
|
|
return L_11;
|
|
}
|
|
}
|
|
// Method Definition Index: 25831
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* NativeInputRuntime_get_onUpdate_mE886C37B946EBE5F90AC89313FE42D737CC5010C (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:51>
|
|
InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* L_0 = __this->___m_OnUpdate;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25832
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime_set_onUpdate_m4997FBF82DD4A70BD43AE78A4A4D18465674343E (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeUpdateCallback_tC5CA5A9117B79251968A4DA3758552EFE1D37495_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass7_0_U3Cset_onUpdateU3Eb__0_mA6FA76E66DF94BD79BE9B23EC8C0B4B2038F76F7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass7_0_t1A3709DBB35971E4F78E67858F971CDD0B817698_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
U3CU3Ec__DisplayClass7_0_t1A3709DBB35971E4F78E67858F971CDD0B817698* V_0 = NULL;
|
|
{
|
|
U3CU3Ec__DisplayClass7_0_t1A3709DBB35971E4F78E67858F971CDD0B817698* L_0 = (U3CU3Ec__DisplayClass7_0_t1A3709DBB35971E4F78E67858F971CDD0B817698*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass7_0_t1A3709DBB35971E4F78E67858F971CDD0B817698_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__DisplayClass7_0__ctor_m51D08934E5A8EC08EFB189DECE6572F9128ACB8A(L_0, NULL);
|
|
V_0 = L_0;
|
|
U3CU3Ec__DisplayClass7_0_t1A3709DBB35971E4F78E67858F971CDD0B817698* L_1 = V_0;
|
|
InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* L_2 = ___0_value;
|
|
NullCheck(L_1);
|
|
L_1->___value = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___value), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:54>
|
|
U3CU3Ec__DisplayClass7_0_t1A3709DBB35971E4F78E67858F971CDD0B817698* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* L_4 = L_3->___value;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:55>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:56>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:57>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:58>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:59>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:60>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:61>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:62>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:63>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:64>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:65>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:66>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:67>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:68>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:69>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:70>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:71>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:72>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:73>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:74>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:75>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:76>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:77>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:78>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:79>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:80>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:81>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:82>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:83>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:84>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:85>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:86>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:87>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:88>
|
|
U3CU3Ec__DisplayClass7_0_t1A3709DBB35971E4F78E67858F971CDD0B817698* L_5 = V_0;
|
|
NativeUpdateCallback_tC5CA5A9117B79251968A4DA3758552EFE1D37495* L_6 = (NativeUpdateCallback_tC5CA5A9117B79251968A4DA3758552EFE1D37495*)il2cpp_codegen_object_new(NativeUpdateCallback_tC5CA5A9117B79251968A4DA3758552EFE1D37495_il2cpp_TypeInfo_var);
|
|
NativeUpdateCallback__ctor_m04FDCD50564E7535FADAFF34BBA83500585A84F5(L_6, L_5, (intptr_t)((void*)U3CU3Ec__DisplayClass7_0_U3Cset_onUpdateU3Eb__0_mA6FA76E66DF94BD79BE9B23EC8C0B4B2038F76F7_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
((NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_StaticFields*)il2cpp_codegen_static_fields_for(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var))->___onUpdate = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_StaticFields*)il2cpp_codegen_static_fields_for(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var))->___onUpdate), (void*)L_6);
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:90>
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
((NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_StaticFields*)il2cpp_codegen_static_fields_for(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var))->___onUpdate = (NativeUpdateCallback_tC5CA5A9117B79251968A4DA3758552EFE1D37495*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_StaticFields*)il2cpp_codegen_static_fields_for(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var))->___onUpdate), (void*)(NativeUpdateCallback_tC5CA5A9117B79251968A4DA3758552EFE1D37495*)NULL);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:91>
|
|
U3CU3Ec__DisplayClass7_0_t1A3709DBB35971E4F78E67858F971CDD0B817698* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
InputUpdateDelegate_tF78891F6BFB57DCD649569B8E3673F33A11B5E55* L_8 = L_7->___value;
|
|
__this->___m_OnUpdate = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OnUpdate), (void*)L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:92>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25833
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_1_tDAB4041881A0AD46A7C150D31A131F59B0A61378* NativeInputRuntime_get_onBeforeUpdate_m809577D51ABF625E285F9D7B662DB7206916F2ED (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:97>
|
|
Action_1_tDAB4041881A0AD46A7C150D31A131F59B0A61378* L_0 = __this->___m_OnBeforeUpdate;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25834
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime_set_onBeforeUpdate_mAA088EE83845CF7A3EA0064674DB7CFCE47A94F7 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, Action_1_tDAB4041881A0AD46A7C150D31A131F59B0A61378* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t7797D4D8783204B10C3D28B96B049C48276C3B1B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass10_0_U3Cset_onBeforeUpdateU3Eb__0_m8866A3C60E714FB89E34A85EEAC587B91D9AD43D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass10_0_t3C16459876E43A6A7151C0E35A8B7402A64144D8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
U3CU3Ec__DisplayClass10_0_t3C16459876E43A6A7151C0E35A8B7402A64144D8* V_0 = NULL;
|
|
{
|
|
U3CU3Ec__DisplayClass10_0_t3C16459876E43A6A7151C0E35A8B7402A64144D8* L_0 = (U3CU3Ec__DisplayClass10_0_t3C16459876E43A6A7151C0E35A8B7402A64144D8*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass10_0_t3C16459876E43A6A7151C0E35A8B7402A64144D8_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__DisplayClass10_0__ctor_m8B3228945AA7BBBB692912F4767821233DBAA6B5(L_0, NULL);
|
|
V_0 = L_0;
|
|
U3CU3Ec__DisplayClass10_0_t3C16459876E43A6A7151C0E35A8B7402A64144D8* L_1 = V_0;
|
|
Action_1_tDAB4041881A0AD46A7C150D31A131F59B0A61378* L_2 = ___0_value;
|
|
NullCheck(L_1);
|
|
L_1->___value = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___value), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:102>
|
|
U3CU3Ec__DisplayClass10_0_t3C16459876E43A6A7151C0E35A8B7402A64144D8* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
Action_1_tDAB4041881A0AD46A7C150D31A131F59B0A61378* L_4 = L_3->___value;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:103>
|
|
U3CU3Ec__DisplayClass10_0_t3C16459876E43A6A7151C0E35A8B7402A64144D8* L_5 = V_0;
|
|
Action_1_t7797D4D8783204B10C3D28B96B049C48276C3B1B* L_6 = (Action_1_t7797D4D8783204B10C3D28B96B049C48276C3B1B*)il2cpp_codegen_object_new(Action_1_t7797D4D8783204B10C3D28B96B049C48276C3B1B_il2cpp_TypeInfo_var);
|
|
Action_1__ctor_m6053BD5AC27ECDD2DF78552B3ECB0D0F38B008C0(L_6, L_5, (intptr_t)((void*)U3CU3Ec__DisplayClass10_0_U3Cset_onBeforeUpdateU3Eb__0_m8866A3C60E714FB89E34A85EEAC587B91D9AD43D_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
((NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_StaticFields*)il2cpp_codegen_static_fields_for(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var))->___onBeforeUpdate = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_StaticFields*)il2cpp_codegen_static_fields_for(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var))->___onBeforeUpdate), (void*)L_6);
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:105>
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
((NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_StaticFields*)il2cpp_codegen_static_fields_for(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var))->___onBeforeUpdate = (Action_1_t7797D4D8783204B10C3D28B96B049C48276C3B1B*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_StaticFields*)il2cpp_codegen_static_fields_for(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var))->___onBeforeUpdate), (void*)(Action_1_t7797D4D8783204B10C3D28B96B049C48276C3B1B*)NULL);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:106>
|
|
U3CU3Ec__DisplayClass10_0_t3C16459876E43A6A7151C0E35A8B7402A64144D8* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
Action_1_tDAB4041881A0AD46A7C150D31A131F59B0A61378* L_8 = L_7->___value;
|
|
__this->___m_OnBeforeUpdate = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OnBeforeUpdate), (void*)L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:107>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25835
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_2_t62EFAA3354EBC38A360CC3A9CAEC60374509CC29* NativeInputRuntime_get_onShouldRunUpdate_m63574D7B7B837DBFBCDEC63215482D53EEA8E50C (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:112>
|
|
Func_2_t62EFAA3354EBC38A360CC3A9CAEC60374509CC29* L_0 = __this->___m_OnShouldRunUpdate;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25836
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime_set_onShouldRunUpdate_m670E29C3FD891451265FC4F8E05D752F9E6AAC49 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, Func_2_t62EFAA3354EBC38A360CC3A9CAEC60374509CC29* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t880CA675AE5D39E081BEEF14DC092D82674DE4F2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass13_0_U3Cset_onShouldRunUpdateU3Eb__0_mA1457EFD8C1B7BBC063563F4D3D7C41EDB06062F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass13_0_t21F396034441DB57F92472B4AB14EAD654A1E763_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
U3CU3Ec__DisplayClass13_0_t21F396034441DB57F92472B4AB14EAD654A1E763* V_0 = NULL;
|
|
{
|
|
U3CU3Ec__DisplayClass13_0_t21F396034441DB57F92472B4AB14EAD654A1E763* L_0 = (U3CU3Ec__DisplayClass13_0_t21F396034441DB57F92472B4AB14EAD654A1E763*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass13_0_t21F396034441DB57F92472B4AB14EAD654A1E763_il2cpp_TypeInfo_var);
|
|
U3CU3Ec__DisplayClass13_0__ctor_m9BDD963AD4B4D771579687755A1B9A1DB691A89C(L_0, NULL);
|
|
V_0 = L_0;
|
|
U3CU3Ec__DisplayClass13_0_t21F396034441DB57F92472B4AB14EAD654A1E763* L_1 = V_0;
|
|
Func_2_t62EFAA3354EBC38A360CC3A9CAEC60374509CC29* L_2 = ___0_value;
|
|
NullCheck(L_1);
|
|
L_1->___value = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___value), (void*)L_2);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:117>
|
|
U3CU3Ec__DisplayClass13_0_t21F396034441DB57F92472B4AB14EAD654A1E763* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
Func_2_t62EFAA3354EBC38A360CC3A9CAEC60374509CC29* L_4 = L_3->___value;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:118>
|
|
U3CU3Ec__DisplayClass13_0_t21F396034441DB57F92472B4AB14EAD654A1E763* L_5 = V_0;
|
|
Func_2_t880CA675AE5D39E081BEEF14DC092D82674DE4F2* L_6 = (Func_2_t880CA675AE5D39E081BEEF14DC092D82674DE4F2*)il2cpp_codegen_object_new(Func_2_t880CA675AE5D39E081BEEF14DC092D82674DE4F2_il2cpp_TypeInfo_var);
|
|
Func_2__ctor_m04C8BE35346A258C612317730B8A43E84EEF5E55(L_6, L_5, (intptr_t)((void*)U3CU3Ec__DisplayClass13_0_U3Cset_onShouldRunUpdateU3Eb__0_mA1457EFD8C1B7BBC063563F4D3D7C41EDB06062F_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
((NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_StaticFields*)il2cpp_codegen_static_fields_for(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var))->___onShouldRunUpdate = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_StaticFields*)il2cpp_codegen_static_fields_for(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var))->___onShouldRunUpdate), (void*)L_6);
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:120>
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
((NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_StaticFields*)il2cpp_codegen_static_fields_for(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var))->___onShouldRunUpdate = (Func_2_t880CA675AE5D39E081BEEF14DC092D82674DE4F2*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_StaticFields*)il2cpp_codegen_static_fields_for(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var))->___onShouldRunUpdate), (void*)(Func_2_t880CA675AE5D39E081BEEF14DC092D82674DE4F2*)NULL);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:121>
|
|
U3CU3Ec__DisplayClass13_0_t21F396034441DB57F92472B4AB14EAD654A1E763* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
Func_2_t62EFAA3354EBC38A360CC3A9CAEC60374509CC29* L_8 = L_7->___value;
|
|
__this->___m_OnShouldRunUpdate = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OnShouldRunUpdate), (void*)L_8);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:122>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25837
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_2_t6AAF2E215E74E16A4EEF0A0749A4A325D99F5BA6* NativeInputRuntime_get_onDeviceDiscovered_mC1F5209174E18A2115CA3C0CBFAE8B80F1E3EF41 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:167>
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
Action_2_t6AAF2E215E74E16A4EEF0A0749A4A325D99F5BA6* L_0;
|
|
L_0 = NativeInputSystem_get_onDeviceDiscovered_mD55A996A1107331B95C4D9409B8D4C98BADB8FCC(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25838
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime_set_onDeviceDiscovered_mCC90ECADE7ECF924CA330CC29FC17DADE38F5022 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, Action_2_t6AAF2E215E74E16A4EEF0A0749A4A325D99F5BA6* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:168>
|
|
Action_2_t6AAF2E215E74E16A4EEF0A0749A4A325D99F5BA6* L_0 = ___0_value;
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
NativeInputSystem_set_onDeviceDiscovered_m8DEE711BB866D1C923DA537B7DE62BF03094D855(L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25839
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* NativeInputRuntime_get_onShutdown_mEB42B00CF7C754143347E8880367CB2BA5BA064F (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:173>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = __this->___m_ShutdownMethod;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25840
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime_set_onShutdown_m5368B5CC4629E50BB049EBB3D7F62977542AE949 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputRuntime_OnShutdown_mD52B4BB75DB77B06409941C49A6A41F41C6AAB4A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:176>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:181>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_1, __this, (intptr_t)((void*)NativeInputRuntime_OnShutdown_mD52B4BB75DB77B06409941C49A6A41F41C6AAB4A_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
Application_remove_quitting_m9DC9D4165EDB0FD93AB893655E26BF73566D2C1B(L_1, NULL);
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:184>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_2 = __this->___m_ShutdownMethod;
|
|
if (L_2)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:189>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_3 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_3, __this, (intptr_t)((void*)NativeInputRuntime_OnShutdown_mD52B4BB75DB77B06409941C49A6A41F41C6AAB4A_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
Application_add_quitting_m5767AC63F23ABFD5BC3D60710906643BA536CCC5(L_3, NULL);
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:193>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_4 = ___0_value;
|
|
__this->___m_ShutdownMethod = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ShutdownMethod), (void*)L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:194>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25841
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* NativeInputRuntime_get_onPlayerFocusChanged_m5D7383969271CA93C125A1B08E700E14C5848BDA (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:199>
|
|
Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* L_0 = __this->___m_FocusChangedMethod;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25842
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime_set_onPlayerFocusChanged_mC9A28201FD6C91E2E95636CA8AB7E2014A6FEB16 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputRuntime_OnFocusChanged_m5EBBEFE59AA7D3441379388C255BA98963D59250_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:202>
|
|
Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* L_0 = ___0_value;
|
|
if (L_0)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:203>
|
|
Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* L_1 = (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C*)il2cpp_codegen_object_new(Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C_il2cpp_TypeInfo_var);
|
|
Action_1__ctor_mA8C3AC97D1F076EA5D1D0C10CEE6BD3E94711501(L_1, __this, (intptr_t)((void*)NativeInputRuntime_OnFocusChanged_m5EBBEFE59AA7D3441379388C255BA98963D59250_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
Application_remove_focusChanged_m1348AD63AFFB9F50347A09DDE75F91B5A6710624(L_1, NULL);
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:204>
|
|
Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* L_2 = __this->___m_FocusChangedMethod;
|
|
if (L_2)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:205>
|
|
Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* L_3 = (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C*)il2cpp_codegen_object_new(Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C_il2cpp_TypeInfo_var);
|
|
Action_1__ctor_mA8C3AC97D1F076EA5D1D0C10CEE6BD3E94711501(L_3, __this, (intptr_t)((void*)NativeInputRuntime_OnFocusChanged_m5EBBEFE59AA7D3441379388C255BA98963D59250_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
Application_add_focusChanged_m8C984ECC5D23BE2E395EEAEE58D028F2B95A7E85(L_3, NULL);
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:206>
|
|
Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* L_4 = ___0_value;
|
|
__this->___m_FocusChangedMethod = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FocusChangedMethod), (void*)L_4);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:207>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25843
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeInputRuntime_get_isPlayerFocused_mFFAE21C76A82509C61E261738039543DD80A6CF8 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:210>
|
|
il2cpp_codegen_runtime_class_init_inline(Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
bool L_0;
|
|
L_0 = Application_get_isFocused_mFEEC52E355AA7AAA6B7250520CA544D80BE77524(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25844
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float NativeInputRuntime_get_pollingFrequency_m7809A2FD35CB7952D8257D279E325E6C3F894553 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:214>
|
|
float L_0 = __this->___m_PollingFrequency;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25845
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime_set_pollingFrequency_mBBB031DA20FB40AD577156C195BF94C9A1F4559D (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:217>
|
|
float L_0 = ___0_value;
|
|
__this->___m_PollingFrequency = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:218>
|
|
float L_1 = ___0_value;
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
NativeInputSystem_SetPollingFrequency_mDEF2E1093D0776906BC95CC8E29A143C115910A0(L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:219>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25846
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double NativeInputRuntime_get_currentTime_m4F1F15E7FA7E6B03E553AEA050F0A06608F46700 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:222>
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
double L_0;
|
|
L_0 = NativeInputSystem_get_currentTime_mB10D8CF832AA53952843986F29675B3BC71AAEC9(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25847
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double NativeInputRuntime_get_currentTimeForFixedUpdate_mF324E8BF5B540BCF2C42E2AA65CC11AEB42CAC47 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:225>
|
|
float L_0;
|
|
L_0 = Time_get_fixedUnscaledTime_m408E1B883AE5D5D1469E6036F8A4B4822A6E9B37(NULL);
|
|
double L_1;
|
|
L_1 = NativeInputRuntime_get_currentTimeOffsetToRealtimeSinceStartup_m012D3D1C30F95156D18F882AE7A17FA3F7668BC1(__this, NULL);
|
|
return ((double)il2cpp_codegen_add(((double)L_0), L_1));
|
|
}
|
|
}
|
|
// Method Definition Index: 25848
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double NativeInputRuntime_get_currentTimeOffsetToRealtimeSinceStartup_m012D3D1C30F95156D18F882AE7A17FA3F7668BC1 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:227>
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
double L_0;
|
|
L_0 = NativeInputSystem_get_currentTimeOffsetToRealtimeSinceStartup_mE5FB513F17BBF2FF45494D1939C44DEBF3040B55(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25849
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float NativeInputRuntime_get_unscaledGameTime_m538855F9100AFFEC5F5EB6B22ECA5C38D84E2757 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:228>
|
|
float L_0;
|
|
L_0 = Time_get_unscaledTime_mAF4040B858903E1325D1C65B8BF1AC61460B2503(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25850
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeInputRuntime_get_runInBackground_mF0AAD098FB78AD18C3F462FF4322F093B6610EBC (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:233>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:234>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:235>
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:236>
|
|
il2cpp_codegen_runtime_class_init_inline(Application_tDB03BE91CDF0ACA614A5E0B67CFB77C44EB19B21_il2cpp_TypeInfo_var);
|
|
bool L_0;
|
|
L_0 = Application_get_runInBackground_mD56510A53700CF5E71040CE3B825773DDE70C2E9(NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
bool L_1 = __this->___m_RunInBackground;
|
|
return L_1;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25851
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime_set_runInBackground_mCCFD2A6CABA17A83F2D7C5697E1A0FC2133DF66C (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:237>
|
|
bool L_0 = ___0_value;
|
|
__this->___m_RunInBackground = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25852
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime_OnShutdown_mD52B4BB75DB77B06409941C49A6A41F41C6AAB4A (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:253>
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = __this->___m_ShutdownMethod;
|
|
NullCheck(L_0);
|
|
Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(L_0, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:254>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25853
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeInputRuntime_OnWantsToShutdown_m7B453DD7CDF7EAD718D331BC56EC217E7B769E72 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:258>
|
|
bool L_0 = __this->___m_DidCallOnShutdown;
|
|
if (L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:267>
|
|
NativeInputRuntime_OnShutdown_mD52B4BB75DB77B06409941C49A6A41F41C6AAB4A(__this, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:268>
|
|
__this->___m_DidCallOnShutdown = (bool)1;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:271>
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25854
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime_OnFocusChanged_m5EBBEFE59AA7D3441379388C255BA98963D59250 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, bool ___0_focus, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:278>
|
|
Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* L_0 = __this->___m_FocusChangedMethod;
|
|
bool L_1 = ___0_focus;
|
|
NullCheck(L_0);
|
|
Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_inline(L_0, L_1, NULL);
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:279>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25855
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 NativeInputRuntime_get_screenSize_m9EB95345A9B60B98EAFD2C5A71F3A0B8AB76E67A (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:281>
|
|
int32_t L_0;
|
|
L_0 = Screen_get_width_mF608FF3252213E7EFA1F0D2F744C28110E9E5AC9(NULL);
|
|
int32_t L_1;
|
|
L_1 = Screen_get_height_m01A3102DE71EE1FBEA51D09D6B0261CF864FE8F9(NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_2), ((float)L_0), ((float)L_1), NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// Method Definition Index: 25856
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NativeInputRuntime_get_screenOrientation_m919BE2D129FC11F2E4801EC39A5971D961198491 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:282>
|
|
int32_t L_0;
|
|
L_0 = Screen_get_orientation_mA6B22A441187D50831B2B18CA48A8F64BD1BD89E(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25857
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeInputRuntime_get_normalizeScrollWheelDelta_m0991976B31B1A0E18976526912B087DF5698EF56 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:287>
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
bool L_0;
|
|
L_0 = NativeInputSystem_get_normalizeScrollWheelDelta_mF633DF00F7F5823179F3473BC5E07BE9BF75A04F(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25858
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime_set_normalizeScrollWheelDelta_m0B38C6043EDA1DDC20F82A6BB20350877D9A571E (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:288>
|
|
bool L_0 = ___0_value;
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
NativeInputSystem_set_normalizeScrollWheelDelta_mA6CCECFB417A30D7AEB05FDB313FEA28963F012D(L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25859
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float NativeInputRuntime_get_scrollWheelDeltaPerTick_mC5ECD2AAE64B3C47DC63CB600FD3015C20086EF0 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:293>
|
|
il2cpp_codegen_runtime_class_init_inline(NativeInputSystem_tCFE5554EBC0D3EE1DAD80FC55CE0DE38A3DDC5EE_il2cpp_TypeInfo_var);
|
|
float L_0;
|
|
L_0 = NativeInputSystem_GetScrollWheelDeltaPerTick_mD4FBEBF03836656D5DE3D39A8CEB3CB395DB607B(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25860
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime__ctor_mF029A72DDB68E34A46455E6354309A9585D37573 (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:249>
|
|
__this->___m_PollingFrequency = (60.0f);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25861
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeInputRuntime__cctor_mA350AC4C643B086E64D792C0229899B822A6AA5C (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/NativeInputRuntime.cs:23>
|
|
NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7* L_0 = (NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7*)il2cpp_codegen_object_new(NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7_il2cpp_TypeInfo_var);
|
|
NativeInputRuntime__ctor_mF029A72DDB68E34A46455E6354309A9585D37573(L_0, NULL);
|
|
((NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7_StaticFields*)il2cpp_codegen_static_fields_for(NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7_il2cpp_TypeInfo_var))->___instance = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7_StaticFields*)il2cpp_codegen_static_fields_for(NativeInputRuntime_t312F8D8360E6CB6754980EC6DBCA824F927343C7_il2cpp_TypeInfo_var))->___instance), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
// Method Definition Index: 1691
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline (String_t* ___0_text, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
String_t* L_0 = ___0_text;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1));
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
String_t* L_2 = ___0_text;
|
|
NullCheck(L_2);
|
|
Il2CppChar* L_3;
|
|
L_3 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_2, NULL);
|
|
String_t* L_4 = ___0_text;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_6), L_3, L_5, ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
|
|
return L_6;
|
|
}
|
|
}
|
|
// Method Definition Index: 24251
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputSettings_get_updateMode_mD37EABFC0678912846EABBC3CF31AC82E4ACE79E_inline (InputSettings_tBA8835B505722A59702A08BCBA46ECF0B0274EEF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputSettings.cs:77>
|
|
int32_t L_0 = __this->___m_UpdateMode;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25932
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputStateHistory_get_Count_m23DF78272A6C97F6C8782A953482772CDF6FFA81_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/State/InputStateHistory.cs:71>
|
|
int32_t L_0 = __this->___m_RecordCount;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 24043
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E Touchscreen_get_touches_mEFA7C5B2A80963C7947BCBDBE6258F5083B1CE66_inline (Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:523>
|
|
ReadOnlyArray_1_t1AB67C13630F5ECC78559C8BCEFFC00C4457333E L_0 = __this->___U3CtouchesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25944
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputStateHistory_set_onRecordAdded_m6F35EA7B2352BE8359FD22FE803E6AAC1CD2E93A_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/State/InputStateHistory.cs:192>
|
|
Action_1_t382B605C2C5668A25F075BE1F415718CF3C38FF7* L_0 = ___0_value;
|
|
__this->___U3ConRecordAddedU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3ConRecordAddedU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25946
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputStateHistory_set_onShouldRecordStateChange_m4553C7A82A01BE25B5F1D0D2567B70FCE375F30E_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/State/InputStateHistory.cs:203>
|
|
Func_4_t3D08A13C5D862919E1719A02821AE8774376E3B2* L_0 = ___0_value;
|
|
__this->___U3ConShouldRecordStateChangeU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3ConShouldRecordStateChangeU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 26763
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED FourCC_op_Implicit_mFEE14A923AACEE90FAAC5234C718CD1B20690F61_inline (int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/FourCC.cs:92>
|
|
int32_t L_0 = ___0_i;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
FourCC__ctor_mE761C8779BB6DC85BA1662DC9ECEC39D62ED9A56_inline((&L_1), L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 26769
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FourCC_op_Inequality_m8E764B9EF56D488E40480A3E69230EF623C7B92B_inline (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_left, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___1_right, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/FourCC.cs:162>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = ___0_left;
|
|
int32_t L_1 = L_0.___m_Code;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_2 = ___1_right;
|
|
int32_t L_3 = L_2.___m_Code;
|
|
return (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 22744
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 InputControl_get_stateBlock_mCAE31879EDC6621B35B368B4916219D30EAA0B0B_inline (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Controls/InputControl.cs:312>
|
|
InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5 L_0 = __this->___m_StateBlock;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25895
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_byteOffset_m6EADE5C9C8B346D38E543E38777ED67ED2AEA0AC_inline (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/State/InputStateBlock.cs:239>
|
|
uint32_t L_0 = __this->___m_ByteOffset;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25489
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TouchState_get_phase_m2097D70532934B1A5C85712FBEC38B46D4ADA358_inline (TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Touchscreen.cs:214>
|
|
uint8_t L_0 = __this->___phaseId;
|
|
return (int32_t)(L_0);
|
|
}
|
|
}
|
|
// Method Definition Index: 25934
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputStateHistory_get_historyDepth_mBAFA4592E170099C0E8BB360B148A854517AA561_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/State/InputStateHistory.cs:96>
|
|
int32_t L_0 = __this->___m_HistoryDepth;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 37889
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Subtraction_m44475FCDAD2DA2F98D78A6625EC2DCDFE8803837_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_a, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_a;
|
|
float L_1 = L_0.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___1_b;
|
|
float L_3 = L_2.___x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___0_a;
|
|
float L_5 = L_4.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___1_b;
|
|
float L_7 = L_6.___y;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_8), ((float)il2cpp_codegen_subtract(L_1, L_3)), ((float)il2cpp_codegen_subtract(L_5, L_7)), NULL);
|
|
V_0 = L_8;
|
|
goto IL_0023;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
}
|
|
// Method Definition Index: 25237
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* Touch_get_finger_m414E1AF302CAC737C934AF1FB24FC869873B8420_inline (Touch_t07A55E11962F143607E917F0B6FEFB36EE2DDA70* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Touch.cs:122>
|
|
Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* L_0 = __this->___m_Finger;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25224
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* Finger_get_screen_mBA2D1364604CB55F7386EFB844B12B7CFA7EE744_inline (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:31>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = __this->___U3CscreenU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25225
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Finger_get_index_mB409A9B5711767D3A6046AEAA4931A0B3633934C_inline (Finger_t0E27A005E4B818F9D0078D69AF2B22649DDD4C6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/Finger.cs:36>
|
|
int32_t L_0 = __this->___U3CindexU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25936
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputStateHistory_get_extraMemoryPerRecord_m4E4C9D89BC37B9CD7E6AFFD58D95A9030F92E653_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/State/InputStateHistory.cs:118>
|
|
int32_t L_0 = __this->___m_ExtraMemoryPerRecord;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25933
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateHistory_get_version_m89DDB085F1210A84797C85822792F5FBF73C25F0_inline (InputStateHistory_tF2145C4E34E0E3AC84270533F58F047D6E28A480* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/State/InputStateHistory.cs:81>
|
|
uint32_t L_0 = __this->___m_CurrentVersion;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25294
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TouchHistory_get_Count_mDEFAFCC5D44BE56B17E0949448CE3C48E9DC3277_inline (TouchHistory_tE09151B83F8C493C58DB9D5DAFA201960619D580* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchHistory.cs:48>
|
|
int32_t L_0 = __this->___m_Count;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25305
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* TouchSimulation_get_instance_m34792E651AC9A88122F92EF633537A69B570739C_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:42>
|
|
TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* L_0 = ((TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_StaticFields*)il2cpp_codegen_static_fields_for(TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0_il2cpp_TypeInfo_var))->___s_Instance;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 22739
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* InputControl_get_device_mAB3E013F566CF3407B8C36BC781EBD751DFAB324_inline (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Controls/InputControl.cs:242>
|
|
InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* L_0 = __this->___m_Device;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25303
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* TouchSimulation_get_simulatedTouchscreen_m6EF0A38A3FE1CC9665317B0A2321D87E9D01AE50_inline (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:40>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = __this->___U3CsimulatedTouchscreenU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 23374
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* Pointer_get_position_m4286004169788483EEDA6AF833CEFDB04FEDF3D8_inline (Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Pointer.cs:104>
|
|
Vector2Control_t8D1B4021A1D82671AF916D3C0A476AA94E46A432* L_0 = __this->___U3CpositionU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 23384
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB* Pointer_get_displayIndex_mD4258A9C397671E55D04352B04A2E7AB56C11AB5_inline (Pointer_t800EF2832B62E889AC9C182E3B18098AF220E32A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Pointer.cs:191>
|
|
IntegerControl_tA24544EFF42204852F638FF5147F754962C997AB* L_0 = __this->___U3CdisplayIndexU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 22883
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* InputEventControlEnumerator_get_Current_mD0540A0B5BE8EC847B80D28B66BA8389A1AF17BB_inline (InputEventControlEnumerator_tB4810CBA4520ACCDFE385C107283A75EC91CD6DB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Controls/InputControlExtensions.cs:1549>
|
|
InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* L_0 = __this->___m_CurrentControl;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25304
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TouchSimulation_set_simulatedTouchscreen_m59218EBAFC13C1FF0019F59F12378749620C9EEF_inline (TouchSimulation_t56E75C9AC1BC6738A9606287BA789062C910F0A0* __this, Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/EnhancedTouch/TouchSimulation.cs:40>
|
|
Touchscreen_t5A3B494C10A53A822AEDB3508093860D142D84CE* L_0 = ___0_value;
|
|
__this->___U3CsimulatedTouchscreenU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CsimulatedTouchscreenU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25341
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_current_m93FA2FA12D03CECB36DB8B0305B863BC19FAA2B7_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:90>
|
|
DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* L_0 = ___0_value;
|
|
((DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_StaticFields*)il2cpp_codegen_static_fields_for(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var))->___U3CcurrentU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_StaticFields*)il2cpp_codegen_static_fields_for(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var))->___U3CcurrentU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25340
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* DualShockGamepad_get_current_m14AB6A8C82AC70EDE7B1FF5E1FEAEC501F0CE325_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:90>
|
|
DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* L_0 = ((DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_StaticFields*)il2cpp_codegen_static_fields_for(DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B_il2cpp_TypeInfo_var))->___U3CcurrentU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25323
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_touchpadButton_m85056E5E5A92D34208235FB409393690A472601D_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:26>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CtouchpadButtonU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CtouchpadButtonU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 23043
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_startButton_m29450F01D3AC6A6377DD6820C1E8A19E3FB257B1_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:475>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CstartButtonU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25325
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_optionsButton_m1FE2766F3657D92F605EB85A030FE7C89D0DD580_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:34>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CoptionsButtonU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CoptionsButtonU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 23045
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_selectButton_mE20183D2C1EBD7B7EF87EE29C24E56F1731E85BE_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:482>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CselectButtonU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25327
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_shareButton_mE3EF1DF6E0E1B8EFF21AC7DD493CC0494AEC6155_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:42>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CshareButtonU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CshareButtonU3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 23049
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_leftShoulder_m2522E913D1A9361FE16FE01D717BF49D3B1632AE_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:498>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CleftShoulderU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25329
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_L1_m53A630A39C6EA91CD8A806D739D51782A7062D8E_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:49>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CL1U3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CL1U3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 23051
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_rightShoulder_m221A61E28BDBABD1B1E51A0E325D9A55BB5E347A_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:508>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CrightShoulderU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25331
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_R1_m578DFA09EC86DB70693B666AC53AE39E97C6F22C_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:56>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CR1U3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CR1U3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 23057
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_leftTrigger_mE19F2FCA9A7F195107FA0C14293732C0F3075A38_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:528>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CleftTriggerU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25333
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_L2_m944079645ACBBB274527C169EE5670D1ED142616_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:63>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CL2U3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CL2U3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 23059
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_rightTrigger_mD1587CDED475B78A56BE8B6FC493EDA08AE6F3A6_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:536>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CrightTriggerU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25335
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_R2_mCCFF64B80DC2E5DA8920AB9B9A9CEB61AB8C0079_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:70>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CR2U3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CR2U3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 23039
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_leftStickButton_mEACF0F726788DA012905DCD7A44AA88DF91593ED_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:462>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CleftStickButtonU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25337
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_L3_mD8C16E42401A03362170FB255D0F2E0A70F36531_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:77>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CL3U3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CL3U3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 23041
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* Gamepad_get_rightStickButton_m9A8377135FDA7EA2EA6219A715092F0E62ADBC55_inline (Gamepad_tA8C0E40B4F0828615C6C6E1A69AAEBE5AA643A4C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Gamepad.cs:468>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = __this->___U3CrightStickButtonU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25339
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_R3_mF4834C8E3EB76B2C7C91F874D6022770604A5CDC_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:84>
|
|
ButtonControl_t85949109B98AAF5B7ADC0285F0EC98A61EC88ECF* L_0 = ___0_value;
|
|
__this->___U3CR3U3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CR3U3Ek__BackingField), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 26416
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_capabilities_mEBF36ED5663709FCA039D1AEA87F6B6C404E76CD_inline (InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/InputDeviceDescription.cs:139>
|
|
String_t* L_0 = __this->___m_Capabilities;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 26404
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputDeviceDescription_get_interfaceName_m087CF7E83BAF1E6C6375B3F16A9FAA3A71717D07_inline (InputDeviceDescription_tE86DD77422AAF60ADDAC788B31E5A05E739B708F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/InputDeviceDescription.cs:58>
|
|
String_t* L_0 = __this->___m_InterfaceName;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25343
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualShockGamepad_set_hidDescriptor_m1F5D94BCCA35B4EACABD048AA7E097E24EC6233B_inline (DualShockGamepad_tFD374BEA0FEDE61EBC323C8F8CD595BAB5171C8B* __this, HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Plugins/DualShock/DualShockGamepad.cs:95>
|
|
HIDDeviceDescriptor_tC52CF92386ACA63743BEFB7776A8C1E152A6DB59 L_0 = ___0_value;
|
|
__this->___U3ChidDescriptorU3Ek__BackingField = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3ChidDescriptorU3Ek__BackingField))->___elements), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___U3ChidDescriptorU3Ek__BackingField))->___collections), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25353
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SampleFrequencyCalculator_set_targetFrequency_m5C9C189395BF81AF093FC0B3AA3B4B3451F83796_inline (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:21>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CtargetFrequencyU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25355
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SampleFrequencyCalculator_set_frequency_m57646D030EE810C64AB8E041112CEF1E1170ECB9_inline (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:22>
|
|
float L_0 = ___0_value;
|
|
__this->___U3CfrequencyU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25352
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float SampleFrequencyCalculator_get_targetFrequency_mBFFBC93F691EFBFD6F2F655DD6A88B8A3B6BA013_inline (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:21>
|
|
float L_0 = __this->___U3CtargetFrequencyU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25354
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float SampleFrequencyCalculator_get_frequency_mBADC20906701E18082B8E0EB05164ECB56CF23D9_inline (SampleFrequencyCalculator_tB884C707E67CF841422C88D1244730E59C25A2AA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Editor/Debugger/SampleFrequencyCalculator.cs:22>
|
|
float L_0 = __this->___U3CfrequencyU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25359
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DualMotorRumble_get_lowFrequencyMotorSpeed_m510597E97F499185330B45B4691421807F5199E6_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:20>
|
|
float L_0 = __this->___U3ClowFrequencyMotorSpeedU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25360
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualMotorRumble_set_lowFrequencyMotorSpeed_m9872E9EFA5CD0E26E2E9F55E759D5B17FD0BC843_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:20>
|
|
float L_0 = ___0_value;
|
|
__this->___U3ClowFrequencyMotorSpeedU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25361
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DualMotorRumble_get_highFrequencyMotorSpeed_mDF2890FFAEBCEE59E02E02845139481E8442073A_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:26>
|
|
float L_0 = __this->___U3ChighFrequencyMotorSpeedU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25362
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DualMotorRumble_set_highFrequencyMotorSpeed_mBE076CAE63721822E1B23B6CBB52836CBEAF3107_inline (DualMotorRumble_t7FF13D9599E8A574E5041726BD84CB8897E42701* __this, float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Haptics/DualMotorRumble.cs:26>
|
|
float L_0 = ___0_value;
|
|
__this->___U3ChighFrequencyMotorSpeedU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37855
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline (float ___0_a, float ___1_b, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
float L_0 = ___1_b;
|
|
float L_1 = ___0_a;
|
|
float L_2;
|
|
L_2 = fabsf(((float)il2cpp_codegen_subtract(L_0, L_1)));
|
|
float L_3 = ___0_a;
|
|
float L_4;
|
|
L_4 = fabsf(L_3);
|
|
float L_5 = ___1_b;
|
|
float L_6;
|
|
L_6 = fabsf(L_5);
|
|
float L_7;
|
|
L_7 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(L_4, L_6, NULL);
|
|
float L_8 = ((Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields*)il2cpp_codegen_static_fields_for(Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var))->___Epsilon;
|
|
float L_9;
|
|
L_9 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(((float)il2cpp_codegen_multiply((9.99999997E-07f), L_7)), ((float)il2cpp_codegen_multiply(L_8, (8.0f))), NULL);
|
|
V_0 = (bool)((((float)L_2) < ((float)L_9))? 1 : 0);
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// Method Definition Index: 37850
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp_mEB9AEA827D27D20FCC787F7375156AF46BB12BBF_inline (float ___0_value, float ___1_min, float ___2_max, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
float V_2 = 0.0f;
|
|
{
|
|
float L_0 = ___0_value;
|
|
float L_1 = ___1_min;
|
|
V_0 = (bool)((((float)L_0) < ((float)L_1))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
float L_3 = ___1_min;
|
|
___0_value = L_3;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
float L_4 = ___0_value;
|
|
float L_5 = ___2_max;
|
|
V_1 = (bool)((((float)L_4) > ((float)L_5))? 1 : 0);
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
float L_7 = ___2_max;
|
|
___0_value = L_7;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
float L_8 = ___0_value;
|
|
V_2 = L_8;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
float L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
// Method Definition Index: 3282
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void IntPtr__ctor_m4F9A9B80F01996B610D5AE4797F20B98ECD0A3D9_inline (intptr_t* __this, void* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
void* L_0 = ___0_value;
|
|
*__this = ((intptr_t)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 427
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____stringLength;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25438
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 SetIMECursorPositionCommand_get_position_m50765F077E0164B5205064B7A1B141F2C81C085C_inline (SetIMECursorPositionCommand_tDC69815817474DA1629D5883FA53F8D4BDF6BF46* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/Commands/SetIMECursorPositionCommand.cs:22>
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___m_Position;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25514
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double ActionEvent_get_startTime_mFC441D783C0FF36A0DCF844F6CB4C51F7B507DC9_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:37>
|
|
double L_0 = __this->___m_StartTime;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25515
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ActionEvent_set_startTime_m421136E6914BF478860D9A2A4C302A8E5C0128F2_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:38>
|
|
double L_0 = ___0_value;
|
|
__this->___m_StartTime = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25516
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_phase_mA5D0A72C4C5DD7D0F562AAC03812667D7D467AC9_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:43>
|
|
uint8_t L_0 = __this->___m_Phase;
|
|
return (int32_t)(L_0);
|
|
}
|
|
}
|
|
// Method Definition Index: 25520
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_stateIndex_m9B25D23E723CFD517FEA65A61D0D3587E4205450_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:62>
|
|
uint8_t L_0 = __this->___m_StateIndex;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25522
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_controlIndex_m6AD8C96BCD3A38D6FFC823F98673549CAADB1715_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:74>
|
|
uint16_t L_0 = __this->___m_ControlIndex;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25524
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionEvent_get_bindingIndex_m95BC43710F538E6E696644A9CABD5EC4FAA97400_inline (ActionEvent_tFC934B0EAC602EBEF4E6F4A34EC21B329DE11444* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/ActionEvent.cs:86>
|
|
uint16_t L_0 = __this->___m_BindingIndex;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25611
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputEventPtr__ctor_m42C0DB27FACAB1B1EB79BEFEF640F90004815FF0_inline (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* ___0_eventPtr, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:31>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = ___0_eventPtr;
|
|
__this->___m_EventPtr = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:32>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25625
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* InputEventPtr_get_data_m4694B5F91E787CE9586B5C7113AFEB89D33CC616_inline (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventPtr.cs:143>
|
|
InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5* L_0 = __this->___m_EventPtr;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25893
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED InputStateBlock_get_format_mA393354EDC4A58DDCBE0990902A49E0A22F15F86_inline (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/State/InputStateBlock.cs:229>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = __this->___U3CformatU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25897
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_bitOffset_m3165625FF638183247012307A8AC012AEA3D1143_inline (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/State/InputStateBlock.cs:251>
|
|
uint32_t L_0 = __this->___U3CbitOffsetU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25899
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t InputStateBlock_get_sizeInBits_m38BFF704420E74EA4F7B85DC24DD3AAD810E8197_inline (InputStateBlock_t0E05211ACF29A99C0FE7FC9EA7042196BFF1F3B5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/State/InputStateBlock.cs:258>
|
|
uint32_t L_0 = __this->___U3CsizeInBitsU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 26939
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t NumberHelpers_AlignToMultipleOf_m44B66C972BC1F508B9022564F265D1AA6A001AAE_inline (uint32_t ___0_number, uint32_t ___1_alignment, const RuntimeMethod* method)
|
|
{
|
|
uint32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/NumberHelpers.cs:31>
|
|
uint32_t L_0 = ___0_number;
|
|
uint32_t L_1 = ___1_alignment;
|
|
V_0 = ((int32_t)((uint32_t)(int32_t)L_0%(uint32_t)(int32_t)L_1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/NumberHelpers.cs:32>
|
|
uint32_t L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/NumberHelpers.cs:33>
|
|
uint32_t L_3 = ___0_number;
|
|
return L_3;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/NumberHelpers.cs:35>
|
|
uint32_t L_4 = ___0_number;
|
|
uint32_t L_5 = ___1_alignment;
|
|
uint32_t L_6 = V_0;
|
|
return ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5)), (int32_t)L_6));
|
|
}
|
|
}
|
|
// Method Definition Index: 23090
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputDevice_get_deviceId_mC65E69E6117B78DB2F4963F5CF9BF031488AD588_inline (InputDevice_t8BCF67533E872A75779C24C93D1D7085B72D364B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Devices/InputDevice.cs:355>
|
|
int32_t L_0 = __this->___m_DeviceId;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25550
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t IMECompositionString_get_Count_m118217BDAE905FA6F01D5F61D3D1A85319A5AA1D_inline (IMECompositionString_tE204556D15A112A43E86FBF18FE4A5B8AD96161E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:92>
|
|
int32_t L_0 = __this->___size;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25560
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_m52C5B2EFD3B6598435E54801806413118B0C7F40_inline (Enumerator_t1A8AC222761BFB9580E0FC935D4B0445A448FC46* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/IMECompositionEvent.cs:87>
|
|
Il2CppChar L_0 = __this->___m_CurrentCharacter;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 26759
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FourCC__ctor_mE761C8779BB6DC85BA1662DC9ECEC39D62ED9A56_inline (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED* __this, int32_t ___0_code, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/FourCC.cs:30>
|
|
int32_t L_0 = ___0_code;
|
|
__this->___m_Code = L_0;
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/FourCC.cs:31>
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 26762
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t FourCC_op_Implicit_mC296B4E8C4929EACBB7066BB9856C116EE082A7B_inline (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_fourCC, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/FourCC.cs:79>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = ___0_fourCC;
|
|
int32_t L_1 = L_0.___m_Code;
|
|
return L_1;
|
|
}
|
|
}
|
|
// Method Definition Index: 25582
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t InputEventBuffer_get_sizeInBytes_m49C3283A02CD4A529F430E6737AF2DB191D8BBD9_inline (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:46>
|
|
int64_t L_0 = __this->___m_SizeInBytes;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25581
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputEventBuffer_get_eventCount_mD120699C5A1CEBA76C878BC37DB2E39458F56C8E_inline (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:33>
|
|
int32_t L_0 = __this->___m_EventCount;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25584
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF InputEventBuffer_get_data_m4188F4357FCFB7F743531925E7E4B75D5D066B92_inline (InputEventBuffer_t3123D90CE491FA9828E878B2BEF766A3DC6E74FE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventBuffer.cs:72>
|
|
NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_0 = __this->___m_Buffer;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 26937
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t NumberHelpers_AlignToMultipleOf_m1DD6F7938F5F4EA99168EFE5AAD4604972F2FB6D_inline (int32_t ___0_number, int32_t ___1_alignment, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/NumberHelpers.cs:11>
|
|
int32_t L_0 = ___0_number;
|
|
int32_t L_1 = ___1_alignment;
|
|
V_0 = ((int32_t)(L_0%L_1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/NumberHelpers.cs:12>
|
|
int32_t L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/NumberHelpers.cs:13>
|
|
int32_t L_3 = ___0_number;
|
|
return L_3;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/NumberHelpers.cs:15>
|
|
int32_t L_4 = ___0_number;
|
|
int32_t L_5 = ___1_alignment;
|
|
int32_t L_6 = V_0;
|
|
return ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(L_4, L_5)), L_6));
|
|
}
|
|
}
|
|
// Method Definition Index: 26938
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t NumberHelpers_AlignToMultipleOf_mA09DADDCE6E50FA990B046BD74822886B94BFA6D_inline (int64_t ___0_number, int64_t ___1_alignment, const RuntimeMethod* method)
|
|
{
|
|
int64_t V_0 = 0;
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/NumberHelpers.cs:21>
|
|
int64_t L_0 = ___0_number;
|
|
int64_t L_1 = ___1_alignment;
|
|
V_0 = ((int64_t)(L_0%L_1));
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/NumberHelpers.cs:22>
|
|
int64_t L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/NumberHelpers.cs:23>
|
|
int64_t L_3 = ___0_number;
|
|
return L_3;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/NumberHelpers.cs:25>
|
|
int64_t L_4 = ___0_number;
|
|
int64_t L_5 = ___1_alignment;
|
|
int64_t L_6 = V_0;
|
|
return ((int64_t)il2cpp_codegen_subtract(((int64_t)il2cpp_codegen_add(L_4, L_5)), L_6));
|
|
}
|
|
}
|
|
// Method Definition Index: 26768
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FourCC_op_Equality_m3D556D9BE044419563A7F44DCA15F1EB30656D4C_inline (FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_left, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___1_right, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/FourCC.cs:149>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = ___0_left;
|
|
int32_t L_1 = L_0.___m_Code;
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_2 = ___1_right;
|
|
int32_t L_3 = L_2.___m_Code;
|
|
return (bool)((((int32_t)L_1) == ((int32_t)L_3))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 25642
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool InputEventStream_get_isOpen_mEE33B97DA48F80B43BCE58D08FCAE51958E6459D_inline (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:15>
|
|
bool L_0 = __this->___m_IsOpen;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25644
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputEventStream_get_numEventsRetainedInBuffer_m4656DA6E9272986459D283EE8B8F74773C2D130A_inline (InputEventStream_t2554B37D1CA000A187A16415D63972F80010DEB9* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventStream.cs:22>
|
|
int32_t L_0 = __this->___m_NumEventsRetainedInBuffer;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25733
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DeviceInfo_get_deviceId_m1F56DCC1850CA1B775C357DA6D521F04EA74F0C6_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1531>
|
|
int32_t L_0 = __this->___m_DeviceId;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25735
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DeviceInfo_get_layout_mC531D6400FCF8EE7CCBE96D0DC9328BC0A5AC24C_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1541>
|
|
String_t* L_0 = __this->___m_Layout;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25737
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED DeviceInfo_get_stateFormat_mA04A926E1277535752AC4117996C3B0F89D26916_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1552>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = __this->___m_StateFormat;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25739
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DeviceInfo_get_stateSizeInBytes_mD21A7DBF02B25079F7A1F1482AC2EFE5A86F5C9C_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1561>
|
|
int32_t L_0 = __this->___m_StateSizeInBytes;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25734
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_deviceId_m76EE4AFBA1FA3FFACF2E017498621E66A819DEBD_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1532>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_DeviceId = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25736
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_layout_mB0175279434FFE48B744FE2CA4800A1EF24B2D69_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1542>
|
|
String_t* L_0 = ___0_value;
|
|
__this->___m_Layout = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Layout), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25738
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_stateFormat_mFC8581D56C34FFCBF8264CFD61BA12CE56755478_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1553>
|
|
FourCC_tA6CAA4015BC25A7F1053B6C512202D57A9C994ED L_0 = ___0_value;
|
|
__this->___m_StateFormat = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25740
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DeviceInfo_set_stateSizeInBytes_m7D7507BD0D817A86E99E3E44E216B31855ED06B3_inline (DeviceInfo_tAB83FF3BB4996BA68DFDF5D6255C1FEBB452AE52* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1562>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_StateSizeInBytes = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 35715
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline (ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD* __this, String_t* ___0_name, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_name;
|
|
intptr_t L_1;
|
|
L_1 = ProfilerUnsafeUtility_CreateMarker_mC5E1AAB8CC1F0342065DF85BA3334445ED754E64(L_0, (uint16_t)1, 0, 0, NULL);
|
|
__this->___m_Ptr = L_1;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25701
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 Enumerator_get_Current_m3C388C6F62B1736308A7B1AAB5D1AE461B2D50CC_inline (Enumerator_t6DF3D5CC6EB756C7583B28E1CA7B752A8E591A75* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:977>
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_0 = __this->___m_Current;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25705
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReplayController_set_finished_m05C11A4E622954AFDACE0F7AB76E93EEECD6B6A2_inline (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1034>
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CfinishedU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25709
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReplayController_set_position_m4948A3C77785BCBBE721AC7C452C470A9C24C098_inline (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1046>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CpositionU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25706
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ReplayController_get_paused_mA3967138FEFDD72AE8823B2B2DACEBE6E5555F30_inline (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1040>
|
|
bool L_0 = __this->___U3CpausedU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25708
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReplayController_get_position_m39297BBE091E3E76FDD27B71AA7355148E908B88_inline (ReplayController_t88691435BC5F2A470BB08FDFD9C91ECA8DF0523C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Events/InputEventTrace.cs:1046>
|
|
int32_t L_0 = __this->___U3CpositionU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 601
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 22773
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void* InputControl_get_defaultStatePtr_m0AB5C2504696867BAC98126C4A352141389C3160_inline (InputControl_t74F06B623518F992BF8E38656A5E0857169E3E2E* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InputStateBuffers_t338A1714D01276EEEF5F8CD6AE81DFED939D5968_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Controls/InputControl.cs:961>
|
|
void* L_0 = ((InputStateBuffers_t338A1714D01276EEEF5F8CD6AE81DFED939D5968_StaticFields*)il2cpp_codegen_static_fields_for(InputStateBuffers_t338A1714D01276EEEF5F8CD6AE81DFED939D5968_il2cpp_TypeInfo_var))->___s_DefaultStateBuffer;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25792
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_maxNumDevices_m0FEEC51F3510A61C081B4C4159FD4453CC847428_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:20>
|
|
int32_t L_0 = __this->___U3CmaxNumDevicesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25793
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_maxNumDevices_m9F11EC470346A3CB0048D2DAE5B38E3344E51C08_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:20>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CmaxNumDevicesU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25794
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentNumDevices_m95D2F0878FD22AFB147019A4511CEA6856FAFB45_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:26>
|
|
int32_t L_0 = __this->___U3CcurrentNumDevicesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25795
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentNumDevices_m548C2BF7385931D42DD8FF22BB010FF602AC14EA_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:26>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CcurrentNumDevicesU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25796
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_maxStateSizeInBytes_m105BD2DF857955095D11D617F738350B638C4EF2_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:31>
|
|
int32_t L_0 = __this->___U3CmaxStateSizeInBytesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25797
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_maxStateSizeInBytes_m31330B150C4D44C95E79B2BCF9AC422E9D3CD105_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:31>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CmaxStateSizeInBytesU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25798
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentStateSizeInBytes_mF8F8501666ADFA81A4BD4DF71F8E27847B0D6EA5_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:36>
|
|
int32_t L_0 = __this->___U3CcurrentStateSizeInBytesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25799
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentStateSizeInBytes_m9BBDBBD4A727B654A36F2396F40DB4D0E137CD7D_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:36>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CcurrentStateSizeInBytesU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25800
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentControlCount_mEBDE0B72A6A56819D2BBA87394C386EECEBD78F3_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:42>
|
|
int32_t L_0 = __this->___U3CcurrentControlCountU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25801
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentControlCount_mDF1F18CB6B69696C953510A4FE58C87D6FA72729_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:42>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CcurrentControlCountU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25802
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_currentLayoutCount_m69DC513C2784189A9B3F214A3332DD9DC352A528_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:47>
|
|
int32_t L_0 = __this->___U3CcurrentLayoutCountU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25803
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_currentLayoutCount_m43BD6E6E44CA3DF2C58AC09B180F83DEC5FDAF4A_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:47>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CcurrentLayoutCountU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25804
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_totalEventBytes_m04F4BFD498777335799D63A81C29AA97143CC13B_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:52>
|
|
int32_t L_0 = __this->___U3CtotalEventBytesU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25805
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventBytes_m3E9A896A75E1A57ABA893EA1F63E98E041D404ED_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:52>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CtotalEventBytesU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25806
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_totalEventCount_m2EA373AAB2B4975C2BBAE3C37DA78946BB5BD0D0_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:57>
|
|
int32_t L_0 = __this->___U3CtotalEventCountU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25807
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventCount_mE8188B2A42002E32190B8981B2B5D2D08A95DBE5_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:57>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CtotalEventCountU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25808
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t InputMetrics_get_totalUpdateCount_mCF84FB729C509B5D85A54EA1A6AC36980ED2CC61_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:63>
|
|
int32_t L_0 = __this->___U3CtotalUpdateCountU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25809
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalUpdateCount_mF43ADDD579F92E2727B55A6E10B578180C2019C2_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:63>
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CtotalUpdateCountU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25810
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double InputMetrics_get_totalEventProcessingTime_mCF205D2B52FA9BC1E869BA7A6039FC0E712DABE3_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:73>
|
|
double L_0 = __this->___U3CtotalEventProcessingTimeU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25811
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventProcessingTime_m1C75FA1C698121B1A1C5BE0044264CCAA0304732_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:73>
|
|
double L_0 = ___0_value;
|
|
__this->___U3CtotalEventProcessingTimeU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25812
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double InputMetrics_get_totalEventLagTime_m70516750050E2D62430DB62B5D6E2EB22697C1E6_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:79>
|
|
double L_0 = __this->___U3CtotalEventLagTimeU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25813
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void InputMetrics_set_totalEventLagTime_m486CE7F87D0221E5829B6D7BDE37837CB3D239F4_inline (InputMetrics_t78495D1E8D7F510AC82FAD0A297AE5FA4AAC1338* __this, double ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputMetrics.cs:79>
|
|
double L_0 = ___0_value;
|
|
__this->___U3CtotalEventLagTimeU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 25823
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t UpdateStepCount_get_value_m939CB192D174FC917F8ABE9E05FEC308BFCDB459_inline (UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:89>
|
|
uint32_t L_0 = __this->___U3CvalueU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 25824
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UpdateStepCount_set_value_m94BD09FB80BCEAA8211533A7391D3708C19AF60A_inline (UpdateStepCount_tF3C9095BD6614FD4E6024DAF43DE8F5602D8E324* __this, uint32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/InputUpdateType.cs:89>
|
|
uint32_t L_0 = ___0_value;
|
|
__this->___U3CvalueU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 37871
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___0_x, float ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_x;
|
|
__this->___x = L_0;
|
|
float L_1 = ___1_y;
|
|
__this->___y = L_1;
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9293
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m1725AADC5598DCFB61C4D62EF0808F9F91024286_gshared_inline (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED ___0_item, const RuntimeMethod* method)
|
|
{
|
|
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
HIDElementDescriptorU5BU5D_t9E391A41D8235F774682AAD7A77842E6436DF50D* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_9 = ___0_item;
|
|
List_1_AddWithResize_mA2C48CD761AC55B36110F6DCA27D73A9274391E6(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9342
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED Enumerator_get_Current_m5EA592269528B338C04111C5D99C9FA016762671_gshared_inline (Enumerator_t07EE6E0C44AB43A1D7E0C70F53CC5E680B1C7A60* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
HIDElementDescriptor_t18CA9618F730F541BA1C873745A1AE71823D4CED L_0 = __this->____current;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9282
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m7EC537E6C0E39472BD279471C3FD7294FF8DBB30_gshared_inline (List_1_t66029D02EA129D03A082E470EB98C85812301A0C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9282
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4339FB05BC7860D417DA2CDFFD8B356B9DF262B0_gshared_inline (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9293
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m8E820017C1FBE8A372423716AE53545CD6BA9F39_gshared_inline (List_1_t3858E48BB083F1FE977819934ACB97F9BC44439A* __this, HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
HIDCollectionDescriptorU5BU5D_t2EE9F27CC218220B385B2D167312D3873741FCD5* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_9 = ___0_item;
|
|
List_1_AddWithResize_mDCC9DBFEDF516E8DC0C11B342A27CA9BB9200068(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 1727
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___hasValue;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9342
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 Enumerator_get_Current_m61FE609D85AF8173D12BD2876CCD1039024B4F54_gshared_inline (Enumerator_tD793BFBCC557EC7095B58A33418A2627510CBDF8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
HIDCollectionDescriptor_t9235094BD1880EA02E4E07F9C02AC98088EFB9F7 L_0 = __this->____current;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9282
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m6EB5C1623A4D0D19C03B7C46E083FD7701319954_gshared_inline (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9293
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m1FD2135A63F0BDE6E3127763ACDA2591AFC774F4_gshared_inline (List_1_t268ADAE63E623B42094720668F8DB571CF6085E6* __this, HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F ___0_item, const RuntimeMethod* method)
|
|
{
|
|
HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
HIDReportDataU5BU5D_t41883CE4CD3C7687A98524CFDB47083CCBE55955* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
HIDReportData_t2F0D5DFC9087B851FA3288EFBB6FF4EAA863BB4F L_9 = ___0_item;
|
|
List_1_AddWithResize_m756AA652ADCF750A88AE140E9AD3FED0D6394BF6(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9301
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
__this->____size = 0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9293
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
int32_t L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (int32_t)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_9 = ___0_item;
|
|
List_1_AddWithResize_m378B392086AAB6F400944FA9839516326B3F7BB8(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9282
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 27079
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlyArray_1_get_Count_m37AE229E2BFB74375A7BD545982B745F982762F8_gshared_inline (ReadOnlyArray_1_t40B8DDDCD6ACBA3B2C0AF1387BE23D68DAEF77B5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/Utilities/ReadOnlyArray.cs:134>
|
|
int32_t L_0 = __this->___m_Length;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 35965
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4_m17292481A0F243A8264A1F8A070E7B6246BD1B57_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint32_t L_0 = sizeof(ExtraDataPerTouchState_tD418875A1F4A8898F6FA62CE313BEB447D687CB4);
|
|
return (int32_t)L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 26023
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* Record_get_owner_mE1A451C654D70DF2754170FA45A6A19AD3483471_gshared_inline (Record_t4205712C85C6F00A9F1DC4D23E20F595FCB4F6A4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
//<source_info:./Library/PackageCache/com.unity.inputsystem@be6c4fd0abf5/InputSystem/State/InputStateHistory.cs:1385>
|
|
InputStateHistory_1_tFE6497AA1E7DC5B54CA3C00976576A7E88C77798* L_0 = __this->___m_Owner;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 35965
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisTouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97_mFE961AB914D8126DC425FAFC788195746A8CBA59_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint32_t L_0 = sizeof(TouchState_tB05024FB4BCE85BAB82D2224AD4BF1E8B4589A97);
|
|
return (int32_t)L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 35826
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_gshared_inline (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
void* L_0 = __this->___m_Buffer;
|
|
return (bool)((((int32_t)((((intptr_t)L_0) == ((intptr_t)((uintptr_t)0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
// Method Definition Index: 35965
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UnsafeUtility_SizeOf_TisInputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5_m0A49629FF4362F75BF20F043E1BA1E7D050C76F9_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint32_t L_0 = sizeof(InputEvent_t10F727342D1A79DCFC06529C203BB61C194AEBC5);
|
|
return (int32_t)L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 623
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Func_3_Invoke_m0F49563C5B847FD0AA5D523797CC38C4C1476D8F_gshared_inline (Func_3_t0072F82DFBE56A425CAA051639D6DF09CB126719* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (RuntimeObject*, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 9273
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m5A886C4B3E54DEA04D456E49D7FB92A4545FCD8F_gshared_inline (KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___key;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 9293
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m2EE80016B94F10A7E9150D8ABB6C5668609CBAB3_gshared_inline (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
InputEventPtrU5BU5D_tC8D2CB7018396F4C074F2202E79522E9B0979821* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
InputEventPtrU5BU5D_tC8D2CB7018396F4C074F2202E79522E9B0979821* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
InputEventPtrU5BU5D_tC8D2CB7018396F4C074F2202E79522E9B0979821* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
InputEventPtrU5BU5D_tC8D2CB7018396F4C074F2202E79522E9B0979821* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 L_9 = ___0_item;
|
|
List_1_AddWithResize_m4C69A872DFBE5B23AF8130D60EE50C1D33E6D1A1(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
// Method Definition Index: 9282
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m10A948AD01428DA6841D895BFBE2F81D70667D8A_gshared_inline (List_1_tDED7E0C66749F8E622E5B6D639BE146DBBC37448* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 603
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m30D56EDF2807EF309EEF182BA63A3F0EF0B08A15_gshared_inline (Action_1_t86516C65829BB92A2767853A28A8B9C092189D2C* __this, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0 ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, InputEventPtr_tC2A58521C9AFB479CC88789D5E0797D817C721C0, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 9274
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_m83DA000FF3605DAD9160D02FB36863DF77DB468A_gshared_inline (KeyValuePair_2_tA6BE5EEAC56CB97CB7383FCC3CC6C84FAF129189* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___value;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Method Definition Index: 603
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_gshared_inline (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* __this, bool ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, bool, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
// Method Definition Index: 37836
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline (float ___0_a, float ___1_b, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
float L_0 = ___0_a;
|
|
float L_1 = ___1_b;
|
|
if ((((float)L_0) > ((float)L_1)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
float L_2 = ___1_b;
|
|
G_B3_0 = L_2;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
float L_3 = ___0_a;
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
float L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// Method Definition Index: 1902
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar* L_0 = ___0_ptr;
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0);
|
|
__this->____pointer = L_1;
|
|
int32_t L_2 = ___1_length;
|
|
__this->____length = L_2;
|
|
return;
|
|
}
|
|
}
|