25898 lines
1.3 MiB
25898 lines
1.3 MiB
#include "pch-cpp.hpp"
|
|
|
|
#ifndef _MSC_VER
|
|
# include <alloca.h>
|
|
#else
|
|
# include <malloc.h>
|
|
#endif
|
|
|
|
|
|
#include <limits>
|
|
#include <stdint.h>
|
|
|
|
|
|
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 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, typename T2>
|
|
struct VirtualFuncInvoker2
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3>
|
|
struct VirtualFuncInvoker3
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
|
|
struct VirtualFuncInvoker5
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct InterfaceActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, 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, typename T2>
|
|
struct InvokerFuncInvoker2;
|
|
template <typename R, typename T1, typename T2>
|
|
struct InvokerFuncInvoker2<R, T1*, T2*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2)
|
|
{
|
|
R ret;
|
|
void* params[2] = { p1, p2 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3>
|
|
struct InvokerFuncInvoker3;
|
|
template <typename R, typename T1, typename T2, typename T3>
|
|
struct InvokerFuncInvoker3<R, T1*, T2*, T3*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3)
|
|
{
|
|
R ret;
|
|
void* params[3] = { p1, p2, p3 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
|
|
// System.Action`1<UnityEngine.AsyncOperation>
|
|
struct Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB;
|
|
// System.Action`1<System.Object>
|
|
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
|
|
// System.Action`1<System.String>
|
|
struct Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A;
|
|
// IngameDebugConsole.CircularBuffer`1<System.Object>
|
|
struct CircularBuffer_1_tCE48A157807D790AE588042B34881E85CC57CEB6;
|
|
// IngameDebugConsole.CircularBuffer`1<System.String>
|
|
struct CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A;
|
|
// System.Comparison`1<UnityEngine.EventSystems.RaycastResult>
|
|
struct Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC;
|
|
// IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp>
|
|
struct DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20;
|
|
// IngameDebugConsole.DebugLogIndexList`1<System.Int32>
|
|
struct DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F;
|
|
// System.Collections.Generic.Dictionary`2<IngameDebugConsole.DebugLogEntry,System.Int32>
|
|
struct Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
|
|
struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,IngameDebugConsole.DebugLogItem>
|
|
struct Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,System.Object>
|
|
struct Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>
|
|
struct Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.LogType,UnityEngine.Sprite>
|
|
struct Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7;
|
|
// System.Collections.Generic.Dictionary`2<System.Object,System.Int32>
|
|
struct Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1;
|
|
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
|
|
struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
|
|
struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.ISimpleCollator>
|
|
struct Dictionary_2_tFA0E7CD5951B83DD87A65E89D971A68E538F9470;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Object>
|
|
struct Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710;
|
|
// System.Collections.Generic.Dictionary`2<System.Type,System.String>
|
|
struct Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE;
|
|
// System.Collections.Generic.Dictionary`2<System.Type,IngameDebugConsole.DebugLogConsole/ParseFunction>
|
|
struct Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A;
|
|
// IngameDebugConsole.DynamicCircularBuffer`1<IngameDebugConsole.QueuedDebugLogEntry>
|
|
struct DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965;
|
|
// System.EventHandler`1<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs>
|
|
struct EventHandler_1_tF46A0252BA462E35F6B72C69AB6C0F751E7443D7;
|
|
// System.Collections.Generic.IEnumerable`1<System.Object>
|
|
struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9;
|
|
// System.Collections.Generic.IEnumerable`1<System.String>
|
|
struct IEnumerable_1_t349E66EC5F09B881A8E52EE40A1AB9EC60E08E44;
|
|
// System.Collections.Generic.IEqualityComparer`1<IngameDebugConsole.DebugLogEntry>
|
|
struct IEqualityComparer_1_tCA9ECA819C6B7D677BBFC8D35AC9E54F63462A91;
|
|
// System.Collections.Generic.IEqualityComparer`1<System.Int32>
|
|
struct IEqualityComparer_1_tDBFC8496F14612776AF930DBF84AFE7D06D1F0E9;
|
|
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.LogType>
|
|
struct IEqualityComparer_1_tB08D43B5089201DBE3C39BCED072AD82A01403ED;
|
|
// System.Collections.Generic.IEqualityComparer`1<System.Type>
|
|
struct IEqualityComparer_1_t0C79004BFE79D9DBCE6C2250109D31D468A9A68E;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<IngameDebugConsole.DebugLogEntry,System.Int32>
|
|
struct KeyCollection_t130240CF1BEC4C4EDD1CB869F4955DCBCBAAC989;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,IngameDebugConsole.DebugLogItem>
|
|
struct KeyCollection_t1DD4E23A70A3D35A332C93226D049F56278CD515;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.LogType,UnityEngine.Sprite>
|
|
struct KeyCollection_t721740278637AB25E68F61A638EAA2C84F936CFA;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.String>
|
|
struct KeyCollection_t555B8656568D51D28955442D71A19D8860BFF88C;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,IngameDebugConsole.DebugLogConsole/ParseFunction>
|
|
struct KeyCollection_tA1ACCAAB78892BD2ED204AA2917D808DBD72C718;
|
|
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>
|
|
struct List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F;
|
|
// System.Collections.Generic.List`1<UnityEngine.CanvasGroup>
|
|
struct List_1_t2CDCA768E7F493F5EDEBC75AEB200FD621354E35;
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo>
|
|
struct List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4;
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntry>
|
|
struct List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983;
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntryTimestamp>
|
|
struct List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6;
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.DebugLogItem>
|
|
struct List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14;
|
|
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>
|
|
struct List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3;
|
|
// System.Collections.Generic.List`1<UnityEngine.GameObject>
|
|
struct List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B;
|
|
// System.Collections.Generic.List`1<UnityEngine.UI.Image>
|
|
struct List_1_tE6BB71ABF15905EFA2BE92C38A2716547AEADB19;
|
|
// System.Collections.Generic.List`1<System.Int32>
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73;
|
|
// System.Collections.Generic.List`1<System.Object>
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
|
|
// System.Collections.Generic.List`1<System.String>
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
|
|
// System.Collections.Generic.List`1<UnityEngine.UI.Text>
|
|
struct List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48;
|
|
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>
|
|
struct TweenRunner_1_t5BB0582F926E75E2FE795492679A6CF55A4B4BC4;
|
|
// UnityEngine.Events.UnityAction`1<System.Object>
|
|
struct UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A;
|
|
// UnityEngine.Events.UnityAction`1<System.String>
|
|
struct UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B;
|
|
// UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>
|
|
struct UnityAction_1_t8FBFBC01962B7293F0E33F9D6F1CEAF2896D8669;
|
|
// UnityEngine.Events.UnityEvent`1<System.Object>
|
|
struct UnityEvent_1_t3CE03B42D5873C0C0E0692BEE72E1E6D5399F205;
|
|
// UnityEngine.Events.UnityEvent`1<System.String>
|
|
struct UnityEvent_1_tC9859540CF1468306CAB6D758C0A0D95DBCEC257;
|
|
// UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>
|
|
struct UnityEvent_1_t9A868DD8EBFC0D9D8134D903A170ECBDEE567932;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<IngameDebugConsole.DebugLogEntry,System.Int32>
|
|
struct ValueCollection_t4AD1F16E2C12532B8CC6F4475152A8E846B6E742;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,IngameDebugConsole.DebugLogItem>
|
|
struct ValueCollection_tCA4EBB242775E59481F7C3AA2F79A22601A91AC0;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.LogType,UnityEngine.Sprite>
|
|
struct ValueCollection_tB80E3388C4963AE0D93F28FE14F38C366503A493;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.String>
|
|
struct ValueCollection_t6E6C24D8CE99E9A850AB95B69939CBBA2CB9E7D9;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,IngameDebugConsole.DebugLogConsole/ParseFunction>
|
|
struct ValueCollection_t976B228AB800E2131F3B0FD7C5216362DA2CAAEF;
|
|
// System.Collections.Generic.Dictionary`2/Entry<IngameDebugConsole.DebugLogEntry,System.Int32>[]
|
|
struct EntryU5BU5D_t1BB967349CDB8C52834E433CD73BAA8C20707AE1;
|
|
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,IngameDebugConsole.DebugLogItem>[]
|
|
struct EntryU5BU5D_tC0263C3EB62F224BA85554A1ADF69D6BBBE83B07;
|
|
// System.Collections.Generic.Dictionary`2/Entry<UnityEngine.LogType,UnityEngine.Sprite>[]
|
|
struct EntryU5BU5D_t45F0EB53CB4C829C968A3A594C629E0DEECA05A4;
|
|
// System.Collections.Generic.Dictionary`2/Entry<System.Type,System.String>[]
|
|
struct EntryU5BU5D_t7C07FADA3D121BF791083230AC898F54129541C8;
|
|
// System.Collections.Generic.Dictionary`2/Entry<System.Type,IngameDebugConsole.DebugLogConsole/ParseFunction>[]
|
|
struct EntryU5BU5D_t30E363E0FBE925B36508266C83BEA4E5E170BD44;
|
|
// System.Reflection.Assembly[]
|
|
struct AssemblyU5BU5D_t97B7B4E3FD4DA4944A4BFAA4DC484EA7D990B339;
|
|
// System.Byte[]
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
// System.Char[]
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
// IngameDebugConsole.ConsoleMethodInfo[]
|
|
struct ConsoleMethodInfoU5BU5D_t1337C76EAD1D89166EADBCCD3FAE08B6C3C8BB3B;
|
|
// IngameDebugConsole.DebugLogEntry[]
|
|
struct DebugLogEntryU5BU5D_tD7A340701CFF6219ED046F42D1A4B726AFBB6192;
|
|
// IngameDebugConsole.DebugLogEntryTimestamp[]
|
|
struct DebugLogEntryTimestampU5BU5D_t8E5BB7892CC61C2FD0065B78005D54E21811CDA8;
|
|
// IngameDebugConsole.DebugLogItem[]
|
|
struct DebugLogItemU5BU5D_t19E47B1D4545D24FB08E77DD70D765296117597E;
|
|
// System.Delegate[]
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
// System.Int32[]
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
// System.IntPtr[]
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
// System.Object[]
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
// IngameDebugConsole.QueuedDebugLogEntry[]
|
|
struct QueuedDebugLogEntryU5BU5D_t30F1F371C54CEA07F5410C8B2A60CAEC2CD84878;
|
|
// UnityEngine.UI.Selectable[]
|
|
struct SelectableU5BU5D_t4160E135F02A40F75A63F787D36F31FEC6FE91A9;
|
|
// System.Diagnostics.StackTrace[]
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
// System.String[]
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
// UnityEngine.UI.Text[]
|
|
struct TextU5BU5D_t1D476A037C4542F053D17ADAFA2723F311F9A353;
|
|
// System.Type[]
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
// UnityEngine.UIVertex[]
|
|
struct UIVertexU5BU5D_tBC532486B45D071A520751A90E819C77BA4E3D2F;
|
|
// UnityEngine.Vector2[]
|
|
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA;
|
|
// UnityEngine.Vector3[]
|
|
struct Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C;
|
|
// System.Action
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
|
|
// UnityEngine.UI.AnimationTriggers
|
|
struct AnimationTriggers_tA0DC06F89C5280C6DD972F6F4C8A56D7F4F79074;
|
|
// System.AppDomain
|
|
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F;
|
|
// System.Reflection.Assembly
|
|
struct Assembly_t;
|
|
// System.AssemblyLoadEventHandler
|
|
struct AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42;
|
|
// System.Reflection.AssemblyName
|
|
struct AssemblyName_t555F1570F523D87D970C6E7F27B1B44C83EADDD2;
|
|
// System.AsyncCallback
|
|
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
|
|
// UnityEngine.AsyncOperation
|
|
struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C;
|
|
// System.Attribute
|
|
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
|
|
// UnityEngine.EventSystems.BaseEventData
|
|
struct BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F;
|
|
// UnityEngine.EventSystems.BaseInputModule
|
|
struct BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1;
|
|
// UnityEngine.EventSystems.BaseRaycaster
|
|
struct BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832;
|
|
// System.Reflection.Binder
|
|
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
|
// UnityEngine.UI.Button
|
|
struct Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098;
|
|
// System.Globalization.Calendar
|
|
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
|
|
// UnityEngine.Camera
|
|
struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184;
|
|
// UnityEngine.Canvas
|
|
struct Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26;
|
|
// UnityEngine.CanvasGroup
|
|
struct CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094;
|
|
// UnityEngine.CanvasRenderer
|
|
struct CanvasRenderer_tAB9A55A976C4E3B2B37D0CE5616E5685A8B43860;
|
|
// System.Globalization.CompareInfo
|
|
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
|
|
// UnityEngine.Component
|
|
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3;
|
|
// IngameDebugConsole.ConsoleMethodAttribute
|
|
struct ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734;
|
|
// IngameDebugConsole.ConsoleMethodInfo
|
|
struct ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79;
|
|
// UnityEngine.Coroutine
|
|
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B;
|
|
// System.Globalization.CultureData
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D;
|
|
// System.Globalization.CultureInfo
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
|
|
// System.Globalization.DateTimeFormatInfo
|
|
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
|
|
// IngameDebugConsole.DebugLogEntry
|
|
struct DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD;
|
|
// IngameDebugConsole.DebugLogItem
|
|
struct DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230;
|
|
// IngameDebugConsole.DebugLogItemCopyWebGL
|
|
struct DebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3;
|
|
// IngameDebugConsole.DebugLogManager
|
|
struct DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8;
|
|
// IngameDebugConsole.DebugLogPopup
|
|
struct DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B;
|
|
// IngameDebugConsole.DebugLogRecycledListView
|
|
struct DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2;
|
|
// IngameDebugConsole.DebugLogResizeListener
|
|
struct DebugLogResizeListener_tAEB6FDAE1D37AD856CBD82204674E6AC4C1764B5;
|
|
// IngameDebugConsole.DebugsOnScrollListener
|
|
struct DebugsOnScrollListener_t2E15E040AD7FE915FC4F583966EBDE135A4C0DB0;
|
|
// System.Delegate
|
|
struct Delegate_t;
|
|
// System.DelegateData
|
|
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
|
|
// UnityEngine.Event
|
|
struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB;
|
|
// System.EventHandler
|
|
struct EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82;
|
|
// UnityEngine.EventSystems.EventSystem
|
|
struct EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707;
|
|
// UnityEngine.UI.FontData
|
|
struct FontData_tB8E562846C6CB59C43260F69AE346B9BF3157224;
|
|
// UnityEngine.GameObject
|
|
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F;
|
|
// UnityEngine.UI.Graphic
|
|
struct Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931;
|
|
// System.IAsyncResult
|
|
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
|
|
// System.Collections.IDictionary
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
// System.Collections.IEnumerator
|
|
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
|
|
// System.Globalization.ISimpleCollator
|
|
struct ISimpleCollator_t084383013F96378AFFD4540649E086C9C13BFF5B;
|
|
// UnityEngine.UI.Image
|
|
struct Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E;
|
|
// System.IndexOutOfRangeException
|
|
struct IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82;
|
|
// UnityEngine.UI.InputField
|
|
struct InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140;
|
|
// UnityEngine.Events.InvokableCallList
|
|
struct InvokableCallList_t309E1C8C7CE885A0D2F98C84CEA77A8935688382;
|
|
// UnityEngine.Material
|
|
struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3;
|
|
// System.Reflection.MemberFilter
|
|
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
|
// System.Reflection.MemberInfo
|
|
struct MemberInfo_t;
|
|
// UnityEngine.Mesh
|
|
struct Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4;
|
|
// System.Reflection.MethodBase
|
|
struct MethodBase_t;
|
|
// System.Reflection.MethodInfo
|
|
struct MethodInfo_t;
|
|
// UnityEngine.MonoBehaviour
|
|
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71;
|
|
// System.NotSupportedException
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
|
|
// System.Globalization.NumberFormatInfo
|
|
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
|
|
// UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
|
|
// System.Reflection.ParameterInfo
|
|
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F;
|
|
// UnityEngine.Events.PersistentCallGroup
|
|
struct PersistentCallGroup_tB826EDF15DC80F71BCBCD8E410FD959A04C33F25;
|
|
// IngameDebugConsole.Commands.PlayerPrefsCommands
|
|
struct PlayerPrefsCommands_tF5F2E282C801F0F5C1CF7F530FD96CD9B70ECEC0;
|
|
// UnityEngine.EventSystems.PointerEventData
|
|
struct PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB;
|
|
// UnityEngine.UI.RectMask2D
|
|
struct RectMask2D_tACF92BE999C791A665BD1ADEABF5BCEB82846670;
|
|
// UnityEngine.RectOffset
|
|
struct RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5;
|
|
// UnityEngine.RectTransform
|
|
struct RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5;
|
|
// System.ResolveEventHandler
|
|
struct ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692;
|
|
// System.Runtime.Serialization.SafeSerializationManager
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
// IngameDebugConsole.Commands.SceneCommands
|
|
struct SceneCommands_tD919696B0B3F4F289ECA77E9E677A51579914472;
|
|
// UnityEngine.UI.ScrollRect
|
|
struct ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E;
|
|
// UnityEngine.UI.Scrollbar
|
|
struct Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3;
|
|
// UnityEngine.UI.Selectable
|
|
struct Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712;
|
|
// System.Globalization.SortVersion
|
|
struct SortVersion_tBB62978F95905541FC817E11F73A0B1DB392F07E;
|
|
// UnityEngine.Sprite
|
|
struct Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99;
|
|
// System.String
|
|
struct String_t;
|
|
// System.Text.StringBuilder
|
|
struct StringBuilder_t;
|
|
// System.Reflection.StrongNameKeyPair
|
|
struct StrongNameKeyPair_t0657447B6CFAA8FE880A228AA578EC20BC6AF8F2;
|
|
// UnityEngine.UI.Text
|
|
struct Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62;
|
|
// UnityEngine.TextGenerator
|
|
struct TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC;
|
|
// System.Globalization.TextInfo
|
|
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
|
|
// UnityEngine.Texture2D
|
|
struct Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4;
|
|
// IngameDebugConsole.Commands.TimeCommands
|
|
struct TimeCommands_t6DE00ACD4923F4291E15DF7C6CE0C4F9FE100901;
|
|
// UnityEngine.TouchScreenKeyboard
|
|
struct TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A;
|
|
// UnityEngine.Transform
|
|
struct Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1;
|
|
// System.Type
|
|
struct Type_t;
|
|
// System.UnhandledExceptionEventHandler
|
|
struct UnhandledExceptionEventHandler_tB13FF21A6201A59BB462E68CD10C5B5BEE54941C;
|
|
// UnityEngine.Events.UnityAction
|
|
struct UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7;
|
|
// UnityEngine.Events.UnityEvent
|
|
struct UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977;
|
|
// System.Version
|
|
struct Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7;
|
|
// UnityEngine.UI.VertexHelper
|
|
struct VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE;
|
|
// System.Void
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
// UnityEngine.WaitForSecondsRealtime
|
|
struct WaitForSecondsRealtime_tA8CE0AAB4B0C872B843E7973637037D17682BA01;
|
|
// UnityEngine.Application/LogCallback
|
|
struct LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413;
|
|
// UnityEngine.UI.Button/ButtonClickedEvent
|
|
struct ButtonClickedEvent_t8EA72E90B3BD1392FB3B3EF167D5121C23569E4C;
|
|
// UnityEngine.Camera/CameraCallback
|
|
struct CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD;
|
|
// IngameDebugConsole.DebugLogConsole/ParseFunction
|
|
struct ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C;
|
|
// IngameDebugConsole.DebugLogPopup/<MoveToPosAnimation>d__21
|
|
struct U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B;
|
|
// UnityEngine.UI.InputField/EndEditEvent
|
|
struct EndEditEvent_t946A962BA13CF60BB0BE7AD091DA041FD788E655;
|
|
// UnityEngine.UI.InputField/OnChangeEvent
|
|
struct OnChangeEvent_tE4829F88300B0E0E0D1B78B453AF25FC1AA55E2F;
|
|
// UnityEngine.UI.InputField/OnValidateInput
|
|
struct OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B;
|
|
// UnityEngine.UI.InputField/SubmitEvent
|
|
struct SubmitEvent_t1E0F5A2AB28D0DB55AE18E8DA99147D86492DD5D;
|
|
// UnityEngine.UI.MaskableGraphic/CullStateChangedEvent
|
|
struct CullStateChangedEvent_t6073CD0D951EC1256BF74B8F9107D68FC89B99B8;
|
|
// UnityEngine.RectTransform/ReapplyDrivenProperties
|
|
struct ReapplyDrivenProperties_t3482EA130A01FF7EE2EEFE37F66A5215D08CFE24;
|
|
// UnityEngine.UI.ScrollRect/ScrollRectEvent
|
|
struct ScrollRectEvent_t812C011901E6101F2A0FFC34C66AC5F65C0DEC26;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Color_tD001788D726C3A7F1379BEED0260B9591F440C1F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FileNotFoundException_t17F1B49AD996E4A60C87C7ADC9D3A25EB5808A9A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413_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* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_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* OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RectTransformUtility_t65C00A84A72F17D78B81F2E7D88C2AA98AB61244_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SceneManager_tA0EF56A88ACA4A15731AF7FDC10A869FA4C698FA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UnityAction_1_t8FBFBC01962B7293F0E33F9D6F1CEAF2896D8669_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral00DD22EEB247C3B3BE3F13F0A612FD41C0F445DC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral072BA90B274B502615639084DC3D7FCC63407A24;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0B44FACB666ADB4330FE19222A5701DCCCFE66CC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1168E92C164109D6220480DEDA987085B2A21155;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral122D902F8C2D9ED0271BCE63CA76BE9AEE68CC14;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1466CD4A4B2CBC63C1880CF7F1F3227CD9761932;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral14EFC2C6E9EEDD3D7AD722A958977C463EF508F0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral195EE01589A1BFBA8BC53B99BC20604632BE0374;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1B13C5DF905C4A18BC783FF0CC55D190A55FDEEF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1BE00BDC62CA306C2DAE88EB0A2832DAB2CD5600;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1CE5E9DC21CEDE83448EC29CF472339E4BF67AED;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1EA131BABC70292CBED6E35C3358455D9DB791ED;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral205303C28798C5EA52B9388BE0A95CE13315CB1C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral21B84D4894236A6BCE11E8F3A8448A14FD4DD861;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral242B7D4EF6656C870761A7B42734BD96EC248116;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2504497CC1E1D7D1E44F1FC97ACC848FEFB0A4F0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral27C7727EAAAD675C621F6257F2BD5190CE343979;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2C945D246C2B7897F000E1C591A686EB9EF010F0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2E26CE1BA5B498EB98B911034FE7BE0DBCF4E4E2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral313E0A856EB7575E1195D830714F903CCE78FE20;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral353C4741109DDADB95190E7F01B8D87E35D1673B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral38BAB054DA9F959809102ADA08F0F63973ECA525;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3A309A93FCF93ECA490284F0B4C22C548CCCEEB8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3A4AC05C4F5818A6FE9A499AD41C9753D9935F72;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3A971881AF6B7B211E34707E857DEC5F36487877;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3B9AF2352AA53746DECBC93E6788E1DC58F70219;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3BA5C03AAA09A16B06FCFDAA9B64713B82A9D2E4;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4289EA0CA6C1D59E9F94A1B6A8BCCF5BAA7F3613;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4379B0249B80A34ABC2748B5F0D030FD7D4E007C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral46397406B63E1E597FEFA423B35211F7B950C788;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4D11215345B46832ED9FC6C2268FB1340D22A8B3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4D2A7DC38E3D06969C09083548DE5A6AC3F8CE8E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4E2E9D9750DD8419A32C2FCBF9367EBAD244B5CF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4E6A14ED6BDC6C214624E6D07B51CEA65B43C35B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4E8D6ADF8FD5A3D340011CA21212EA76CFA77176;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5264A12B2224A32D9F3F2C8516A832E29A16F8FE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral52668B99A41E5E2F8CDE0E8B4D46D3AE5E91D339;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral545CB94BC7341B071EE1DF8F30487E957977109E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5825648A9CDA5C5DE83CF430A041B6EAF17D66BE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral593E1A8DF72FB8FFD3904B04C862F736FA2561AF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5B41A58E45555854EC2026B9B5F8243AA9E7ED4B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5FF374709F3F171D980E4E8BEA80A7954877FE64;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral622F5FF68A93093A1D312703FF92713F8BF2C946;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral644C842498F9CA135C43D97A58C8C3AA7FA31CE2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6836D94586B3887F0DB2295A1C064F27F99A5DE2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6855F4EC54AF75D6CAC8881791FBD2C863F2C1C9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral685AAD315643CB18DF2FB0FDBD65960F704C6706;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6A071BC7935C1CC6E27700BE27D860C5926D99C0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6AE0AF42824DD8FA6E3D57D5E89CF59753268DBD;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6D2D60FB81DB361B60B9512761B3ED9FF250BB96;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6D6D8E86DBD851D1A807A44DC76915458B0CA61A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6F1975603AAE377B592571C48C0494F1FE06976C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral73A5AF7F44A99A0DFD7C423DB6151C3F98356BDB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral79CEC13F0CDE1D8B6306BE0D3B47994AC53C6D3C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7E70AF961A2F88ADB9DB7B9C3B5F25A532C1570A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral813C79655CE3ED707AE14612C0DEA0D767D00F51;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8239DDE7DBC91495DACC42B52FAF15E9C617D4D7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral848A97F7360A08955AB3B08A739AFC04D590A51A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral866946C1436C46F37E58EA65BAEB1FBCD7EA9FA6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8CD9FA2586F8BF6FD431CC3EA8B8B1EAFB013099;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8F10756DCEBC5D3850F738F90B6A677D8FF1459D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral90F319F9C4138C3D70C6BA6CE014489F79A75843;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral92268EB187B60388ABDE4FB41CAD03848C3E99A9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral96EFDACF4E9C416F491557F2D88D164161ACA045;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral973C45718ACB19FB28D206360A3094F43D27EDED;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9743367EF85DF9405A17FA9B3523524E8EC33B5E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral998D298BA7A34FAEDAF3D4DF744B85C69D48AB41;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9AC36C3A3EC82C292FD998FA2F3C73EFBC571F3A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9CBDA40613A4F3928C6449E5905E244B84102D23;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9E4FDEF2EDEFAC6252CCFD38B4CBAAED06B28AB0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9ED931619E39F59A8520C1E3B03FEA2E9A56FB60;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9FE2D0640908C4E0A09AF5BF88E4681FB8257B4C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA05EDDE056ADD32DBD9E3AA37D1C7DA9D817E2AE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA39CC7AB32E876B0A2453058CC6C522CAC51AB69;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA77F230BE5C829677EF9BDD85B86D074B5371536;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAB6E4B33D18D43371E9CAA8B5F1BAB030A6A6C42;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAC7DDA0E9505413BF55D5660BE2BF7E8227C3F6A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAD44B1DB50942F5EE9433DEDDCC33BEC04733834;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB23C3717573626FB4C3C7DF5C19EDE7689837214;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB427CCF6254D0C0B128ABC4D756782736D6F11B3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB5478C95274324097FA9241C396019384D456D6C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBCA50B04709EAD37B11D1C70844BB22E450AA16E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBCA7DDD073AD5DB21CC612ADB1833BF1A5D32261;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC12B937AA1BFC0EC393DC0DED57F5DE36A394386;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC3A6C9992A21401C104E6402B6589EB9CB00BE43;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC613D4D2FE3F5D74727D376F793286A2BCBB1391;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC890860BB91B6719189E6ABF97BF5E67F3B0AD2F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC8F2FA22890DE39532C58F0896BE770734656AC7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCBE844AF922BC0AC1AB4CA94466DC7FD7038D0E2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCE3EBCE412B18861E9A01C70A934C049AC0DE244;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD3617E11EB8FFA6578B5DE0FBB98C4C20AA8378C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD4CE3559A2E2973C19617C23E21CA20E9DAD861A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD54C0512C5F7B23D31D4A508DDC7D1D90A722C15;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD62FCB67A840E8EF3FF0DEE3206BDC74DD52B720;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD7F909241ECF25B1D55FDC28E3218B13C12BEAB9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD99ED39183CCE9D128A0FFF60FBEF9678C00D6F3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDB37F2BAE93C1ED89913B8128BE02979A0E704E1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDE2BB7271C3ADD797F43A7DAE3B1E1D64468A348;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE10CE76A36830983737AFC7AB5662B41A8D7111B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE327053B771914499097898B583411B6D78DA1DE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE566E6091771397A8847DE9F0E5AF31E5E383CA7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE5AE18385283D6C5462AF087AEC09F611FA4015E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEB36FD690C32F382C0899D0B469BC014B3080EC1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEFFB7168E3613E48A681A1CF8ABA8CE48952519A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF1529E632E7FD599BCDE055FB1A61226F97EC230;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF2EE4ABF165BEDC0BA04FF7D888EE038EBD80B8A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF64BD70CEAFBE476C3DCEE5C17D79CFC7346A14E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF64D2ED522CC8AA69BAF45AFAFC9A4B7B045672B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF7DEEA4EA8EE7025215B653048871BCA345D3423;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFD4AADFE240628ED07070E31A6FAC66EE94C9452;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFDDC8DE4EE1BCC5393C6C86CB9CD496FC7076771;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFE08003D32C174FE05D37786290DF480267E0A4A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFF4B33BFCEDB53E4FD45237E05792EBB05A408D0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFFA301E93C47E7C4218CADE5DC51C7C8F9CF76EA;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CircularBuffer_1_Add_m4CCBE4F7A19B2F77BD1935D7A0DBE89B9A51217B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CircularBuffer_1__ctor_m5ABA82D2EC7ECE4256398E62D68629E6B59BE9C9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CircularBuffer_1_get_Count_m14C7581AC31603481ACBF6A183A4A466EE202205_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CircularBuffer_1_get_Item_m9F70975FC739CFFAB235BC282293A7E8290D96A1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Color_set_Item_mB7A7D9F6632CDA2F9CE2E817776010653C2A20B2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentInParent_TisDebugLogResizeListener_tAEB6FDAE1D37AD856CBD82204674E6AC4C1764B5_mF02A4B666F5DCABE759B5071135F7F6B1ACE8536_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentInParent_TisScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E_mD5D105BD6034A3131A91D7B6534D7E74834D72AD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mFF8BA4CA5D7158D1D6249559A3289E7A6DF0A2BB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisCanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094_mA3B0428368982ED39ADEBB220EE67D1E99D8B2D2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisImage_tBC1D03F63BF71132E9A5E472B8742F172A011E7E_mE74EE63C85A63FC34DCFC631BC229207B420BC79_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisInputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140_m08978F3683B8CCF83910BA8BB0A4F786A6361896_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_AddCommand_TisString_t_m56B48A18D995EDA3186C3ABCA826924E82120333_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_LogAllCommandsWithName_mE66120EA06927650B2D14A4DC9291C9FD34F4B2D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_LogAllCommands_m978E37DE77B64B1BFEBEAE76A009FC8B6869E1EC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_LogSystemInfo_mB8DFBFE050EC55468EDF6106D49D060C5E2AB622_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseBool_mEF25361C5A16EA42E637C9A5C4CAAA9B69FE6C93_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseBoundsInt_m530D51F98125A1FBAA8A063D1A3085FDA6CF0F7C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseBounds_mDCA2A9708F851390931A57FF8E5FB40A2AA627B9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseByte_mDCD41E40AF9A49B3000FB4F9CA3476AC28E4C172_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseChar_mE26B50B4C917AC6EA436AE99B798EC443A3C61BC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseColor32_mB7E40A40CF0B3BF6360DF08350938199400F71BF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseColor_m143BF87018F4A2B5D6F6E788457C66114F6B12EC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseDecimal_m474453B063948DD000A23560EFFAC050937AF2AA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseDouble_mE0E87D6FA7478B20157C50AB3CC6FA3B1D2AEA94_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseFloat_m1D8D2B2D33A52F4564830459382BA43F178EFDD8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseGameObject_mF3CB80573688D1F357974DD9D979099F3FFF4466_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseInt_m89E83041C6A5BBE5D15158F8463E7791967D99DA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseLong_m931B8028A8F8FA1FB4DC8BDFFCE46D640329BCBA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseQuaternion_mD00B4033687BC4E5FB517201982EE7011CB5CED6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseRectInt_m872D02399F3D0E1AB96EA4C5E7ECEC7A646AE975_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseRectOffset_m72AF3CF248A32FA772AB4D657C9A8A7A34E686CB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseRect_m387D9CDCD3040CEB10B7C96FB7D5BE8EED3CA591_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseSByte_mB24E4FD123682684CED79E98F16BEC0C72575B10_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseShort_m5F4567CA60623F25C9EB8470354C5C2844A715F1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseString_mC6A889D46770639BE9916E34C01111BDA20B4195_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseUInt_m1DC3574D7B9A04530134BFFBDBAC11F4638F5C04_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseULong_mE10F56112556D7CA1DDEA4AA6419A4D81DE2E5C9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseUShort_m5063AAAD632520CCAE05D2183F8C6EC36F5789DC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseVector2Int_m3649B9BC937B4664ACC7CA2F0200C63FBB25072E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseVector2_m7C7FA8F64A90CC149A78E4F53E23101F4320EF17_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseVector3Int_mD25E0226F9D50907FA52B655D84A9BFE58F28304_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseVector3_m1180FCC0F42A09E6A8436E2864EB376CE2317373_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogConsole_ParseVector4_mD631138EB5D4E11480D70BE1BC91E717E5E26CA6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogIndexList_1_Clear_mAA7E9A2FBFD40AC07610639B5712F4FE060BDDC6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogIndexList_1_Clear_mD2D832E651D36136AC8CAB51E17567950F882BD0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogIndexList_1_IndexOf_mDAF87C3A6990C857499B37310F685BA31A1A9C54_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogIndexList_1__ctor_mA89F322ECBB6B3A499BFE45D2D21FE45F550DA79_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogIndexList_1__ctor_mFDB99EECA2932B97D971CD576697FA8F3877ABCD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogIndexList_1_set_Item_m44047632959125DE52AF27BC23E7AABABA65348F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogManager_ClearLogs_m1CDDE08626E2804E6E16556212E2990FFE0FFD09_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogManager_CollapseButtonPressed_m1A9E0352DBC00AD07E4AE7DC1C64BD91A9F56011_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogManager_FilterErrorButtonPressed_mF7B8232DE7C74CFB674C4D50DA07417F690D05C5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogManager_FilterLogButtonPressed_m63FFD1470E923DC8ECA3969A1EE8B71176A249BC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogManager_FilterWarningButtonPressed_mE585A7869AADA4969E16AC2BBB9C959FD1D43B64_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogManager_HideLogWindow_mDA216839443A72537E963035E9DEC6188631E3D2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogManager_OnEndEditCommand_m6A00CF0CD88DE7DDD5E68262AE2CE34DBF3C2307_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogManager_OnValidateCommand_m47B17FC3C7B2322739D37ED0B74DD3866EAC892B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogManager_ReceivedLog_mA4C27364E589E7C61714AB54E614454C046317CA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogManager_RefreshCommandSuggestions_mFCF8CC3D6641DA413AB30A52D25C37FDFC9A9383_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogManager_SaveLogsToFile_mA732B3362E923B9B400117C7D6A249E2078BB3E1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogManager_SaveLogsToFile_mF9FAE140F4FA5B15748622C1FBEC0760BBDE9508_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogManager_SearchTermChanged_m6498FD8BDE5D56742AC5EA2EF769FCB1028DDF03_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogManager_U3CAwakeU3Eb__114_0_m8AF192569CFE92C9E05202A07FA156FF8299C909_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DebugLogRecycledListView_U3CAwakeU3Eb__25_0_m46F3DED084709344721E369E0D3AC052735594A5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m2620E8DF00B206AC5E4A4106D63E3C4485C128BC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_mE8ACDACEA8CA85F717F6AAB281DA5B302D9B2120_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_mB328F3A2CA70097AB381986824251092440019DE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m4AF5A90C3CF292C4566D0EEB66AE1F3817C71433_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m69603B656EDD211D370280238098794BE7457F09_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m2875CB0A26B6AFAEA5E60272D2D0E84EB907F756_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m8DE42FF542A875B33731BDA6DD7348A642758F26_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m9D7BB18AA4AB86EFE14E4557DE16B27241E87691_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mABC63A9E661076B85F0C38BD3A8A40AAEA175816_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m316B32060B187C6935D44E5342EEC67EC2F26F0C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m50FA4CBA07D3DBAE93E04E6C9ACFC805CA054B4E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m66E6C05B4FDC3BEA15F9B57F7F885C886492C1D7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m98909E5E8CE8D2293CA61D264046F026589507D8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mFAF23CD29002CAB23492293F8C8B56962DE7A0B6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m84343D394ED12686F2F8600785AAF1BAE5DBCE6B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m11CA9CFE0B08B5F7D60812584F934FEFEEE7CA67_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m389487D9CAE4D83EF49F6429AF9024C6437CEF1A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mDA78A8299D16DD1B42B93F0C63BE2D9CE92F8A00_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mF64507B32BEC0199DA2C603E6687F24ECF1B066B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DynamicCircularBuffer_1_Add_m53EC77E0459887173ED94AD5A527032DD96B430B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DynamicCircularBuffer_1_RemoveFirst_mB90660C9AD7A06237A51BF5C1A00148A2975CF72_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DynamicCircularBuffer_1__ctor_m2C25B66F5928BB4AFECDF42471C898F632AA72D3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DynamicCircularBuffer_1_get_Item_m248003143CE1EFEC41A6812530777540C8A57FBB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* DynamicCircularBuffer_1_set_Item_m527B7BFD3A45171383AEED1585D7EDFE2E152BFD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisDebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3_m299610713BC44A89D57A385F30CFC991B7E884BE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mB997CBF78A37938DC1624352E12D0205078CB290_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0FEDE06A2790398E6431E1A0B22E2B990AE52172_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m1E764F119DDC62D8B86C24186CBA7A268E9D3092_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m285FF9023DA9D5F2308CB2B578F0DFF7025F0363_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m8054DB29304F9BB63B9ACBD183F0E98428FDCA86_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mB84FC21545F3DE5FB7FAE8E6FA0C3F0AA2AF0E8F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m77380B71C791340B3330CF6AD09FE5256DA675CD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m9425EE9EC20F325B521EE700AEAC64219769AF7D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mC6C7AEBB0F980A717A87C0D12377984A464F0934_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mFB9655FC4FC26BA5CEC0B55A5D2072D534BF550A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Insert_m0302A77BB0DBECAC73CA7E4FD3F1B75BD1FD83C6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m031D3A21689276A872FCA7566C8F2F79F9581F0D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m0B75D5B86C4664A84341E758B9F1661B8E1CE0D7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m6AFCEA5AB2D9694CD3281747F3D850EC0AE03440_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m9CD17F82D874520655B6F7A8A5C80CE4338A0FA0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m0BAB01B25B1D62E100CC97401B1A9972D6DEB6EC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1A062F45FE926079CE2D4FD38A3BF15F7AEB89AF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1B50B5865DB51955210F564FE524ECB55215107D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m30DD6F0F8DFBA9856BF7220A3CDB1C89ECEC0D98_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m8253079A55CBC89FDB0B6E9075715BD28D305562_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m84B60E4511081603E6186BDB5DAFB2CDE9AA8454_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m983421AD93B4F8031BD3DE40348CD04ACB2EB2D8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mC2EA22E22D584C79B83F3DE54ED552A45F7428EF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mC44213C602CAA3F94A5594ACA8E70E9826C8268A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m1FB42CA14EF53D0F281649D58B4B43D0D17D2608_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m451B44D19BA4256832D8B46E419A6176263901A4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m4F5E4A5103386DC79FDB5E944976BF4F2AE74D72_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mD575040BED5E15F408E2E182CAFDF0EF52625E87_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m6A72B7648178616800F05C13DB492E4EDB866B7C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m6E2E1480A05AB8BB307A64F6A0DA82368C1A2B6F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m72F8CCD2B9960B32D61CFA8DDFB3A8B66E75E78D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m2CE3C311F530B9D4B476C8B128164C51D5692CBF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Object_Instantiate_TisDebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230_m5AB9007F059CB3FFCE6D1C9C5607A53ACB43871B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Object_Instantiate_TisText_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62_mBB3AC9020A139E16AACFD144F60315A6E3B035EF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Quaternion_set_Item_mFEF628DD58AC71A1E712A6F3F9642D5DA00675CE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CMoveToPosAnimationU3Ed__21_System_Collections_IEnumerator_Reset_m9AAEA0464C92107730C4E9EA2367A75E793430D5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_AddListener_m2B74313C91E347D6AD24CE5B036E190E77E70851_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_AddListener_mEC384A8CFC5D4D41B62B08248A738CF61B82172F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Vector2Int_set_Item_mDC8B5A6DBB600C2AEB15712F0D02A434E7831B5B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Vector2_set_Item_mEF309880B9B3B370B542AABEB32256EEC589DD03_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Vector3Int_set_Item_m54C03389E56D4403F81C5560671011599599B67D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Vector3_set_Item_m79136861DEC5862CE7EC20AB3B0EF10A3957CEC3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Vector4_set_Item_mF24782F861A16BB0436C2262FA916B4EE69998A6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Color_tD001788D726C3A7F1379BEED0260B9591F440C1F_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* List_1_tA989C33995B015444AE843B573C94F683039E41F_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_0_0_0_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Void_t4861ACF8F4594C3437BB48B6E56783494B843915_0_0_0_var;
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com;
|
|
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke;
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com;
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
|
|
struct AssemblyU5BU5D_t97B7B4E3FD4DA4944A4BFAA4DC484EA7D990B339;
|
|
struct DebugLogEntryTimestampU5BU5D_t8E5BB7892CC61C2FD0065B78005D54E21811CDA8;
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C;
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
|
|
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
|
|
|
|
// <Module>
|
|
struct U3CModuleU3E_t13F3BCC65026C361E0CA0C21F66074A2174E1F28
|
|
{
|
|
};
|
|
|
|
// IngameDebugConsole.CircularBuffer`1<System.Object>
|
|
struct CircularBuffer_1_tCE48A157807D790AE588042B34881E85CC57CEB6 : public RuntimeObject
|
|
{
|
|
// T[] IngameDebugConsole.CircularBuffer`1::arr
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___arr_0;
|
|
// System.Int32 IngameDebugConsole.CircularBuffer`1::startIndex
|
|
int32_t ___startIndex_1;
|
|
// System.Int32 IngameDebugConsole.CircularBuffer`1::<Count>k__BackingField
|
|
int32_t ___U3CCountU3Ek__BackingField_2;
|
|
};
|
|
|
|
// IngameDebugConsole.CircularBuffer`1<System.String>
|
|
struct CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A : public RuntimeObject
|
|
{
|
|
// T[] IngameDebugConsole.CircularBuffer`1::arr
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___arr_0;
|
|
// System.Int32 IngameDebugConsole.CircularBuffer`1::startIndex
|
|
int32_t ___startIndex_1;
|
|
// System.Int32 IngameDebugConsole.CircularBuffer`1::<Count>k__BackingField
|
|
int32_t ___U3CCountU3Ek__BackingField_2;
|
|
};
|
|
|
|
// IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp>
|
|
struct DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20 : public RuntimeObject
|
|
{
|
|
// T[] IngameDebugConsole.DebugLogIndexList`1::indices
|
|
DebugLogEntryTimestampU5BU5D_t8E5BB7892CC61C2FD0065B78005D54E21811CDA8* ___indices_0;
|
|
// System.Int32 IngameDebugConsole.DebugLogIndexList`1::size
|
|
int32_t ___size_1;
|
|
};
|
|
|
|
// IngameDebugConsole.DebugLogIndexList`1<System.Int32>
|
|
struct DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F : public RuntimeObject
|
|
{
|
|
// T[] IngameDebugConsole.DebugLogIndexList`1::indices
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___indices_0;
|
|
// System.Int32 IngameDebugConsole.DebugLogIndexList`1::size
|
|
int32_t ___size_1;
|
|
};
|
|
|
|
// System.Collections.Generic.Dictionary`2<IngameDebugConsole.DebugLogEntry,System.Int32>
|
|
struct Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22 : public RuntimeObject
|
|
{
|
|
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
|
|
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
|
|
EntryU5BU5D_t1BB967349CDB8C52834E433CD73BAA8C20707AE1* ____entries_1;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_count
|
|
int32_t ____count_2;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
|
|
int32_t ____freeList_3;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
|
|
int32_t ____freeCount_4;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_version
|
|
int32_t ____version_5;
|
|
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
|
|
RuntimeObject* ____comparer_6;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
|
|
KeyCollection_t130240CF1BEC4C4EDD1CB869F4955DCBCBAAC989* ____keys_7;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
|
|
ValueCollection_t4AD1F16E2C12532B8CC6F4475152A8E846B6E742* ____values_8;
|
|
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
|
|
RuntimeObject* ____syncRoot_9;
|
|
};
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,IngameDebugConsole.DebugLogItem>
|
|
struct Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA : public RuntimeObject
|
|
{
|
|
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
|
|
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
|
|
EntryU5BU5D_tC0263C3EB62F224BA85554A1ADF69D6BBBE83B07* ____entries_1;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_count
|
|
int32_t ____count_2;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
|
|
int32_t ____freeList_3;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
|
|
int32_t ____freeCount_4;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_version
|
|
int32_t ____version_5;
|
|
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
|
|
RuntimeObject* ____comparer_6;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
|
|
KeyCollection_t1DD4E23A70A3D35A332C93226D049F56278CD515* ____keys_7;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
|
|
ValueCollection_tCA4EBB242775E59481F7C3AA2F79A22601A91AC0* ____values_8;
|
|
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
|
|
RuntimeObject* ____syncRoot_9;
|
|
};
|
|
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.LogType,UnityEngine.Sprite>
|
|
struct Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7 : public RuntimeObject
|
|
{
|
|
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
|
|
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
|
|
EntryU5BU5D_t45F0EB53CB4C829C968A3A594C629E0DEECA05A4* ____entries_1;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_count
|
|
int32_t ____count_2;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
|
|
int32_t ____freeList_3;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
|
|
int32_t ____freeCount_4;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_version
|
|
int32_t ____version_5;
|
|
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
|
|
RuntimeObject* ____comparer_6;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
|
|
KeyCollection_t721740278637AB25E68F61A638EAA2C84F936CFA* ____keys_7;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
|
|
ValueCollection_tB80E3388C4963AE0D93F28FE14F38C366503A493* ____values_8;
|
|
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
|
|
RuntimeObject* ____syncRoot_9;
|
|
};
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.Type,System.String>
|
|
struct Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE : public RuntimeObject
|
|
{
|
|
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
|
|
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
|
|
EntryU5BU5D_t7C07FADA3D121BF791083230AC898F54129541C8* ____entries_1;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_count
|
|
int32_t ____count_2;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
|
|
int32_t ____freeList_3;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
|
|
int32_t ____freeCount_4;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_version
|
|
int32_t ____version_5;
|
|
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
|
|
RuntimeObject* ____comparer_6;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
|
|
KeyCollection_t555B8656568D51D28955442D71A19D8860BFF88C* ____keys_7;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
|
|
ValueCollection_t6E6C24D8CE99E9A850AB95B69939CBBA2CB9E7D9* ____values_8;
|
|
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
|
|
RuntimeObject* ____syncRoot_9;
|
|
};
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.Type,IngameDebugConsole.DebugLogConsole/ParseFunction>
|
|
struct Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A : public RuntimeObject
|
|
{
|
|
// System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
|
|
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
|
|
EntryU5BU5D_t30E363E0FBE925B36508266C83BEA4E5E170BD44* ____entries_1;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_count
|
|
int32_t ____count_2;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeList
|
|
int32_t ____freeList_3;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
|
|
int32_t ____freeCount_4;
|
|
// System.Int32 System.Collections.Generic.Dictionary`2::_version
|
|
int32_t ____version_5;
|
|
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
|
|
RuntimeObject* ____comparer_6;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
|
|
KeyCollection_tA1ACCAAB78892BD2ED204AA2917D808DBD72C718* ____keys_7;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
|
|
ValueCollection_t976B228AB800E2131F3B0FD7C5216362DA2CAAEF* ____values_8;
|
|
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
|
|
RuntimeObject* ____syncRoot_9;
|
|
};
|
|
|
|
// IngameDebugConsole.DynamicCircularBuffer`1<IngameDebugConsole.QueuedDebugLogEntry>
|
|
struct DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965 : public RuntimeObject
|
|
{
|
|
// T[] IngameDebugConsole.DynamicCircularBuffer`1::arr
|
|
QueuedDebugLogEntryU5BU5D_t30F1F371C54CEA07F5410C8B2A60CAEC2CD84878* ___arr_0;
|
|
// System.Int32 IngameDebugConsole.DynamicCircularBuffer`1::startIndex
|
|
int32_t ___startIndex_1;
|
|
// System.Int32 IngameDebugConsole.DynamicCircularBuffer`1::<Count>k__BackingField
|
|
int32_t ___U3CCountU3Ek__BackingField_2;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo>
|
|
struct List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
ConsoleMethodInfoU5BU5D_t1337C76EAD1D89166EADBCCD3FAE08B6C3C8BB3B* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
struct List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
ConsoleMethodInfoU5BU5D_t1337C76EAD1D89166EADBCCD3FAE08B6C3C8BB3B* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntry>
|
|
struct List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
DebugLogEntryU5BU5D_tD7A340701CFF6219ED046F42D1A4B726AFBB6192* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
struct List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
DebugLogEntryU5BU5D_tD7A340701CFF6219ED046F42D1A4B726AFBB6192* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntryTimestamp>
|
|
struct List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
DebugLogEntryTimestampU5BU5D_t8E5BB7892CC61C2FD0065B78005D54E21811CDA8* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
struct List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
DebugLogEntryTimestampU5BU5D_t8E5BB7892CC61C2FD0065B78005D54E21811CDA8* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.DebugLogItem>
|
|
struct List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
DebugLogItemU5BU5D_t19E47B1D4545D24FB08E77DD70D765296117597E* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
struct List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
DebugLogItemU5BU5D_t19E47B1D4545D24FB08E77DD70D765296117597E* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.Int32>
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
struct List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.Object>
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.String>
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UI.Text>
|
|
struct List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
TextU5BU5D_t1D476A037C4542F053D17ADAFA2723F311F9A353* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
struct List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
TextU5BU5D_t1D476A037C4542F053D17ADAFA2723F311F9A353* ___s_emptyArray_5;
|
|
};
|
|
|
|
// UnityEngine.EventSystems.AbstractEventData
|
|
struct AbstractEventData_tAE1A127ED657117548181D29FFE4B1B14D8E67F7 : public RuntimeObject
|
|
{
|
|
// System.Boolean UnityEngine.EventSystems.AbstractEventData::m_Used
|
|
bool ___m_Used_0;
|
|
};
|
|
struct Il2CppArrayBounds;
|
|
|
|
// System.Reflection.Assembly
|
|
struct Assembly_t : public RuntimeObject
|
|
{
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Reflection.Assembly
|
|
struct Assembly_t_marshaled_pinvoke
|
|
{
|
|
};
|
|
// Native definition for COM marshalling of System.Reflection.Assembly
|
|
struct Assembly_t_marshaled_com
|
|
{
|
|
};
|
|
|
|
// System.Reflection.AssemblyName
|
|
struct AssemblyName_t555F1570F523D87D970C6E7F27B1B44C83EADDD2 : public RuntimeObject
|
|
{
|
|
// System.String System.Reflection.AssemblyName::name
|
|
String_t* ___name_0;
|
|
// System.String System.Reflection.AssemblyName::codebase
|
|
String_t* ___codebase_1;
|
|
// System.Int32 System.Reflection.AssemblyName::major
|
|
int32_t ___major_2;
|
|
// System.Int32 System.Reflection.AssemblyName::minor
|
|
int32_t ___minor_3;
|
|
// System.Int32 System.Reflection.AssemblyName::build
|
|
int32_t ___build_4;
|
|
// System.Int32 System.Reflection.AssemblyName::revision
|
|
int32_t ___revision_5;
|
|
// System.Globalization.CultureInfo System.Reflection.AssemblyName::cultureinfo
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___cultureinfo_6;
|
|
// System.Reflection.AssemblyNameFlags System.Reflection.AssemblyName::flags
|
|
int32_t ___flags_7;
|
|
// System.Configuration.Assemblies.AssemblyHashAlgorithm System.Reflection.AssemblyName::hashalg
|
|
int32_t ___hashalg_8;
|
|
// System.Reflection.StrongNameKeyPair System.Reflection.AssemblyName::keypair
|
|
StrongNameKeyPair_t0657447B6CFAA8FE880A228AA578EC20BC6AF8F2* ___keypair_9;
|
|
// System.Byte[] System.Reflection.AssemblyName::publicKey
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___publicKey_10;
|
|
// System.Byte[] System.Reflection.AssemblyName::keyToken
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___keyToken_11;
|
|
// System.Configuration.Assemblies.AssemblyVersionCompatibility System.Reflection.AssemblyName::versioncompat
|
|
int32_t ___versioncompat_12;
|
|
// System.Version System.Reflection.AssemblyName::version
|
|
Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7* ___version_13;
|
|
// System.Reflection.ProcessorArchitecture System.Reflection.AssemblyName::processor_architecture
|
|
int32_t ___processor_architecture_14;
|
|
// System.Reflection.AssemblyContentType System.Reflection.AssemblyName::contentType
|
|
int32_t ___contentType_15;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Reflection.AssemblyName
|
|
struct AssemblyName_t555F1570F523D87D970C6E7F27B1B44C83EADDD2_marshaled_pinvoke
|
|
{
|
|
char* ___name_0;
|
|
char* ___codebase_1;
|
|
int32_t ___major_2;
|
|
int32_t ___minor_3;
|
|
int32_t ___build_4;
|
|
int32_t ___revision_5;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___cultureinfo_6;
|
|
int32_t ___flags_7;
|
|
int32_t ___hashalg_8;
|
|
StrongNameKeyPair_t0657447B6CFAA8FE880A228AA578EC20BC6AF8F2* ___keypair_9;
|
|
Il2CppSafeArray/*NONE*/* ___publicKey_10;
|
|
Il2CppSafeArray/*NONE*/* ___keyToken_11;
|
|
int32_t ___versioncompat_12;
|
|
Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7* ___version_13;
|
|
int32_t ___processor_architecture_14;
|
|
int32_t ___contentType_15;
|
|
};
|
|
// Native definition for COM marshalling of System.Reflection.AssemblyName
|
|
struct AssemblyName_t555F1570F523D87D970C6E7F27B1B44C83EADDD2_marshaled_com
|
|
{
|
|
Il2CppChar* ___name_0;
|
|
Il2CppChar* ___codebase_1;
|
|
int32_t ___major_2;
|
|
int32_t ___minor_3;
|
|
int32_t ___build_4;
|
|
int32_t ___revision_5;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___cultureinfo_6;
|
|
int32_t ___flags_7;
|
|
int32_t ___hashalg_8;
|
|
StrongNameKeyPair_t0657447B6CFAA8FE880A228AA578EC20BC6AF8F2* ___keypair_9;
|
|
Il2CppSafeArray/*NONE*/* ___publicKey_10;
|
|
Il2CppSafeArray/*NONE*/* ___keyToken_11;
|
|
int32_t ___versioncompat_12;
|
|
Version_tE426DB5655D0F22920AE16A2AA9AB7781B8255A7* ___version_13;
|
|
int32_t ___processor_architecture_14;
|
|
int32_t ___contentType_15;
|
|
};
|
|
|
|
// System.Attribute
|
|
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Globalization.CompareInfo
|
|
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57 : public RuntimeObject
|
|
{
|
|
// System.String System.Globalization.CompareInfo::m_name
|
|
String_t* ___m_name_5;
|
|
// System.String System.Globalization.CompareInfo::_sortName
|
|
String_t* ____sortName_6;
|
|
// System.Globalization.SortVersion System.Globalization.CompareInfo::m_SortVersion
|
|
SortVersion_tBB62978F95905541FC817E11F73A0B1DB392F07E* ___m_SortVersion_7;
|
|
// System.Int32 System.Globalization.CompareInfo::culture
|
|
int32_t ___culture_8;
|
|
// System.Globalization.ISimpleCollator System.Globalization.CompareInfo::collator
|
|
RuntimeObject* ___collator_9;
|
|
};
|
|
|
|
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_StaticFields
|
|
{
|
|
// System.Globalization.CompareInfo System.Globalization.CompareInfo::Invariant
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___Invariant_4;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.ISimpleCollator> System.Globalization.CompareInfo::collators
|
|
Dictionary_2_tFA0E7CD5951B83DD87A65E89D971A68E538F9470* ___collators_10;
|
|
// System.Boolean System.Globalization.CompareInfo::managedCollation
|
|
bool ___managedCollation_11;
|
|
// System.Boolean System.Globalization.CompareInfo::managedCollationChecked
|
|
bool ___managedCollationChecked_12;
|
|
};
|
|
|
|
// IngameDebugConsole.ConsoleMethodInfo
|
|
struct ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79 : public RuntimeObject
|
|
{
|
|
// System.Reflection.MethodInfo IngameDebugConsole.ConsoleMethodInfo::method
|
|
MethodInfo_t* ___method_0;
|
|
// System.Type[] IngameDebugConsole.ConsoleMethodInfo::parameterTypes
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___parameterTypes_1;
|
|
// System.Object IngameDebugConsole.ConsoleMethodInfo::instance
|
|
RuntimeObject* ___instance_2;
|
|
// System.String IngameDebugConsole.ConsoleMethodInfo::command
|
|
String_t* ___command_3;
|
|
// System.String IngameDebugConsole.ConsoleMethodInfo::signature
|
|
String_t* ___signature_4;
|
|
// System.String[] IngameDebugConsole.ConsoleMethodInfo::parameters
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___parameters_5;
|
|
};
|
|
|
|
// System.Globalization.CultureInfo
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0 : public RuntimeObject
|
|
{
|
|
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
|
|
bool ___m_isReadOnly_3;
|
|
// System.Int32 System.Globalization.CultureInfo::cultureID
|
|
int32_t ___cultureID_4;
|
|
// System.Int32 System.Globalization.CultureInfo::parent_lcid
|
|
int32_t ___parent_lcid_5;
|
|
// System.Int32 System.Globalization.CultureInfo::datetime_index
|
|
int32_t ___datetime_index_6;
|
|
// System.Int32 System.Globalization.CultureInfo::number_index
|
|
int32_t ___number_index_7;
|
|
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
|
|
int32_t ___default_calendar_type_8;
|
|
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
|
|
bool ___m_useUserOverride_9;
|
|
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
|
|
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
|
|
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
|
|
// System.String System.Globalization.CultureInfo::m_name
|
|
String_t* ___m_name_13;
|
|
// System.String System.Globalization.CultureInfo::englishname
|
|
String_t* ___englishname_14;
|
|
// System.String System.Globalization.CultureInfo::nativename
|
|
String_t* ___nativename_15;
|
|
// System.String System.Globalization.CultureInfo::iso3lang
|
|
String_t* ___iso3lang_16;
|
|
// System.String System.Globalization.CultureInfo::iso2lang
|
|
String_t* ___iso2lang_17;
|
|
// System.String System.Globalization.CultureInfo::win3lang
|
|
String_t* ___win3lang_18;
|
|
// System.String System.Globalization.CultureInfo::territory
|
|
String_t* ___territory_19;
|
|
// System.String[] System.Globalization.CultureInfo::native_calendar_names
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___native_calendar_names_20;
|
|
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
|
|
// System.Void* System.Globalization.CultureInfo::textinfo_data
|
|
void* ___textinfo_data_22;
|
|
// System.Int32 System.Globalization.CultureInfo::m_dataItem
|
|
int32_t ___m_dataItem_23;
|
|
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___parent_culture_25;
|
|
// System.Boolean System.Globalization.CultureInfo::constructed
|
|
bool ___constructed_26;
|
|
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___cached_serialized_form_27;
|
|
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData_28;
|
|
// System.Boolean System.Globalization.CultureInfo::m_isInherited
|
|
bool ___m_isInherited_29;
|
|
};
|
|
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_StaticFields
|
|
{
|
|
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___invariant_culture_info_0;
|
|
// System.Object System.Globalization.CultureInfo::shared_table_lock
|
|
RuntimeObject* ___shared_table_lock_1;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___default_current_culture_2;
|
|
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentUICulture_34;
|
|
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentCulture_35;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
|
|
Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
|
|
Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name_37;
|
|
// System.Globalization.CultureInfo System.Globalization.CultureInfo::s_UserPreferredCultureInfoInAppX
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX_38;
|
|
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
|
|
bool ___IsTaiwanSku_39;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_isReadOnly_3;
|
|
int32_t ___cultureID_4;
|
|
int32_t ___parent_lcid_5;
|
|
int32_t ___datetime_index_6;
|
|
int32_t ___number_index_7;
|
|
int32_t ___default_calendar_type_8;
|
|
int32_t ___m_useUserOverride_9;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
|
|
char* ___m_name_13;
|
|
char* ___englishname_14;
|
|
char* ___nativename_15;
|
|
char* ___iso3lang_16;
|
|
char* ___iso2lang_17;
|
|
char* ___win3lang_18;
|
|
char* ___territory_19;
|
|
char** ___native_calendar_names_20;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
|
|
void* ___textinfo_data_22;
|
|
int32_t ___m_dataItem_23;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture_25;
|
|
int32_t ___constructed_26;
|
|
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData_28;
|
|
int32_t ___m_isInherited_29;
|
|
};
|
|
// Native definition for COM marshalling of System.Globalization.CultureInfo
|
|
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com
|
|
{
|
|
int32_t ___m_isReadOnly_3;
|
|
int32_t ___cultureID_4;
|
|
int32_t ___parent_lcid_5;
|
|
int32_t ___datetime_index_6;
|
|
int32_t ___number_index_7;
|
|
int32_t ___default_calendar_type_8;
|
|
int32_t ___m_useUserOverride_9;
|
|
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
|
|
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
|
|
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
|
|
Il2CppChar* ___m_name_13;
|
|
Il2CppChar* ___englishname_14;
|
|
Il2CppChar* ___nativename_15;
|
|
Il2CppChar* ___iso3lang_16;
|
|
Il2CppChar* ___iso2lang_17;
|
|
Il2CppChar* ___win3lang_18;
|
|
Il2CppChar* ___territory_19;
|
|
Il2CppChar** ___native_calendar_names_20;
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
|
|
void* ___textinfo_data_22;
|
|
int32_t ___m_dataItem_23;
|
|
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture_25;
|
|
int32_t ___constructed_26;
|
|
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
|
|
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData_28;
|
|
int32_t ___m_isInherited_29;
|
|
};
|
|
|
|
// IngameDebugConsole.DebugLogConsole
|
|
struct DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
struct DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields
|
|
{
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo> IngameDebugConsole.DebugLogConsole::methods
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* ___methods_0;
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo> IngameDebugConsole.DebugLogConsole::matchingMethods
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* ___matchingMethods_1;
|
|
// System.Collections.Generic.Dictionary`2<System.Type,IngameDebugConsole.DebugLogConsole/ParseFunction> IngameDebugConsole.DebugLogConsole::parseFunctions
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* ___parseFunctions_2;
|
|
// System.Collections.Generic.Dictionary`2<System.Type,System.String> IngameDebugConsole.DebugLogConsole::typeReadableNames
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* ___typeReadableNames_3;
|
|
// System.Collections.Generic.List`1<System.String> IngameDebugConsole.DebugLogConsole::commandArguments
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___commandArguments_4;
|
|
// System.String[] IngameDebugConsole.DebugLogConsole::inputDelimiters
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___inputDelimiters_5;
|
|
// System.Globalization.CompareInfo IngameDebugConsole.DebugLogConsole::caseInsensitiveComparer
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___caseInsensitiveComparer_6;
|
|
};
|
|
|
|
// IngameDebugConsole.DebugLogEntry
|
|
struct DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD : public RuntimeObject
|
|
{
|
|
// System.String IngameDebugConsole.DebugLogEntry::logString
|
|
String_t* ___logString_1;
|
|
// System.String IngameDebugConsole.DebugLogEntry::stackTrace
|
|
String_t* ___stackTrace_2;
|
|
// System.String IngameDebugConsole.DebugLogEntry::completeLog
|
|
String_t* ___completeLog_3;
|
|
// UnityEngine.Sprite IngameDebugConsole.DebugLogEntry::logTypeSpriteRepresentation
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___logTypeSpriteRepresentation_4;
|
|
// System.Int32 IngameDebugConsole.DebugLogEntry::count
|
|
int32_t ___count_5;
|
|
// System.Int32 IngameDebugConsole.DebugLogEntry::hashValue
|
|
int32_t ___hashValue_6;
|
|
};
|
|
|
|
// System.MarshalByRefObject
|
|
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
|
|
{
|
|
// System.Object System.MarshalByRefObject::_identity
|
|
RuntimeObject* ____identity_0;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
|
|
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ____identity_0;
|
|
};
|
|
// Native definition for COM marshalling of System.MarshalByRefObject
|
|
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ____identity_0;
|
|
};
|
|
|
|
// System.Reflection.MemberInfo
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Reflection.ParameterInfo
|
|
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F : public RuntimeObject
|
|
{
|
|
// System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl
|
|
int32_t ___AttrsImpl_0;
|
|
// System.Type System.Reflection.ParameterInfo::ClassImpl
|
|
Type_t* ___ClassImpl_1;
|
|
// System.Object System.Reflection.ParameterInfo::DefaultValueImpl
|
|
RuntimeObject* ___DefaultValueImpl_2;
|
|
// System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl
|
|
MemberInfo_t* ___MemberImpl_3;
|
|
// System.String System.Reflection.ParameterInfo::NameImpl
|
|
String_t* ___NameImpl_4;
|
|
// System.Int32 System.Reflection.ParameterInfo::PositionImpl
|
|
int32_t ___PositionImpl_5;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Reflection.ParameterInfo
|
|
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_marshaled_pinvoke
|
|
{
|
|
int32_t ___AttrsImpl_0;
|
|
Type_t* ___ClassImpl_1;
|
|
Il2CppIUnknown* ___DefaultValueImpl_2;
|
|
MemberInfo_t* ___MemberImpl_3;
|
|
char* ___NameImpl_4;
|
|
int32_t ___PositionImpl_5;
|
|
};
|
|
// Native definition for COM marshalling of System.Reflection.ParameterInfo
|
|
struct ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F_marshaled_com
|
|
{
|
|
int32_t ___AttrsImpl_0;
|
|
Type_t* ___ClassImpl_1;
|
|
Il2CppIUnknown* ___DefaultValueImpl_2;
|
|
MemberInfo_t* ___MemberImpl_3;
|
|
Il2CppChar* ___NameImpl_4;
|
|
int32_t ___PositionImpl_5;
|
|
};
|
|
|
|
// IngameDebugConsole.Commands.PlayerPrefsCommands
|
|
struct PlayerPrefsCommands_tF5F2E282C801F0F5C1CF7F530FD96CD9B70ECEC0 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// IngameDebugConsole.Commands.SceneCommands
|
|
struct SceneCommands_tD919696B0B3F4F289ECA77E9E677A51579914472 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.String
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
// System.Int32 System.String::_stringLength
|
|
int32_t ____stringLength_4;
|
|
// System.Char System.String::_firstChar
|
|
Il2CppChar ____firstChar_5;
|
|
};
|
|
|
|
struct String_t_StaticFields
|
|
{
|
|
// System.String System.String::Empty
|
|
String_t* ___Empty_6;
|
|
};
|
|
|
|
// System.Text.StringBuilder
|
|
struct StringBuilder_t : public RuntimeObject
|
|
{
|
|
// System.Char[] System.Text.StringBuilder::m_ChunkChars
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars_0;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
|
|
StringBuilder_t* ___m_ChunkPrevious_1;
|
|
// System.Int32 System.Text.StringBuilder::m_ChunkLength
|
|
int32_t ___m_ChunkLength_2;
|
|
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
|
|
int32_t ___m_ChunkOffset_3;
|
|
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
|
|
int32_t ___m_MaxCapacity_4;
|
|
};
|
|
|
|
// IngameDebugConsole.Commands.TimeCommands
|
|
struct TimeCommands_t6DE00ACD4923F4291E15DF7C6CE0C4F9FE100901 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.Events.UnityEventBase
|
|
struct UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8 : public RuntimeObject
|
|
{
|
|
// UnityEngine.Events.InvokableCallList UnityEngine.Events.UnityEventBase::m_Calls
|
|
InvokableCallList_t309E1C8C7CE885A0D2F98C84CEA77A8935688382* ___m_Calls_0;
|
|
// UnityEngine.Events.PersistentCallGroup UnityEngine.Events.UnityEventBase::m_PersistentCalls
|
|
PersistentCallGroup_tB826EDF15DC80F71BCBCD8E410FD959A04C33F25* ___m_PersistentCalls_1;
|
|
// System.Boolean UnityEngine.Events.UnityEventBase::m_CallsDirty
|
|
bool ___m_CallsDirty_2;
|
|
};
|
|
|
|
// System.ValueType
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
|
{
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.ValueType
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
|
{
|
|
};
|
|
// Native definition for COM marshalling of System.ValueType
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
|
{
|
|
};
|
|
|
|
// UnityEngine.YieldInstruction
|
|
struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D : public RuntimeObject
|
|
{
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction
|
|
struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
|
|
{
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.YieldInstruction
|
|
struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
|
|
{
|
|
};
|
|
|
|
// UnityEngine.Events.UnityEvent`1<System.String>
|
|
struct UnityEvent_1_tC9859540CF1468306CAB6D758C0A0D95DBCEC257 : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
|
|
{
|
|
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray_3;
|
|
};
|
|
|
|
// UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>
|
|
struct UnityEvent_1_t9A868DD8EBFC0D9D8134D903A170ECBDEE567932 : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
|
|
{
|
|
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray_3;
|
|
};
|
|
|
|
// UnityEngine.EventSystems.BaseEventData
|
|
struct BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F : public AbstractEventData_tAE1A127ED657117548181D29FFE4B1B14D8E67F7
|
|
{
|
|
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.BaseEventData::m_EventSystem
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___m_EventSystem_1;
|
|
};
|
|
|
|
// System.Boolean
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
|
{
|
|
// System.Boolean System.Boolean::m_value
|
|
bool ___m_value_0;
|
|
};
|
|
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
|
{
|
|
// System.String System.Boolean::TrueString
|
|
String_t* ___TrueString_5;
|
|
// System.String System.Boolean::FalseString
|
|
String_t* ___FalseString_6;
|
|
};
|
|
|
|
// System.Byte
|
|
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
|
|
{
|
|
// System.Byte System.Byte::m_value
|
|
uint8_t ___m_value_0;
|
|
};
|
|
|
|
// System.Char
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
|
|
{
|
|
// System.Char System.Char::m_value
|
|
Il2CppChar ___m_value_0;
|
|
};
|
|
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
|
|
{
|
|
// System.Byte[] System.Char::s_categoryForLatin1
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
|
|
};
|
|
|
|
// UnityEngine.Color
|
|
struct Color_tD001788D726C3A7F1379BEED0260B9591F440C1F
|
|
{
|
|
// System.Single UnityEngine.Color::r
|
|
float ___r_0;
|
|
// System.Single UnityEngine.Color::g
|
|
float ___g_1;
|
|
// System.Single UnityEngine.Color::b
|
|
float ___b_2;
|
|
// System.Single UnityEngine.Color::a
|
|
float ___a_3;
|
|
};
|
|
|
|
// UnityEngine.Color32
|
|
struct Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
// System.Int32 UnityEngine.Color32::rgba
|
|
int32_t ___rgba_0;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int32_t ___rgba_0_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
// System.Byte UnityEngine.Color32::r
|
|
uint8_t ___r_1;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
uint8_t ___r_1_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___g_2_OffsetPadding[1];
|
|
// System.Byte UnityEngine.Color32::g
|
|
uint8_t ___g_2;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___g_2_OffsetPadding_forAlignmentOnly[1];
|
|
uint8_t ___g_2_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___b_3_OffsetPadding[2];
|
|
// System.Byte UnityEngine.Color32::b
|
|
uint8_t ___b_3;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___b_3_OffsetPadding_forAlignmentOnly[2];
|
|
uint8_t ___b_3_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___a_4_OffsetPadding[3];
|
|
// System.Byte UnityEngine.Color32::a
|
|
uint8_t ___a_4;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___a_4_OffsetPadding_forAlignmentOnly[3];
|
|
uint8_t ___a_4_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
|
|
// IngameDebugConsole.ConsoleMethodAttribute
|
|
struct ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA
|
|
{
|
|
// System.String IngameDebugConsole.ConsoleMethodAttribute::m_command
|
|
String_t* ___m_command_0;
|
|
// System.String IngameDebugConsole.ConsoleMethodAttribute::m_description
|
|
String_t* ___m_description_1;
|
|
// System.String[] IngameDebugConsole.ConsoleMethodAttribute::m_parameterNames
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_parameterNames_2;
|
|
};
|
|
|
|
// System.DateTime
|
|
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D
|
|
{
|
|
// System.UInt64 System.DateTime::_dateData
|
|
uint64_t ____dateData_46;
|
|
};
|
|
|
|
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields
|
|
{
|
|
// System.Int32[] System.DateTime::s_daysToMonth365
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth365_30;
|
|
// System.Int32[] System.DateTime::s_daysToMonth366
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth366_31;
|
|
// System.DateTime System.DateTime::MinValue
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MinValue_32;
|
|
// System.DateTime System.DateTime::MaxValue
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MaxValue_33;
|
|
// System.DateTime System.DateTime::UnixEpoch
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___UnixEpoch_34;
|
|
};
|
|
|
|
// System.Decimal
|
|
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
// System.Int32 System.Decimal::flags
|
|
int32_t ___flags_8;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int32_t ___flags_8_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___hi_9_OffsetPadding[4];
|
|
// System.Int32 System.Decimal::hi
|
|
int32_t ___hi_9;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___hi_9_OffsetPadding_forAlignmentOnly[4];
|
|
int32_t ___hi_9_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___lo_10_OffsetPadding[8];
|
|
// System.Int32 System.Decimal::lo
|
|
int32_t ___lo_10;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___lo_10_OffsetPadding_forAlignmentOnly[8];
|
|
int32_t ___lo_10_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___mid_11_OffsetPadding[12];
|
|
// System.Int32 System.Decimal::mid
|
|
int32_t ___mid_11;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___mid_11_OffsetPadding_forAlignmentOnly[12];
|
|
int32_t ___mid_11_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___ulomidLE_12_OffsetPadding[8];
|
|
// System.UInt64 System.Decimal::ulomidLE
|
|
uint64_t ___ulomidLE_12;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___ulomidLE_12_OffsetPadding_forAlignmentOnly[8];
|
|
uint64_t ___ulomidLE_12_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
|
|
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields
|
|
{
|
|
// System.Decimal System.Decimal::Zero
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___Zero_3;
|
|
// System.Decimal System.Decimal::One
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___One_4;
|
|
// System.Decimal System.Decimal::MinusOne
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinusOne_5;
|
|
// System.Decimal System.Decimal::MaxValue
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MaxValue_6;
|
|
// System.Decimal System.Decimal::MinValue
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinValue_7;
|
|
};
|
|
|
|
// System.Double
|
|
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
|
|
{
|
|
// System.Double System.Double::m_value
|
|
double ___m_value_0;
|
|
};
|
|
|
|
// UnityEngine.DrivenRectTransformTracker
|
|
struct DrivenRectTransformTracker_tFB0706C933E3C68E4F377C204FCEEF091F1EE0B1
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t DrivenRectTransformTracker_tFB0706C933E3C68E4F377C204FCEEF091F1EE0B1__padding[1];
|
|
};
|
|
};
|
|
|
|
// System.Int16
|
|
struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175
|
|
{
|
|
// System.Int16 System.Int16::m_value
|
|
int16_t ___m_value_0;
|
|
};
|
|
|
|
// System.Int32
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
|
{
|
|
// System.Int32 System.Int32::m_value
|
|
int32_t ___m_value_0;
|
|
};
|
|
|
|
// System.Int64
|
|
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
|
|
{
|
|
// System.Int64 System.Int64::m_value
|
|
int64_t ___m_value_0;
|
|
};
|
|
|
|
// System.IntPtr
|
|
struct IntPtr_t
|
|
{
|
|
// System.Void* System.IntPtr::m_value
|
|
void* ___m_value_0;
|
|
};
|
|
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
// System.IntPtr System.IntPtr::Zero
|
|
intptr_t ___Zero_1;
|
|
};
|
|
|
|
// UnityEngine.Mathf
|
|
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682__padding[1];
|
|
};
|
|
};
|
|
|
|
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields
|
|
{
|
|
// System.Single UnityEngine.Mathf::Epsilon
|
|
float ___Epsilon_0;
|
|
};
|
|
|
|
// System.Reflection.MethodBase
|
|
struct MethodBase_t : public MemberInfo_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UI.Navigation
|
|
struct Navigation_t4D2E201D65749CF4E104E8AC1232CF1D6F14795C
|
|
{
|
|
// UnityEngine.UI.Navigation/Mode UnityEngine.UI.Navigation::m_Mode
|
|
int32_t ___m_Mode_0;
|
|
// System.Boolean UnityEngine.UI.Navigation::m_WrapAround
|
|
bool ___m_WrapAround_1;
|
|
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnUp
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnUp_2;
|
|
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnDown
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnDown_3;
|
|
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnLeft
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnLeft_4;
|
|
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnRight
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnRight_5;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UI.Navigation
|
|
struct Navigation_t4D2E201D65749CF4E104E8AC1232CF1D6F14795C_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_Mode_0;
|
|
int32_t ___m_WrapAround_1;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnUp_2;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnDown_3;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnLeft_4;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnRight_5;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UI.Navigation
|
|
struct Navigation_t4D2E201D65749CF4E104E8AC1232CF1D6F14795C_marshaled_com
|
|
{
|
|
int32_t ___m_Mode_0;
|
|
int32_t ___m_WrapAround_1;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnUp_2;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnDown_3;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnLeft_4;
|
|
Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712* ___m_SelectOnRight_5;
|
|
};
|
|
|
|
// UnityEngine.Quaternion
|
|
struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974
|
|
{
|
|
// System.Single UnityEngine.Quaternion::x
|
|
float ___x_0;
|
|
// System.Single UnityEngine.Quaternion::y
|
|
float ___y_1;
|
|
// System.Single UnityEngine.Quaternion::z
|
|
float ___z_2;
|
|
// System.Single UnityEngine.Quaternion::w
|
|
float ___w_3;
|
|
};
|
|
|
|
struct Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_StaticFields
|
|
{
|
|
// UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 ___identityQuaternion_4;
|
|
};
|
|
|
|
// IngameDebugConsole.QueuedDebugLogEntry
|
|
struct QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C
|
|
{
|
|
// System.String IngameDebugConsole.QueuedDebugLogEntry::logString
|
|
String_t* ___logString_0;
|
|
// System.String IngameDebugConsole.QueuedDebugLogEntry::stackTrace
|
|
String_t* ___stackTrace_1;
|
|
// UnityEngine.LogType IngameDebugConsole.QueuedDebugLogEntry::logType
|
|
int32_t ___logType_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of IngameDebugConsole.QueuedDebugLogEntry
|
|
struct QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C_marshaled_pinvoke
|
|
{
|
|
char* ___logString_0;
|
|
char* ___stackTrace_1;
|
|
int32_t ___logType_2;
|
|
};
|
|
// Native definition for COM marshalling of IngameDebugConsole.QueuedDebugLogEntry
|
|
struct QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C_marshaled_com
|
|
{
|
|
Il2CppChar* ___logString_0;
|
|
Il2CppChar* ___stackTrace_1;
|
|
int32_t ___logType_2;
|
|
};
|
|
|
|
// UnityEngine.Rect
|
|
struct Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D
|
|
{
|
|
// System.Single UnityEngine.Rect::m_XMin
|
|
float ___m_XMin_0;
|
|
// System.Single UnityEngine.Rect::m_YMin
|
|
float ___m_YMin_1;
|
|
// System.Single UnityEngine.Rect::m_Width
|
|
float ___m_Width_2;
|
|
// System.Single UnityEngine.Rect::m_Height
|
|
float ___m_Height_3;
|
|
};
|
|
|
|
// UnityEngine.RectInt
|
|
struct RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8
|
|
{
|
|
// System.Int32 UnityEngine.RectInt::m_XMin
|
|
int32_t ___m_XMin_0;
|
|
// System.Int32 UnityEngine.RectInt::m_YMin
|
|
int32_t ___m_YMin_1;
|
|
// System.Int32 UnityEngine.RectInt::m_Width
|
|
int32_t ___m_Width_2;
|
|
// System.Int32 UnityEngine.RectInt::m_Height
|
|
int32_t ___m_Height_3;
|
|
};
|
|
|
|
// System.SByte
|
|
struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
|
|
{
|
|
// System.SByte System.SByte::m_value
|
|
int8_t ___m_value_0;
|
|
};
|
|
|
|
// UnityEngine.SceneManagement.Scene
|
|
struct Scene_tA1DC762B79745EB5140F054C884855B922318356
|
|
{
|
|
// System.Int32 UnityEngine.SceneManagement.Scene::m_Handle
|
|
int32_t ___m_Handle_0;
|
|
};
|
|
|
|
// System.Single
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
// System.Single System.Single::m_value
|
|
float ___m_value_0;
|
|
};
|
|
|
|
// UnityEngine.UI.SpriteState
|
|
struct SpriteState_tC8199570BE6337FB5C49347C97892B4222E5AACD
|
|
{
|
|
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_HighlightedSprite
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_HighlightedSprite_0;
|
|
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_PressedSprite
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_PressedSprite_1;
|
|
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_SelectedSprite
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_SelectedSprite_2;
|
|
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_DisabledSprite
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_DisabledSprite_3;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UI.SpriteState
|
|
struct SpriteState_tC8199570BE6337FB5C49347C97892B4222E5AACD_marshaled_pinvoke
|
|
{
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_HighlightedSprite_0;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_PressedSprite_1;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_SelectedSprite_2;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_DisabledSprite_3;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UI.SpriteState
|
|
struct SpriteState_tC8199570BE6337FB5C49347C97892B4222E5AACD_marshaled_com
|
|
{
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_HighlightedSprite_0;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_PressedSprite_1;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_SelectedSprite_2;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_DisabledSprite_3;
|
|
};
|
|
|
|
// System.TimeSpan
|
|
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
|
|
{
|
|
// System.Int64 System.TimeSpan::_ticks
|
|
int64_t ____ticks_22;
|
|
};
|
|
|
|
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields
|
|
{
|
|
// System.TimeSpan System.TimeSpan::Zero
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Zero_19;
|
|
// System.TimeSpan System.TimeSpan::MaxValue
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxValue_20;
|
|
// System.TimeSpan System.TimeSpan::MinValue
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinValue_21;
|
|
};
|
|
|
|
// System.UInt16
|
|
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
|
|
{
|
|
// System.UInt16 System.UInt16::m_value
|
|
uint16_t ___m_value_0;
|
|
};
|
|
|
|
// System.UInt32
|
|
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
|
|
{
|
|
// System.UInt32 System.UInt32::m_value
|
|
uint32_t ___m_value_0;
|
|
};
|
|
|
|
// System.UInt64
|
|
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
|
|
{
|
|
// System.UInt64 System.UInt64::m_value
|
|
uint64_t ___m_value_0;
|
|
};
|
|
|
|
// UnityEngine.Events.UnityEvent
|
|
struct UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977 : public UnityEventBase_t4968A4C72559F35C0923E4BD9C042C3A842E1DB8
|
|
{
|
|
// System.Object[] UnityEngine.Events.UnityEvent::m_InvokeArray
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_InvokeArray_3;
|
|
};
|
|
|
|
// UnityEngine.Vector2
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7
|
|
{
|
|
// System.Single UnityEngine.Vector2::x
|
|
float ___x_0;
|
|
// System.Single UnityEngine.Vector2::y
|
|
float ___y_1;
|
|
};
|
|
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields
|
|
{
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector_2;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector_3;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector_4;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector_5;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector_6;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector_7;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector_8;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector_9;
|
|
};
|
|
|
|
// UnityEngine.Vector2Int
|
|
struct Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A
|
|
{
|
|
// System.Int32 UnityEngine.Vector2Int::m_X
|
|
int32_t ___m_X_0;
|
|
// System.Int32 UnityEngine.Vector2Int::m_Y
|
|
int32_t ___m_Y_1;
|
|
};
|
|
|
|
struct Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_StaticFields
|
|
{
|
|
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Zero
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Zero_2;
|
|
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_One
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_One_3;
|
|
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Up
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Up_4;
|
|
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Down
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Down_5;
|
|
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Left
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Left_6;
|
|
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Right
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Right_7;
|
|
};
|
|
|
|
// UnityEngine.Vector3
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
|
|
{
|
|
// System.Single UnityEngine.Vector3::x
|
|
float ___x_2;
|
|
// System.Single UnityEngine.Vector3::y
|
|
float ___y_3;
|
|
// System.Single UnityEngine.Vector3::z
|
|
float ___z_4;
|
|
};
|
|
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
|
|
{
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector_5;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector_6;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector_7;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector_8;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector_9;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector_10;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector_11;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector_12;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector_13;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector_14;
|
|
};
|
|
|
|
// UnityEngine.Vector3Int
|
|
struct Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376
|
|
{
|
|
// System.Int32 UnityEngine.Vector3Int::m_X
|
|
int32_t ___m_X_0;
|
|
// System.Int32 UnityEngine.Vector3Int::m_Y
|
|
int32_t ___m_Y_1;
|
|
// System.Int32 UnityEngine.Vector3Int::m_Z
|
|
int32_t ___m_Z_2;
|
|
};
|
|
|
|
struct Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_StaticFields
|
|
{
|
|
// UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Zero
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Zero_3;
|
|
// UnityEngine.Vector3Int UnityEngine.Vector3Int::s_One
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_One_4;
|
|
// UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Up
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Up_5;
|
|
// UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Down
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Down_6;
|
|
// UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Left
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Left_7;
|
|
// UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Right
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Right_8;
|
|
// UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Forward
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Forward_9;
|
|
// UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Back
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Back_10;
|
|
};
|
|
|
|
// UnityEngine.Vector4
|
|
struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3
|
|
{
|
|
// System.Single UnityEngine.Vector4::x
|
|
float ___x_1;
|
|
// System.Single UnityEngine.Vector4::y
|
|
float ___y_2;
|
|
// System.Single UnityEngine.Vector4::z
|
|
float ___z_3;
|
|
// System.Single UnityEngine.Vector4::w
|
|
float ___w_4;
|
|
};
|
|
|
|
struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_StaticFields
|
|
{
|
|
// UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___zeroVector_5;
|
|
// UnityEngine.Vector4 UnityEngine.Vector4::oneVector
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___oneVector_6;
|
|
// UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___positiveInfinityVector_7;
|
|
// UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___negativeInfinityVector_8;
|
|
};
|
|
|
|
// System.Void
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
|
};
|
|
};
|
|
|
|
// UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig
|
|
struct UIToolkitOverrideConfig_t4E6B4528E38BCA7DA72C45424634806200A50182
|
|
{
|
|
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig::activeEventSystem
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___activeEventSystem_0;
|
|
// System.Boolean UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig::sendEvents
|
|
bool ___sendEvents_1;
|
|
// System.Boolean UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig::createPanelGameObjectsOnStart
|
|
bool ___createPanelGameObjectsOnStart_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig
|
|
struct UIToolkitOverrideConfig_t4E6B4528E38BCA7DA72C45424634806200A50182_marshaled_pinvoke
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___activeEventSystem_0;
|
|
int32_t ___sendEvents_1;
|
|
int32_t ___createPanelGameObjectsOnStart_2;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig
|
|
struct UIToolkitOverrideConfig_t4E6B4528E38BCA7DA72C45424634806200A50182_marshaled_com
|
|
{
|
|
EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___activeEventSystem_0;
|
|
int32_t ___sendEvents_1;
|
|
int32_t ___createPanelGameObjectsOnStart_2;
|
|
};
|
|
|
|
// System.AppDomain
|
|
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
|
|
{
|
|
// System.IntPtr System.AppDomain::_mono_app_domain
|
|
intptr_t ____mono_app_domain_1;
|
|
// System.Object System.AppDomain::_evidence
|
|
RuntimeObject* ____evidence_6;
|
|
// System.Object System.AppDomain::_granted
|
|
RuntimeObject* ____granted_7;
|
|
// System.Int32 System.AppDomain::_principalPolicy
|
|
int32_t ____principalPolicy_8;
|
|
// System.AssemblyLoadEventHandler System.AppDomain::AssemblyLoad
|
|
AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* ___AssemblyLoad_9;
|
|
// System.ResolveEventHandler System.AppDomain::AssemblyResolve
|
|
ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___AssemblyResolve_10;
|
|
// System.EventHandler System.AppDomain::DomainUnload
|
|
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* ___DomainUnload_11;
|
|
// System.EventHandler System.AppDomain::ProcessExit
|
|
EventHandler_tC6323FD7E6163F965259C33D72612C0E5B9BAB82* ___ProcessExit_12;
|
|
// System.ResolveEventHandler System.AppDomain::ResourceResolve
|
|
ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___ResourceResolve_13;
|
|
// System.ResolveEventHandler System.AppDomain::TypeResolve
|
|
ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___TypeResolve_14;
|
|
// System.UnhandledExceptionEventHandler System.AppDomain::UnhandledException
|
|
UnhandledExceptionEventHandler_tB13FF21A6201A59BB462E68CD10C5B5BEE54941C* ___UnhandledException_15;
|
|
// System.EventHandler`1<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs> System.AppDomain::FirstChanceException
|
|
EventHandler_1_tF46A0252BA462E35F6B72C69AB6C0F751E7443D7* ___FirstChanceException_16;
|
|
// System.Object System.AppDomain::_domain_manager
|
|
RuntimeObject* ____domain_manager_17;
|
|
// System.ResolveEventHandler System.AppDomain::ReflectionOnlyAssemblyResolve
|
|
ResolveEventHandler_t3CE88268E672E41B1B55E01587AFBCFB85044692* ___ReflectionOnlyAssemblyResolve_18;
|
|
// System.Object System.AppDomain::_activation
|
|
RuntimeObject* ____activation_19;
|
|
// System.Object System.AppDomain::_applicationIdentity
|
|
RuntimeObject* ____applicationIdentity_20;
|
|
// System.Collections.Generic.List`1<System.String> System.AppDomain::compatibility_switch
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___compatibility_switch_21;
|
|
};
|
|
|
|
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_StaticFields
|
|
{
|
|
// System.String System.AppDomain::_process_guid
|
|
String_t* ____process_guid_2;
|
|
};
|
|
|
|
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_ThreadStaticFields
|
|
{
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::type_resolve_in_progress
|
|
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* ___type_resolve_in_progress_3;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::assembly_resolve_in_progress
|
|
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* ___assembly_resolve_in_progress_4;
|
|
// System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::assembly_resolve_in_progress_refonly
|
|
Dictionary_2_tA348003A3C1CEFB3096E9D2A0BC7F1AC8EC4F710* ___assembly_resolve_in_progress_refonly_5;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.AppDomain
|
|
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_marshaled_pinvoke : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
|
|
{
|
|
intptr_t ____mono_app_domain_1;
|
|
Il2CppIUnknown* ____evidence_6;
|
|
Il2CppIUnknown* ____granted_7;
|
|
int32_t ____principalPolicy_8;
|
|
Il2CppMethodPointer ___AssemblyLoad_9;
|
|
Il2CppMethodPointer ___AssemblyResolve_10;
|
|
Il2CppMethodPointer ___DomainUnload_11;
|
|
Il2CppMethodPointer ___ProcessExit_12;
|
|
Il2CppMethodPointer ___ResourceResolve_13;
|
|
Il2CppMethodPointer ___TypeResolve_14;
|
|
Il2CppMethodPointer ___UnhandledException_15;
|
|
Il2CppMethodPointer ___FirstChanceException_16;
|
|
Il2CppIUnknown* ____domain_manager_17;
|
|
Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve_18;
|
|
Il2CppIUnknown* ____activation_19;
|
|
Il2CppIUnknown* ____applicationIdentity_20;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___compatibility_switch_21;
|
|
};
|
|
// Native definition for COM marshalling of System.AppDomain
|
|
struct AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F_marshaled_com : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
|
|
{
|
|
intptr_t ____mono_app_domain_1;
|
|
Il2CppIUnknown* ____evidence_6;
|
|
Il2CppIUnknown* ____granted_7;
|
|
int32_t ____principalPolicy_8;
|
|
Il2CppMethodPointer ___AssemblyLoad_9;
|
|
Il2CppMethodPointer ___AssemblyResolve_10;
|
|
Il2CppMethodPointer ___DomainUnload_11;
|
|
Il2CppMethodPointer ___ProcessExit_12;
|
|
Il2CppMethodPointer ___ResourceResolve_13;
|
|
Il2CppMethodPointer ___TypeResolve_14;
|
|
Il2CppMethodPointer ___UnhandledException_15;
|
|
Il2CppMethodPointer ___FirstChanceException_16;
|
|
Il2CppIUnknown* ____domain_manager_17;
|
|
Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve_18;
|
|
Il2CppIUnknown* ____activation_19;
|
|
Il2CppIUnknown* ____applicationIdentity_20;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___compatibility_switch_21;
|
|
};
|
|
|
|
// UnityEngine.AsyncOperation
|
|
struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D
|
|
{
|
|
// System.IntPtr UnityEngine.AsyncOperation::m_Ptr
|
|
intptr_t ___m_Ptr_0;
|
|
// System.Action`1<UnityEngine.AsyncOperation> UnityEngine.AsyncOperation::m_completeCallback
|
|
Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB* ___m_completeCallback_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.AsyncOperation
|
|
struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_pinvoke : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_Ptr_0;
|
|
Il2CppMethodPointer ___m_completeCallback_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.AsyncOperation
|
|
struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_com : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
|
|
{
|
|
intptr_t ___m_Ptr_0;
|
|
Il2CppMethodPointer ___m_completeCallback_1;
|
|
};
|
|
|
|
// UnityEngine.Bounds
|
|
struct Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3
|
|
{
|
|
// UnityEngine.Vector3 UnityEngine.Bounds::m_Center
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Center_0;
|
|
// UnityEngine.Vector3 UnityEngine.Bounds::m_Extents
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Extents_1;
|
|
};
|
|
|
|
// UnityEngine.BoundsInt
|
|
struct BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485
|
|
{
|
|
// UnityEngine.Vector3Int UnityEngine.BoundsInt::m_Position
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___m_Position_0;
|
|
// UnityEngine.Vector3Int UnityEngine.BoundsInt::m_Size
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___m_Size_1;
|
|
};
|
|
|
|
// UnityEngine.UI.ColorBlock
|
|
struct ColorBlock_tDD7C62E7AFE442652FC98F8D058CE8AE6BFD7C11
|
|
{
|
|
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_NormalColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_NormalColor_0;
|
|
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_HighlightedColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_HighlightedColor_1;
|
|
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_PressedColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_PressedColor_2;
|
|
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_SelectedColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_SelectedColor_3;
|
|
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_DisabledColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_DisabledColor_4;
|
|
// System.Single UnityEngine.UI.ColorBlock::m_ColorMultiplier
|
|
float ___m_ColorMultiplier_5;
|
|
// System.Single UnityEngine.UI.ColorBlock::m_FadeDuration
|
|
float ___m_FadeDuration_6;
|
|
};
|
|
|
|
struct ColorBlock_tDD7C62E7AFE442652FC98F8D058CE8AE6BFD7C11_StaticFields
|
|
{
|
|
// UnityEngine.UI.ColorBlock UnityEngine.UI.ColorBlock::defaultColorBlock
|
|
ColorBlock_tDD7C62E7AFE442652FC98F8D058CE8AE6BFD7C11 ___defaultColorBlock_7;
|
|
};
|
|
|
|
// UnityEngine.Coroutine
|
|
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D
|
|
{
|
|
// System.IntPtr UnityEngine.Coroutine::m_Ptr
|
|
intptr_t ___m_Ptr_0;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.Coroutine
|
|
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B_marshaled_pinvoke : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_Ptr_0;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.Coroutine
|
|
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B_marshaled_com : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
|
|
{
|
|
intptr_t ___m_Ptr_0;
|
|
};
|
|
|
|
// IngameDebugConsole.DebugLogEntryTimestamp
|
|
struct DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97
|
|
{
|
|
// System.DateTime IngameDebugConsole.DebugLogEntryTimestamp::dateTime
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime_0;
|
|
// System.Single IngameDebugConsole.DebugLogEntryTimestamp::elapsedSeconds
|
|
float ___elapsedSeconds_1;
|
|
// System.Int32 IngameDebugConsole.DebugLogEntryTimestamp::frameCount
|
|
int32_t ___frameCount_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of IngameDebugConsole.DebugLogEntryTimestamp
|
|
struct DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97_marshaled_pinvoke
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime_0;
|
|
float ___elapsedSeconds_1;
|
|
int32_t ___frameCount_2;
|
|
};
|
|
// Native definition for COM marshalling of IngameDebugConsole.DebugLogEntryTimestamp
|
|
struct DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97_marshaled_com
|
|
{
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime_0;
|
|
float ___elapsedSeconds_1;
|
|
int32_t ___frameCount_2;
|
|
};
|
|
|
|
// System.Delegate
|
|
struct Delegate_t : public RuntimeObject
|
|
{
|
|
// System.IntPtr System.Delegate::method_ptr
|
|
Il2CppMethodPointer ___method_ptr_0;
|
|
// System.IntPtr System.Delegate::invoke_impl
|
|
intptr_t ___invoke_impl_1;
|
|
// System.Object System.Delegate::m_target
|
|
RuntimeObject* ___m_target_2;
|
|
// System.IntPtr System.Delegate::method
|
|
intptr_t ___method_3;
|
|
// System.IntPtr System.Delegate::delegate_trampoline
|
|
intptr_t ___delegate_trampoline_4;
|
|
// System.IntPtr System.Delegate::extra_arg
|
|
intptr_t ___extra_arg_5;
|
|
// System.IntPtr System.Delegate::method_code
|
|
intptr_t ___method_code_6;
|
|
// System.IntPtr System.Delegate::interp_method
|
|
intptr_t ___interp_method_7;
|
|
// System.IntPtr System.Delegate::interp_invoke_impl
|
|
intptr_t ___interp_invoke_impl_8;
|
|
// System.Reflection.MethodInfo System.Delegate::method_info
|
|
MethodInfo_t* ___method_info_9;
|
|
// System.Reflection.MethodInfo System.Delegate::original_method_info
|
|
MethodInfo_t* ___original_method_info_10;
|
|
// System.DelegateData System.Delegate::data
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
|
|
// System.Boolean System.Delegate::method_is_virtual
|
|
bool ___method_is_virtual_12;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Delegate
|
|
struct Delegate_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ___method_ptr_0;
|
|
intptr_t ___invoke_impl_1;
|
|
Il2CppIUnknown* ___m_target_2;
|
|
intptr_t ___method_3;
|
|
intptr_t ___delegate_trampoline_4;
|
|
intptr_t ___extra_arg_5;
|
|
intptr_t ___method_code_6;
|
|
intptr_t ___interp_method_7;
|
|
intptr_t ___interp_invoke_impl_8;
|
|
MethodInfo_t* ___method_info_9;
|
|
MethodInfo_t* ___original_method_info_10;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
|
|
int32_t ___method_is_virtual_12;
|
|
};
|
|
// Native definition for COM marshalling of System.Delegate
|
|
struct Delegate_t_marshaled_com
|
|
{
|
|
intptr_t ___method_ptr_0;
|
|
intptr_t ___invoke_impl_1;
|
|
Il2CppIUnknown* ___m_target_2;
|
|
intptr_t ___method_3;
|
|
intptr_t ___delegate_trampoline_4;
|
|
intptr_t ___extra_arg_5;
|
|
intptr_t ___method_code_6;
|
|
intptr_t ___interp_method_7;
|
|
intptr_t ___interp_invoke_impl_8;
|
|
MethodInfo_t* ___method_info_9;
|
|
MethodInfo_t* ___original_method_info_10;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
|
|
int32_t ___method_is_virtual_12;
|
|
};
|
|
|
|
// System.Exception
|
|
struct Exception_t : public RuntimeObject
|
|
{
|
|
// System.String System.Exception::_className
|
|
String_t* ____className_1;
|
|
// System.String System.Exception::_message
|
|
String_t* ____message_2;
|
|
// System.Collections.IDictionary System.Exception::_data
|
|
RuntimeObject* ____data_3;
|
|
// System.Exception System.Exception::_innerException
|
|
Exception_t* ____innerException_4;
|
|
// System.String System.Exception::_helpURL
|
|
String_t* ____helpURL_5;
|
|
// System.Object System.Exception::_stackTrace
|
|
RuntimeObject* ____stackTrace_6;
|
|
// System.String System.Exception::_stackTraceString
|
|
String_t* ____stackTraceString_7;
|
|
// System.String System.Exception::_remoteStackTraceString
|
|
String_t* ____remoteStackTraceString_8;
|
|
// System.Int32 System.Exception::_remoteStackIndex
|
|
int32_t ____remoteStackIndex_9;
|
|
// System.Object System.Exception::_dynamicMethods
|
|
RuntimeObject* ____dynamicMethods_10;
|
|
// System.Int32 System.Exception::_HResult
|
|
int32_t ____HResult_11;
|
|
// System.String System.Exception::_source
|
|
String_t* ____source_12;
|
|
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
|
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
|
// System.IntPtr[] System.Exception::native_trace_ips
|
|
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
|
|
// System.Int32 System.Exception::caught_in_unmanaged
|
|
int32_t ___caught_in_unmanaged_16;
|
|
};
|
|
|
|
struct Exception_t_StaticFields
|
|
{
|
|
// System.Object System.Exception::s_EDILock
|
|
RuntimeObject* ___s_EDILock_0;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.Exception
|
|
struct Exception_t_marshaled_pinvoke
|
|
{
|
|
char* ____className_1;
|
|
char* ____message_2;
|
|
RuntimeObject* ____data_3;
|
|
Exception_t_marshaled_pinvoke* ____innerException_4;
|
|
char* ____helpURL_5;
|
|
Il2CppIUnknown* ____stackTrace_6;
|
|
char* ____stackTraceString_7;
|
|
char* ____remoteStackTraceString_8;
|
|
int32_t ____remoteStackIndex_9;
|
|
Il2CppIUnknown* ____dynamicMethods_10;
|
|
int32_t ____HResult_11;
|
|
char* ____source_12;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
|
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
|
int32_t ___caught_in_unmanaged_16;
|
|
};
|
|
// Native definition for COM marshalling of System.Exception
|
|
struct Exception_t_marshaled_com
|
|
{
|
|
Il2CppChar* ____className_1;
|
|
Il2CppChar* ____message_2;
|
|
RuntimeObject* ____data_3;
|
|
Exception_t_marshaled_com* ____innerException_4;
|
|
Il2CppChar* ____helpURL_5;
|
|
Il2CppIUnknown* ____stackTrace_6;
|
|
Il2CppChar* ____stackTraceString_7;
|
|
Il2CppChar* ____remoteStackTraceString_8;
|
|
int32_t ____remoteStackIndex_9;
|
|
Il2CppIUnknown* ____dynamicMethods_10;
|
|
int32_t ____HResult_11;
|
|
Il2CppChar* ____source_12;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
|
|
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
|
|
int32_t ___caught_in_unmanaged_16;
|
|
};
|
|
|
|
// System.Reflection.MethodInfo
|
|
struct MethodInfo_t : public MethodBase_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
|
|
{
|
|
// System.IntPtr UnityEngine.Object::m_CachedPtr
|
|
intptr_t ___m_CachedPtr_0;
|
|
};
|
|
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
|
|
{
|
|
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
|
|
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_CachedPtr_0;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
|
{
|
|
intptr_t ___m_CachedPtr_0;
|
|
};
|
|
|
|
// UnityEngine.EventSystems.RaycastResult
|
|
struct RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023
|
|
{
|
|
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_GameObject_0;
|
|
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___module_1;
|
|
// System.Single UnityEngine.EventSystems.RaycastResult::distance
|
|
float ___distance_2;
|
|
// System.Single UnityEngine.EventSystems.RaycastResult::index
|
|
float ___index_3;
|
|
// System.Int32 UnityEngine.EventSystems.RaycastResult::depth
|
|
int32_t ___depth_4;
|
|
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer
|
|
int32_t ___sortingLayer_5;
|
|
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder
|
|
int32_t ___sortingOrder_6;
|
|
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldPosition_7;
|
|
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldNormal_8;
|
|
// UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPosition_9;
|
|
// System.Int32 UnityEngine.EventSystems.RaycastResult::displayIndex
|
|
int32_t ___displayIndex_10;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult
|
|
struct RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_pinvoke
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_GameObject_0;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___module_1;
|
|
float ___distance_2;
|
|
float ___index_3;
|
|
int32_t ___depth_4;
|
|
int32_t ___sortingLayer_5;
|
|
int32_t ___sortingOrder_6;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldPosition_7;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldNormal_8;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPosition_9;
|
|
int32_t ___displayIndex_10;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult
|
|
struct RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023_marshaled_com
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_GameObject_0;
|
|
BaseRaycaster_t7DC8158FD3CA0193455344379DD5FF7CD5F1F832* ___module_1;
|
|
float ___distance_2;
|
|
float ___index_3;
|
|
int32_t ___depth_4;
|
|
int32_t ___sortingLayer_5;
|
|
int32_t ___sortingOrder_6;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldPosition_7;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___worldNormal_8;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPosition_9;
|
|
int32_t ___displayIndex_10;
|
|
};
|
|
|
|
// UnityEngine.RectOffset
|
|
struct RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5 : public RuntimeObject
|
|
{
|
|
// System.IntPtr UnityEngine.RectOffset::m_Ptr
|
|
intptr_t ___m_Ptr_0;
|
|
// System.Object UnityEngine.RectOffset::m_SourceStyle
|
|
RuntimeObject* ___m_SourceStyle_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.RectOffset
|
|
struct RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_Ptr_0;
|
|
Il2CppIUnknown* ___m_SourceStyle_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.RectOffset
|
|
struct RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_marshaled_com
|
|
{
|
|
intptr_t ___m_Ptr_0;
|
|
Il2CppIUnknown* ___m_SourceStyle_1;
|
|
};
|
|
|
|
// System.RuntimeTypeHandle
|
|
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
|
|
{
|
|
// System.IntPtr System.RuntimeTypeHandle::value
|
|
intptr_t ___value_0;
|
|
};
|
|
|
|
// UnityEngine.UI.Button/ButtonClickedEvent
|
|
struct ButtonClickedEvent_t8EA72E90B3BD1392FB3B3EF167D5121C23569E4C : public UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977
|
|
{
|
|
};
|
|
|
|
// IngameDebugConsole.DebugLogPopup/<MoveToPosAnimation>d__21
|
|
struct U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B : public RuntimeObject
|
|
{
|
|
// System.Int32 IngameDebugConsole.DebugLogPopup/<MoveToPosAnimation>d__21::<>1__state
|
|
int32_t ___U3CU3E1__state_0;
|
|
// System.Object IngameDebugConsole.DebugLogPopup/<MoveToPosAnimation>d__21::<>2__current
|
|
RuntimeObject* ___U3CU3E2__current_1;
|
|
// IngameDebugConsole.DebugLogPopup IngameDebugConsole.DebugLogPopup/<MoveToPosAnimation>d__21::<>4__this
|
|
DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* ___U3CU3E4__this_2;
|
|
// UnityEngine.Vector2 IngameDebugConsole.DebugLogPopup/<MoveToPosAnimation>d__21::targetPos
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___targetPos_3;
|
|
// System.Single IngameDebugConsole.DebugLogPopup/<MoveToPosAnimation>d__21::<modifier>5__2
|
|
float ___U3CmodifierU3E5__2_4;
|
|
// UnityEngine.Vector2 IngameDebugConsole.DebugLogPopup/<MoveToPosAnimation>d__21::<initialPos>5__3
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CinitialPosU3E5__3_5;
|
|
};
|
|
|
|
// UnityEngine.UI.InputField/EndEditEvent
|
|
struct EndEditEvent_t946A962BA13CF60BB0BE7AD091DA041FD788E655 : public UnityEvent_1_tC9859540CF1468306CAB6D758C0A0D95DBCEC257
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UI.InputField/OnChangeEvent
|
|
struct OnChangeEvent_tE4829F88300B0E0E0D1B78B453AF25FC1AA55E2F : public UnityEvent_1_tC9859540CF1468306CAB6D758C0A0D95DBCEC257
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UI.ScrollRect/ScrollRectEvent
|
|
struct ScrollRectEvent_t812C011901E6101F2A0FFC34C66AC5F65C0DEC26 : public UnityEvent_1_t9A868DD8EBFC0D9D8134D903A170ECBDEE567932
|
|
{
|
|
};
|
|
|
|
// System.Nullable`1<IngameDebugConsole.DebugLogEntryTimestamp>
|
|
struct Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41
|
|
{
|
|
// System.Boolean System.Nullable`1::hasValue
|
|
bool ___hasValue_0;
|
|
// T System.Nullable`1::value
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 ___value_1;
|
|
};
|
|
|
|
// UnityEngine.Component
|
|
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
|
|
// UnityEngine.GameObject
|
|
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
|
|
// System.MulticastDelegate
|
|
struct MulticastDelegate_t : public Delegate_t
|
|
{
|
|
// System.Delegate[] System.MulticastDelegate::delegates
|
|
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
|
|
};
|
|
// Native definition for P/Invoke marshalling of System.MulticastDelegate
|
|
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
|
|
{
|
|
Delegate_t_marshaled_pinvoke** ___delegates_13;
|
|
};
|
|
// Native definition for COM marshalling of System.MulticastDelegate
|
|
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
|
|
{
|
|
Delegate_t_marshaled_com** ___delegates_13;
|
|
};
|
|
|
|
// UnityEngine.EventSystems.PointerEventData
|
|
struct PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB : public BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F
|
|
{
|
|
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<pointerEnter>k__BackingField
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerEnterU3Ek__BackingField_2;
|
|
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::m_PointerPress
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_PointerPress_3;
|
|
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<lastPress>k__BackingField
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3ClastPressU3Ek__BackingField_4;
|
|
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<rawPointerPress>k__BackingField
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CrawPointerPressU3Ek__BackingField_5;
|
|
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<pointerDrag>k__BackingField
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerDragU3Ek__BackingField_6;
|
|
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<pointerClick>k__BackingField
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CpointerClickU3Ek__BackingField_7;
|
|
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::<pointerCurrentRaycast>k__BackingField
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___U3CpointerCurrentRaycastU3Ek__BackingField_8;
|
|
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::<pointerPressRaycast>k__BackingField
|
|
RaycastResult_tEC6A7B7CABA99C386F054F01E498AEC426CF8023 ___U3CpointerPressRaycastU3Ek__BackingField_9;
|
|
// System.Collections.Generic.List`1<UnityEngine.GameObject> UnityEngine.EventSystems.PointerEventData::hovered
|
|
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___hovered_10;
|
|
// System.Boolean UnityEngine.EventSystems.PointerEventData::<eligibleForClick>k__BackingField
|
|
bool ___U3CeligibleForClickU3Ek__BackingField_11;
|
|
// System.Int32 UnityEngine.EventSystems.PointerEventData::<pointerId>k__BackingField
|
|
int32_t ___U3CpointerIdU3Ek__BackingField_12;
|
|
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<position>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpositionU3Ek__BackingField_13;
|
|
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<delta>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CdeltaU3Ek__BackingField_14;
|
|
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<pressPosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CpressPositionU3Ek__BackingField_15;
|
|
// UnityEngine.Vector3 UnityEngine.EventSystems.PointerEventData::<worldPosition>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CworldPositionU3Ek__BackingField_16;
|
|
// UnityEngine.Vector3 UnityEngine.EventSystems.PointerEventData::<worldNormal>k__BackingField
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___U3CworldNormalU3Ek__BackingField_17;
|
|
// System.Single UnityEngine.EventSystems.PointerEventData::<clickTime>k__BackingField
|
|
float ___U3CclickTimeU3Ek__BackingField_18;
|
|
// System.Int32 UnityEngine.EventSystems.PointerEventData::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_19;
|
|
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<scrollDelta>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CscrollDeltaU3Ek__BackingField_20;
|
|
// System.Boolean UnityEngine.EventSystems.PointerEventData::<useDragThreshold>k__BackingField
|
|
bool ___U3CuseDragThresholdU3Ek__BackingField_21;
|
|
// System.Boolean UnityEngine.EventSystems.PointerEventData::<dragging>k__BackingField
|
|
bool ___U3CdraggingU3Ek__BackingField_22;
|
|
// UnityEngine.EventSystems.PointerEventData/InputButton UnityEngine.EventSystems.PointerEventData::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_23;
|
|
// System.Single UnityEngine.EventSystems.PointerEventData::<pressure>k__BackingField
|
|
float ___U3CpressureU3Ek__BackingField_24;
|
|
// System.Single UnityEngine.EventSystems.PointerEventData::<tangentialPressure>k__BackingField
|
|
float ___U3CtangentialPressureU3Ek__BackingField_25;
|
|
// System.Single UnityEngine.EventSystems.PointerEventData::<altitudeAngle>k__BackingField
|
|
float ___U3CaltitudeAngleU3Ek__BackingField_26;
|
|
// System.Single UnityEngine.EventSystems.PointerEventData::<azimuthAngle>k__BackingField
|
|
float ___U3CazimuthAngleU3Ek__BackingField_27;
|
|
// System.Single UnityEngine.EventSystems.PointerEventData::<twist>k__BackingField
|
|
float ___U3CtwistU3Ek__BackingField_28;
|
|
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<radius>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusU3Ek__BackingField_29;
|
|
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<radiusVariance>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CradiusVarianceU3Ek__BackingField_30;
|
|
// System.Boolean UnityEngine.EventSystems.PointerEventData::<fullyExited>k__BackingField
|
|
bool ___U3CfullyExitedU3Ek__BackingField_31;
|
|
// System.Boolean UnityEngine.EventSystems.PointerEventData::<reentered>k__BackingField
|
|
bool ___U3CreenteredU3Ek__BackingField_32;
|
|
};
|
|
|
|
// UnityEngine.Sprite
|
|
struct Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
|
|
// System.SystemException
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
|
|
// System.Type
|
|
struct Type_t : public MemberInfo_t
|
|
{
|
|
// System.RuntimeTypeHandle System.Type::_impl
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
|
|
};
|
|
|
|
struct Type_t_StaticFields
|
|
{
|
|
// System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
|
|
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
|
|
// System.Char System.Type::Delimiter
|
|
Il2CppChar ___Delimiter_1;
|
|
// System.Type[] System.Type::EmptyTypes
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
|
|
// System.Object System.Type::Missing
|
|
RuntimeObject* ___Missing_3;
|
|
// System.Reflection.MemberFilter System.Type::FilterAttribute
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
|
|
// System.Reflection.MemberFilter System.Type::FilterName
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
|
|
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
|
|
};
|
|
|
|
// System.Action`1<System.String>
|
|
struct Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.Events.UnityAction`1<System.String>
|
|
struct UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>
|
|
struct UnityAction_1_t8FBFBC01962B7293F0E33F9D6F1CEAF2896D8669 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.AsyncCallback
|
|
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.Behaviour
|
|
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
|
{
|
|
};
|
|
|
|
// System.IO.IOException
|
|
struct IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// System.IndexOutOfRangeException
|
|
struct IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// System.NotSupportedException
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// UnityEngine.Transform
|
|
struct Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1 : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
|
{
|
|
};
|
|
|
|
// UnityEngine.Events.UnityAction
|
|
struct UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.Application/LogCallback
|
|
struct LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// IngameDebugConsole.DebugLogConsole/ParseFunction
|
|
struct ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UI.InputField/OnValidateInput
|
|
struct OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.Camera
|
|
struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
|
{
|
|
};
|
|
|
|
struct Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184_StaticFields
|
|
{
|
|
// UnityEngine.Camera/CameraCallback UnityEngine.Camera::onPreCull
|
|
CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPreCull_4;
|
|
// UnityEngine.Camera/CameraCallback UnityEngine.Camera::onPreRender
|
|
CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPreRender_5;
|
|
// UnityEngine.Camera/CameraCallback UnityEngine.Camera::onPostRender
|
|
CameraCallback_t844E527BFE37BC0495E7F67993E43C07642DA9DD* ___onPostRender_6;
|
|
};
|
|
|
|
// UnityEngine.CanvasGroup
|
|
struct CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
|
{
|
|
};
|
|
|
|
// System.IO.FileNotFoundException
|
|
struct FileNotFoundException_t17F1B49AD996E4A60C87C7ADC9D3A25EB5808A9A : public IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910
|
|
{
|
|
// System.String System.IO.FileNotFoundException::<FileName>k__BackingField
|
|
String_t* ___U3CFileNameU3Ek__BackingField_18;
|
|
// System.String System.IO.FileNotFoundException::<FusionLog>k__BackingField
|
|
String_t* ___U3CFusionLogU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.MonoBehaviour
|
|
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
|
{
|
|
};
|
|
|
|
// UnityEngine.RectTransform
|
|
struct RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5 : public Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1
|
|
{
|
|
};
|
|
|
|
struct RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_StaticFields
|
|
{
|
|
// UnityEngine.RectTransform/ReapplyDrivenProperties UnityEngine.RectTransform::reapplyDrivenProperties
|
|
ReapplyDrivenProperties_t3482EA130A01FF7EE2EEFE37F66A5215D08CFE24* ___reapplyDrivenProperties_4;
|
|
};
|
|
|
|
// IngameDebugConsole.DebugLogItem
|
|
struct DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
// UnityEngine.RectTransform IngameDebugConsole.DebugLogItem::transformComponent
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___transformComponent_4;
|
|
// UnityEngine.UI.Image IngameDebugConsole.DebugLogItem::imageComponent
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* ___imageComponent_5;
|
|
// UnityEngine.CanvasGroup IngameDebugConsole.DebugLogItem::canvasGroupComponent
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* ___canvasGroupComponent_6;
|
|
// UnityEngine.UI.Text IngameDebugConsole.DebugLogItem::logText
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* ___logText_7;
|
|
// UnityEngine.UI.Image IngameDebugConsole.DebugLogItem::logTypeImage
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* ___logTypeImage_8;
|
|
// UnityEngine.GameObject IngameDebugConsole.DebugLogItem::logCountParent
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___logCountParent_9;
|
|
// UnityEngine.UI.Text IngameDebugConsole.DebugLogItem::logCountText
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* ___logCountText_10;
|
|
// UnityEngine.RectTransform IngameDebugConsole.DebugLogItem::copyLogButton
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___copyLogButton_11;
|
|
// IngameDebugConsole.DebugLogEntry IngameDebugConsole.DebugLogItem::logEntry
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* ___logEntry_12;
|
|
// System.Nullable`1<IngameDebugConsole.DebugLogEntryTimestamp> IngameDebugConsole.DebugLogItem::logEntryTimestamp
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 ___logEntryTimestamp_13;
|
|
// System.Int32 IngameDebugConsole.DebugLogItem::entryIndex
|
|
int32_t ___entryIndex_14;
|
|
// System.Boolean IngameDebugConsole.DebugLogItem::isExpanded
|
|
bool ___isExpanded_15;
|
|
// UnityEngine.Vector2 IngameDebugConsole.DebugLogItem::logTextOriginalPosition
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___logTextOriginalPosition_16;
|
|
// UnityEngine.Vector2 IngameDebugConsole.DebugLogItem::logTextOriginalSize
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___logTextOriginalSize_17;
|
|
// System.Single IngameDebugConsole.DebugLogItem::copyLogButtonHeight
|
|
float ___copyLogButtonHeight_18;
|
|
// IngameDebugConsole.DebugLogRecycledListView IngameDebugConsole.DebugLogItem::listView
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* ___listView_19;
|
|
};
|
|
|
|
// IngameDebugConsole.DebugLogItemCopyWebGL
|
|
struct DebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
// IngameDebugConsole.DebugLogItem IngameDebugConsole.DebugLogItemCopyWebGL::logItem
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___logItem_4;
|
|
};
|
|
|
|
// IngameDebugConsole.DebugLogManager
|
|
struct DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::singleton
|
|
bool ___singleton_5;
|
|
// System.Single IngameDebugConsole.DebugLogManager::minimumHeight
|
|
float ___minimumHeight_6;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::enableHorizontalResizing
|
|
bool ___enableHorizontalResizing_7;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::resizeFromRight
|
|
bool ___resizeFromRight_8;
|
|
// System.Single IngameDebugConsole.DebugLogManager::minimumWidth
|
|
float ___minimumWidth_9;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::enablePopup
|
|
bool ___enablePopup_10;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::startInPopupMode
|
|
bool ___startInPopupMode_11;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::startMinimized
|
|
bool ___startMinimized_12;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::toggleWithKey
|
|
bool ___toggleWithKey_13;
|
|
// UnityEngine.KeyCode IngameDebugConsole.DebugLogManager::toggleKey
|
|
int32_t ___toggleKey_14;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::enableSearchbar
|
|
bool ___enableSearchbar_15;
|
|
// System.Single IngameDebugConsole.DebugLogManager::topSearchbarMinWidth
|
|
float ___topSearchbarMinWidth_16;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::captureLogTimestamps
|
|
bool ___captureLogTimestamps_17;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::alwaysDisplayTimestamps
|
|
bool ___alwaysDisplayTimestamps_18;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::clearCommandAfterExecution
|
|
bool ___clearCommandAfterExecution_19;
|
|
// System.Int32 IngameDebugConsole.DebugLogManager::commandHistorySize
|
|
int32_t ___commandHistorySize_20;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::showCommandSuggestions
|
|
bool ___showCommandSuggestions_21;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::receiveLogcatLogsInAndroid
|
|
bool ___receiveLogcatLogsInAndroid_22;
|
|
// System.String IngameDebugConsole.DebugLogManager::logcatArguments
|
|
String_t* ___logcatArguments_23;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::avoidScreenCutout
|
|
bool ___avoidScreenCutout_24;
|
|
// System.Int32 IngameDebugConsole.DebugLogManager::maxLogLength
|
|
int32_t ___maxLogLength_25;
|
|
// IngameDebugConsole.DebugLogItem IngameDebugConsole.DebugLogManager::logItemPrefab
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___logItemPrefab_26;
|
|
// UnityEngine.UI.Text IngameDebugConsole.DebugLogManager::commandSuggestionPrefab
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* ___commandSuggestionPrefab_27;
|
|
// UnityEngine.Sprite IngameDebugConsole.DebugLogManager::infoLog
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___infoLog_28;
|
|
// UnityEngine.Sprite IngameDebugConsole.DebugLogManager::warningLog
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___warningLog_29;
|
|
// UnityEngine.Sprite IngameDebugConsole.DebugLogManager::errorLog
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___errorLog_30;
|
|
// UnityEngine.Sprite IngameDebugConsole.DebugLogManager::resizeIconAllDirections
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___resizeIconAllDirections_31;
|
|
// UnityEngine.Sprite IngameDebugConsole.DebugLogManager::resizeIconVerticalOnly
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___resizeIconVerticalOnly_32;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.LogType,UnityEngine.Sprite> IngameDebugConsole.DebugLogManager::logSpriteRepresentations
|
|
Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7* ___logSpriteRepresentations_33;
|
|
// UnityEngine.Color IngameDebugConsole.DebugLogManager::collapseButtonNormalColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___collapseButtonNormalColor_34;
|
|
// UnityEngine.Color IngameDebugConsole.DebugLogManager::collapseButtonSelectedColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___collapseButtonSelectedColor_35;
|
|
// UnityEngine.Color IngameDebugConsole.DebugLogManager::filterButtonsNormalColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___filterButtonsNormalColor_36;
|
|
// UnityEngine.Color IngameDebugConsole.DebugLogManager::filterButtonsSelectedColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___filterButtonsSelectedColor_37;
|
|
// System.String IngameDebugConsole.DebugLogManager::commandSuggestionHighlightStart
|
|
String_t* ___commandSuggestionHighlightStart_38;
|
|
// System.String IngameDebugConsole.DebugLogManager::commandSuggestionHighlightEnd
|
|
String_t* ___commandSuggestionHighlightEnd_39;
|
|
// UnityEngine.RectTransform IngameDebugConsole.DebugLogManager::logWindowTR
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___logWindowTR_40;
|
|
// UnityEngine.RectTransform IngameDebugConsole.DebugLogManager::canvasTR
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___canvasTR_41;
|
|
// UnityEngine.RectTransform IngameDebugConsole.DebugLogManager::logItemsContainer
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___logItemsContainer_42;
|
|
// UnityEngine.RectTransform IngameDebugConsole.DebugLogManager::commandSuggestionsContainer
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___commandSuggestionsContainer_43;
|
|
// UnityEngine.UI.InputField IngameDebugConsole.DebugLogManager::commandInputField
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* ___commandInputField_44;
|
|
// UnityEngine.UI.Button IngameDebugConsole.DebugLogManager::hideButton
|
|
Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098* ___hideButton_45;
|
|
// UnityEngine.UI.Button IngameDebugConsole.DebugLogManager::clearButton
|
|
Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098* ___clearButton_46;
|
|
// UnityEngine.UI.Image IngameDebugConsole.DebugLogManager::collapseButton
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* ___collapseButton_47;
|
|
// UnityEngine.UI.Image IngameDebugConsole.DebugLogManager::filterInfoButton
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* ___filterInfoButton_48;
|
|
// UnityEngine.UI.Image IngameDebugConsole.DebugLogManager::filterWarningButton
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* ___filterWarningButton_49;
|
|
// UnityEngine.UI.Image IngameDebugConsole.DebugLogManager::filterErrorButton
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* ___filterErrorButton_50;
|
|
// UnityEngine.UI.Text IngameDebugConsole.DebugLogManager::infoEntryCountText
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* ___infoEntryCountText_51;
|
|
// UnityEngine.UI.Text IngameDebugConsole.DebugLogManager::warningEntryCountText
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* ___warningEntryCountText_52;
|
|
// UnityEngine.UI.Text IngameDebugConsole.DebugLogManager::errorEntryCountText
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* ___errorEntryCountText_53;
|
|
// UnityEngine.RectTransform IngameDebugConsole.DebugLogManager::searchbar
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___searchbar_54;
|
|
// UnityEngine.RectTransform IngameDebugConsole.DebugLogManager::searchbarSlotTop
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___searchbarSlotTop_55;
|
|
// UnityEngine.RectTransform IngameDebugConsole.DebugLogManager::searchbarSlotBottom
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___searchbarSlotBottom_56;
|
|
// UnityEngine.UI.Image IngameDebugConsole.DebugLogManager::resizeButton
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* ___resizeButton_57;
|
|
// UnityEngine.GameObject IngameDebugConsole.DebugLogManager::snapToBottomButton
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___snapToBottomButton_58;
|
|
// UnityEngine.CanvasGroup IngameDebugConsole.DebugLogManager::logWindowCanvasGroup
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* ___logWindowCanvasGroup_59;
|
|
// IngameDebugConsole.DebugLogPopup IngameDebugConsole.DebugLogManager::popupManager
|
|
DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* ___popupManager_60;
|
|
// UnityEngine.UI.ScrollRect IngameDebugConsole.DebugLogManager::logItemsScrollRect
|
|
ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* ___logItemsScrollRect_61;
|
|
// UnityEngine.RectTransform IngameDebugConsole.DebugLogManager::logItemsScrollRectTR
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___logItemsScrollRectTR_62;
|
|
// UnityEngine.Vector2 IngameDebugConsole.DebugLogManager::logItemsScrollRectOriginalSize
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___logItemsScrollRectOriginalSize_63;
|
|
// IngameDebugConsole.DebugLogRecycledListView IngameDebugConsole.DebugLogManager::recycledListView
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* ___recycledListView_64;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::isLogWindowVisible
|
|
bool ___isLogWindowVisible_65;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::screenDimensionsChanged
|
|
bool ___screenDimensionsChanged_66;
|
|
// System.Single IngameDebugConsole.DebugLogManager::logWindowPreviousWidth
|
|
float ___logWindowPreviousWidth_67;
|
|
// System.Int32 IngameDebugConsole.DebugLogManager::infoEntryCount
|
|
int32_t ___infoEntryCount_68;
|
|
// System.Int32 IngameDebugConsole.DebugLogManager::warningEntryCount
|
|
int32_t ___warningEntryCount_69;
|
|
// System.Int32 IngameDebugConsole.DebugLogManager::errorEntryCount
|
|
int32_t ___errorEntryCount_70;
|
|
// System.Int32 IngameDebugConsole.DebugLogManager::newInfoEntryCount
|
|
int32_t ___newInfoEntryCount_71;
|
|
// System.Int32 IngameDebugConsole.DebugLogManager::newWarningEntryCount
|
|
int32_t ___newWarningEntryCount_72;
|
|
// System.Int32 IngameDebugConsole.DebugLogManager::newErrorEntryCount
|
|
int32_t ___newErrorEntryCount_73;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::isCollapseOn
|
|
bool ___isCollapseOn_74;
|
|
// IngameDebugConsole.DebugLogFilter IngameDebugConsole.DebugLogManager::logFilter
|
|
int32_t ___logFilter_75;
|
|
// System.String IngameDebugConsole.DebugLogManager::searchTerm
|
|
String_t* ___searchTerm_76;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::isInSearchMode
|
|
bool ___isInSearchMode_77;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::snapToBottom
|
|
bool ___snapToBottom_78;
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntry> IngameDebugConsole.DebugLogManager::collapsedLogEntries
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* ___collapsedLogEntries_79;
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntryTimestamp> IngameDebugConsole.DebugLogManager::collapsedLogEntriesTimestamps
|
|
List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* ___collapsedLogEntriesTimestamps_80;
|
|
// System.Collections.Generic.Dictionary`2<IngameDebugConsole.DebugLogEntry,System.Int32> IngameDebugConsole.DebugLogManager::collapsedLogEntriesMap
|
|
Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22* ___collapsedLogEntriesMap_81;
|
|
// IngameDebugConsole.DebugLogIndexList`1<System.Int32> IngameDebugConsole.DebugLogManager::uncollapsedLogEntriesIndices
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* ___uncollapsedLogEntriesIndices_82;
|
|
// IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp> IngameDebugConsole.DebugLogManager::uncollapsedLogEntriesTimestamps
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* ___uncollapsedLogEntriesTimestamps_83;
|
|
// IngameDebugConsole.DebugLogIndexList`1<System.Int32> IngameDebugConsole.DebugLogManager::indicesOfListEntriesToShow
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* ___indicesOfListEntriesToShow_84;
|
|
// IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp> IngameDebugConsole.DebugLogManager::timestampsOfListEntriesToShow
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* ___timestampsOfListEntriesToShow_85;
|
|
// System.Int32 IngameDebugConsole.DebugLogManager::indexOfLogEntryToSelectAndFocus
|
|
int32_t ___indexOfLogEntryToSelectAndFocus_86;
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::shouldUpdateRecycledListView
|
|
bool ___shouldUpdateRecycledListView_87;
|
|
// IngameDebugConsole.DynamicCircularBuffer`1<IngameDebugConsole.QueuedDebugLogEntry> IngameDebugConsole.DebugLogManager::queuedLogEntries
|
|
DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* ___queuedLogEntries_88;
|
|
// System.Object IngameDebugConsole.DebugLogManager::logEntriesLock
|
|
RuntimeObject* ___logEntriesLock_89;
|
|
// System.Int32 IngameDebugConsole.DebugLogManager::pendingLogToAutoExpand
|
|
int32_t ___pendingLogToAutoExpand_90;
|
|
// System.Collections.Generic.List`1<UnityEngine.UI.Text> IngameDebugConsole.DebugLogManager::commandSuggestionInstances
|
|
List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48* ___commandSuggestionInstances_91;
|
|
// System.Int32 IngameDebugConsole.DebugLogManager::visibleCommandSuggestionInstances
|
|
int32_t ___visibleCommandSuggestionInstances_92;
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo> IngameDebugConsole.DebugLogManager::matchingCommandSuggestions
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* ___matchingCommandSuggestions_93;
|
|
// System.Collections.Generic.List`1<System.Int32> IngameDebugConsole.DebugLogManager::commandCaretIndexIncrements
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___commandCaretIndexIncrements_94;
|
|
// System.String IngameDebugConsole.DebugLogManager::commandInputFieldPrevCommand
|
|
String_t* ___commandInputFieldPrevCommand_95;
|
|
// System.String IngameDebugConsole.DebugLogManager::commandInputFieldPrevCommandName
|
|
String_t* ___commandInputFieldPrevCommandName_96;
|
|
// System.Int32 IngameDebugConsole.DebugLogManager::commandInputFieldPrevParamCount
|
|
int32_t ___commandInputFieldPrevParamCount_97;
|
|
// System.Int32 IngameDebugConsole.DebugLogManager::commandInputFieldPrevCaretPos
|
|
int32_t ___commandInputFieldPrevCaretPos_98;
|
|
// System.Int32 IngameDebugConsole.DebugLogManager::commandInputFieldPrevCaretArgumentIndex
|
|
int32_t ___commandInputFieldPrevCaretArgumentIndex_99;
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntry> IngameDebugConsole.DebugLogManager::pooledLogEntries
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* ___pooledLogEntries_100;
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.DebugLogItem> IngameDebugConsole.DebugLogManager::pooledLogItems
|
|
List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14* ___pooledLogItems_101;
|
|
// IngameDebugConsole.CircularBuffer`1<System.String> IngameDebugConsole.DebugLogManager::commandHistory
|
|
CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A* ___commandHistory_102;
|
|
// System.Int32 IngameDebugConsole.DebugLogManager::commandHistoryIndex
|
|
int32_t ___commandHistoryIndex_103;
|
|
// System.String IngameDebugConsole.DebugLogManager::unfinishedCommand
|
|
String_t* ___unfinishedCommand_104;
|
|
// System.Text.StringBuilder IngameDebugConsole.DebugLogManager::sharedStringBuilder
|
|
StringBuilder_t* ___sharedStringBuilder_105;
|
|
// System.TimeSpan IngameDebugConsole.DebugLogManager::localTimeUtcOffset
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___localTimeUtcOffset_106;
|
|
// UnityEngine.EventSystems.PointerEventData IngameDebugConsole.DebugLogManager::nullPointerEventData
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___nullPointerEventData_107;
|
|
// System.Action IngameDebugConsole.DebugLogManager::OnLogWindowShown
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___OnLogWindowShown_108;
|
|
// System.Action IngameDebugConsole.DebugLogManager::OnLogWindowHidden
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___OnLogWindowHidden_109;
|
|
};
|
|
|
|
struct DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_StaticFields
|
|
{
|
|
// IngameDebugConsole.DebugLogManager IngameDebugConsole.DebugLogManager::<Instance>k__BackingField
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* ___U3CInstanceU3Ek__BackingField_4;
|
|
};
|
|
|
|
// IngameDebugConsole.DebugLogPopup
|
|
struct DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
// UnityEngine.RectTransform IngameDebugConsole.DebugLogPopup::popupTransform
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___popupTransform_4;
|
|
// UnityEngine.Vector2 IngameDebugConsole.DebugLogPopup::halfSize
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___halfSize_5;
|
|
// UnityEngine.UI.Image IngameDebugConsole.DebugLogPopup::backgroundImage
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* ___backgroundImage_6;
|
|
// UnityEngine.CanvasGroup IngameDebugConsole.DebugLogPopup::canvasGroup
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* ___canvasGroup_7;
|
|
// IngameDebugConsole.DebugLogManager IngameDebugConsole.DebugLogPopup::debugManager
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* ___debugManager_8;
|
|
// UnityEngine.UI.Text IngameDebugConsole.DebugLogPopup::newInfoCountText
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* ___newInfoCountText_9;
|
|
// UnityEngine.UI.Text IngameDebugConsole.DebugLogPopup::newWarningCountText
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* ___newWarningCountText_10;
|
|
// UnityEngine.UI.Text IngameDebugConsole.DebugLogPopup::newErrorCountText
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* ___newErrorCountText_11;
|
|
// UnityEngine.Color IngameDebugConsole.DebugLogPopup::alertColorInfo
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___alertColorInfo_12;
|
|
// UnityEngine.Color IngameDebugConsole.DebugLogPopup::alertColorWarning
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___alertColorWarning_13;
|
|
// UnityEngine.Color IngameDebugConsole.DebugLogPopup::alertColorError
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___alertColorError_14;
|
|
// System.Int32 IngameDebugConsole.DebugLogPopup::newInfoCount
|
|
int32_t ___newInfoCount_15;
|
|
// System.Int32 IngameDebugConsole.DebugLogPopup::newWarningCount
|
|
int32_t ___newWarningCount_16;
|
|
// System.Int32 IngameDebugConsole.DebugLogPopup::newErrorCount
|
|
int32_t ___newErrorCount_17;
|
|
// UnityEngine.Color IngameDebugConsole.DebugLogPopup::normalColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___normalColor_18;
|
|
// System.Boolean IngameDebugConsole.DebugLogPopup::isPopupBeingDragged
|
|
bool ___isPopupBeingDragged_19;
|
|
// UnityEngine.Vector2 IngameDebugConsole.DebugLogPopup::normalizedPosition
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___normalizedPosition_20;
|
|
// System.Collections.IEnumerator IngameDebugConsole.DebugLogPopup::moveToPosCoroutine
|
|
RuntimeObject* ___moveToPosCoroutine_21;
|
|
};
|
|
|
|
// IngameDebugConsole.DebugLogRecycledListView
|
|
struct DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
// UnityEngine.RectTransform IngameDebugConsole.DebugLogRecycledListView::transformComponent
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___transformComponent_4;
|
|
// UnityEngine.RectTransform IngameDebugConsole.DebugLogRecycledListView::viewportTransform
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___viewportTransform_5;
|
|
// UnityEngine.Color IngameDebugConsole.DebugLogRecycledListView::logItemNormalColor1
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___logItemNormalColor1_6;
|
|
// UnityEngine.Color IngameDebugConsole.DebugLogRecycledListView::logItemNormalColor2
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___logItemNormalColor2_7;
|
|
// UnityEngine.Color IngameDebugConsole.DebugLogRecycledListView::logItemSelectedColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___logItemSelectedColor_8;
|
|
// IngameDebugConsole.DebugLogManager IngameDebugConsole.DebugLogRecycledListView::manager
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* ___manager_9;
|
|
// UnityEngine.UI.ScrollRect IngameDebugConsole.DebugLogRecycledListView::scrollView
|
|
ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* ___scrollView_10;
|
|
// System.Single IngameDebugConsole.DebugLogRecycledListView::logItemHeight
|
|
float ___logItemHeight_11;
|
|
// System.Single IngameDebugConsole.DebugLogRecycledListView::_1OverLogItemHeight
|
|
float ____1OverLogItemHeight_12;
|
|
// System.Single IngameDebugConsole.DebugLogRecycledListView::viewportHeight
|
|
float ___viewportHeight_13;
|
|
// System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntry> IngameDebugConsole.DebugLogRecycledListView::collapsedLogEntries
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* ___collapsedLogEntries_14;
|
|
// IngameDebugConsole.DebugLogIndexList`1<System.Int32> IngameDebugConsole.DebugLogRecycledListView::indicesOfEntriesToShow
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* ___indicesOfEntriesToShow_15;
|
|
// IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp> IngameDebugConsole.DebugLogRecycledListView::timestampsOfEntriesToShow
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* ___timestampsOfEntriesToShow_16;
|
|
// System.Int32 IngameDebugConsole.DebugLogRecycledListView::indexOfSelectedLogEntry
|
|
int32_t ___indexOfSelectedLogEntry_17;
|
|
// System.Single IngameDebugConsole.DebugLogRecycledListView::positionOfSelectedLogEntry
|
|
float ___positionOfSelectedLogEntry_18;
|
|
// System.Single IngameDebugConsole.DebugLogRecycledListView::heightOfSelectedLogEntry
|
|
float ___heightOfSelectedLogEntry_19;
|
|
// System.Single IngameDebugConsole.DebugLogRecycledListView::deltaHeightOfSelectedLogEntry
|
|
float ___deltaHeightOfSelectedLogEntry_20;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,IngameDebugConsole.DebugLogItem> IngameDebugConsole.DebugLogRecycledListView::logItemsAtIndices
|
|
Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA* ___logItemsAtIndices_21;
|
|
// System.Boolean IngameDebugConsole.DebugLogRecycledListView::isCollapseOn
|
|
bool ___isCollapseOn_22;
|
|
// System.Int32 IngameDebugConsole.DebugLogRecycledListView::currentTopIndex
|
|
int32_t ___currentTopIndex_23;
|
|
// System.Int32 IngameDebugConsole.DebugLogRecycledListView::currentBottomIndex
|
|
int32_t ___currentBottomIndex_24;
|
|
};
|
|
|
|
// IngameDebugConsole.DebugLogResizeListener
|
|
struct DebugLogResizeListener_tAEB6FDAE1D37AD856CBD82204674E6AC4C1764B5 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
// IngameDebugConsole.DebugLogManager IngameDebugConsole.DebugLogResizeListener::debugManager
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* ___debugManager_4;
|
|
};
|
|
|
|
// IngameDebugConsole.DebugsOnScrollListener
|
|
struct DebugsOnScrollListener_t2E15E040AD7FE915FC4F583966EBDE135A4C0DB0 : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
// UnityEngine.UI.ScrollRect IngameDebugConsole.DebugsOnScrollListener::debugsScrollRect
|
|
ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* ___debugsScrollRect_4;
|
|
// IngameDebugConsole.DebugLogManager IngameDebugConsole.DebugsOnScrollListener::debugLogManager
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* ___debugLogManager_5;
|
|
};
|
|
|
|
// UnityEngine.EventSystems.UIBehaviour
|
|
struct UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
};
|
|
|
|
// UnityEngine.EventSystems.EventSystem
|
|
struct EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707 : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule> UnityEngine.EventSystems.EventSystem::m_SystemInputModules
|
|
List_1_tA5BDE435C735A082941CD33D212F97F4AE9FA55F* ___m_SystemInputModules_4;
|
|
// UnityEngine.EventSystems.BaseInputModule UnityEngine.EventSystems.EventSystem::m_CurrentInputModule
|
|
BaseInputModule_tF3B7C22AF1419B2AC9ECE6589357DC1B88ED96B1* ___m_CurrentInputModule_5;
|
|
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::m_FirstSelected
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_FirstSelected_7;
|
|
// System.Boolean UnityEngine.EventSystems.EventSystem::m_sendNavigationEvents
|
|
bool ___m_sendNavigationEvents_8;
|
|
// System.Int32 UnityEngine.EventSystems.EventSystem::m_DragThreshold
|
|
int32_t ___m_DragThreshold_9;
|
|
// UnityEngine.GameObject UnityEngine.EventSystems.EventSystem::m_CurrentSelected
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___m_CurrentSelected_10;
|
|
// System.Boolean UnityEngine.EventSystems.EventSystem::m_HasFocus
|
|
bool ___m_HasFocus_11;
|
|
// System.Boolean UnityEngine.EventSystems.EventSystem::m_SelectionGuard
|
|
bool ___m_SelectionGuard_12;
|
|
// UnityEngine.EventSystems.BaseEventData UnityEngine.EventSystems.EventSystem::m_DummyData
|
|
BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___m_DummyData_13;
|
|
};
|
|
|
|
struct EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707_StaticFields
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem> UnityEngine.EventSystems.EventSystem::m_EventSystems
|
|
List_1_tF2FE88545EFEC788CAAE6C74EC2F78E937FCCAC3* ___m_EventSystems_6;
|
|
// System.Comparison`1<UnityEngine.EventSystems.RaycastResult> UnityEngine.EventSystems.EventSystem::s_RaycastComparer
|
|
Comparison_1_t9FCAC8C8CE160A96C5AAD2DE1D353DCE8A2FEEFC* ___s_RaycastComparer_14;
|
|
// UnityEngine.EventSystems.EventSystem/UIToolkitOverrideConfig UnityEngine.EventSystems.EventSystem::s_UIToolkitOverride
|
|
UIToolkitOverrideConfig_t4E6B4528E38BCA7DA72C45424634806200A50182 ___s_UIToolkitOverride_15;
|
|
};
|
|
|
|
// UnityEngine.UI.Graphic
|
|
struct Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931 : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
|
|
{
|
|
// UnityEngine.Material UnityEngine.UI.Graphic::m_Material
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_Material_6;
|
|
// UnityEngine.Color UnityEngine.UI.Graphic::m_Color
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_Color_7;
|
|
// System.Boolean UnityEngine.UI.Graphic::m_SkipLayoutUpdate
|
|
bool ___m_SkipLayoutUpdate_8;
|
|
// System.Boolean UnityEngine.UI.Graphic::m_SkipMaterialUpdate
|
|
bool ___m_SkipMaterialUpdate_9;
|
|
// System.Boolean UnityEngine.UI.Graphic::m_RaycastTarget
|
|
bool ___m_RaycastTarget_10;
|
|
// UnityEngine.Vector4 UnityEngine.UI.Graphic::m_RaycastPadding
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___m_RaycastPadding_11;
|
|
// UnityEngine.RectTransform UnityEngine.UI.Graphic::m_RectTransform
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___m_RectTransform_12;
|
|
// UnityEngine.CanvasRenderer UnityEngine.UI.Graphic::m_CanvasRenderer
|
|
CanvasRenderer_tAB9A55A976C4E3B2B37D0CE5616E5685A8B43860* ___m_CanvasRenderer_13;
|
|
// UnityEngine.Canvas UnityEngine.UI.Graphic::m_Canvas
|
|
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* ___m_Canvas_14;
|
|
// System.Boolean UnityEngine.UI.Graphic::m_VertsDirty
|
|
bool ___m_VertsDirty_15;
|
|
// System.Boolean UnityEngine.UI.Graphic::m_MaterialDirty
|
|
bool ___m_MaterialDirty_16;
|
|
// UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyLayoutCallback
|
|
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___m_OnDirtyLayoutCallback_17;
|
|
// UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyVertsCallback
|
|
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___m_OnDirtyVertsCallback_18;
|
|
// UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyMaterialCallback
|
|
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___m_OnDirtyMaterialCallback_19;
|
|
// UnityEngine.Mesh UnityEngine.UI.Graphic::m_CachedMesh
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___m_CachedMesh_22;
|
|
// UnityEngine.Vector2[] UnityEngine.UI.Graphic::m_CachedUvs
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* ___m_CachedUvs_23;
|
|
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween> UnityEngine.UI.Graphic::m_ColorTweenRunner
|
|
TweenRunner_1_t5BB0582F926E75E2FE795492679A6CF55A4B4BC4* ___m_ColorTweenRunner_24;
|
|
// System.Boolean UnityEngine.UI.Graphic::<useLegacyMeshGeneration>k__BackingField
|
|
bool ___U3CuseLegacyMeshGenerationU3Ek__BackingField_25;
|
|
};
|
|
|
|
struct Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931_StaticFields
|
|
{
|
|
// UnityEngine.Material UnityEngine.UI.Graphic::s_DefaultUI
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___s_DefaultUI_4;
|
|
// UnityEngine.Texture2D UnityEngine.UI.Graphic::s_WhiteTexture
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___s_WhiteTexture_5;
|
|
// UnityEngine.Mesh UnityEngine.UI.Graphic::s_Mesh
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___s_Mesh_20;
|
|
// UnityEngine.UI.VertexHelper UnityEngine.UI.Graphic::s_VertexHelper
|
|
VertexHelper_tB905FCB02AE67CBEE5F265FE37A5938FC5D136FE* ___s_VertexHelper_21;
|
|
};
|
|
|
|
// UnityEngine.UI.ScrollRect
|
|
struct ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
|
|
{
|
|
// UnityEngine.RectTransform UnityEngine.UI.ScrollRect::m_Content
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___m_Content_4;
|
|
// System.Boolean UnityEngine.UI.ScrollRect::m_Horizontal
|
|
bool ___m_Horizontal_5;
|
|
// System.Boolean UnityEngine.UI.ScrollRect::m_Vertical
|
|
bool ___m_Vertical_6;
|
|
// UnityEngine.UI.ScrollRect/MovementType UnityEngine.UI.ScrollRect::m_MovementType
|
|
int32_t ___m_MovementType_7;
|
|
// System.Single UnityEngine.UI.ScrollRect::m_Elasticity
|
|
float ___m_Elasticity_8;
|
|
// System.Boolean UnityEngine.UI.ScrollRect::m_Inertia
|
|
bool ___m_Inertia_9;
|
|
// System.Single UnityEngine.UI.ScrollRect::m_DecelerationRate
|
|
float ___m_DecelerationRate_10;
|
|
// System.Single UnityEngine.UI.ScrollRect::m_ScrollSensitivity
|
|
float ___m_ScrollSensitivity_11;
|
|
// UnityEngine.RectTransform UnityEngine.UI.ScrollRect::m_Viewport
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___m_Viewport_12;
|
|
// UnityEngine.UI.Scrollbar UnityEngine.UI.ScrollRect::m_HorizontalScrollbar
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* ___m_HorizontalScrollbar_13;
|
|
// UnityEngine.UI.Scrollbar UnityEngine.UI.ScrollRect::m_VerticalScrollbar
|
|
Scrollbar_t7CDC9B956698D9385A11E4C12964CD51477072C3* ___m_VerticalScrollbar_14;
|
|
// UnityEngine.UI.ScrollRect/ScrollbarVisibility UnityEngine.UI.ScrollRect::m_HorizontalScrollbarVisibility
|
|
int32_t ___m_HorizontalScrollbarVisibility_15;
|
|
// UnityEngine.UI.ScrollRect/ScrollbarVisibility UnityEngine.UI.ScrollRect::m_VerticalScrollbarVisibility
|
|
int32_t ___m_VerticalScrollbarVisibility_16;
|
|
// System.Single UnityEngine.UI.ScrollRect::m_HorizontalScrollbarSpacing
|
|
float ___m_HorizontalScrollbarSpacing_17;
|
|
// System.Single UnityEngine.UI.ScrollRect::m_VerticalScrollbarSpacing
|
|
float ___m_VerticalScrollbarSpacing_18;
|
|
// UnityEngine.UI.ScrollRect/ScrollRectEvent UnityEngine.UI.ScrollRect::m_OnValueChanged
|
|
ScrollRectEvent_t812C011901E6101F2A0FFC34C66AC5F65C0DEC26* ___m_OnValueChanged_19;
|
|
// UnityEngine.Vector2 UnityEngine.UI.ScrollRect::m_PointerStartLocalCursor
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_PointerStartLocalCursor_20;
|
|
// UnityEngine.Vector2 UnityEngine.UI.ScrollRect::m_ContentStartPosition
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_ContentStartPosition_21;
|
|
// UnityEngine.RectTransform UnityEngine.UI.ScrollRect::m_ViewRect
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___m_ViewRect_22;
|
|
// UnityEngine.Bounds UnityEngine.UI.ScrollRect::m_ContentBounds
|
|
Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3 ___m_ContentBounds_23;
|
|
// UnityEngine.Bounds UnityEngine.UI.ScrollRect::m_ViewBounds
|
|
Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3 ___m_ViewBounds_24;
|
|
// UnityEngine.Vector2 UnityEngine.UI.ScrollRect::m_Velocity
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_Velocity_25;
|
|
// System.Boolean UnityEngine.UI.ScrollRect::m_Dragging
|
|
bool ___m_Dragging_26;
|
|
// System.Boolean UnityEngine.UI.ScrollRect::m_Scrolling
|
|
bool ___m_Scrolling_27;
|
|
// UnityEngine.Vector2 UnityEngine.UI.ScrollRect::m_PrevPosition
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_PrevPosition_28;
|
|
// UnityEngine.Bounds UnityEngine.UI.ScrollRect::m_PrevContentBounds
|
|
Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3 ___m_PrevContentBounds_29;
|
|
// UnityEngine.Bounds UnityEngine.UI.ScrollRect::m_PrevViewBounds
|
|
Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3 ___m_PrevViewBounds_30;
|
|
// System.Boolean UnityEngine.UI.ScrollRect::m_HasRebuiltLayout
|
|
bool ___m_HasRebuiltLayout_31;
|
|
// System.Boolean UnityEngine.UI.ScrollRect::m_HSliderExpand
|
|
bool ___m_HSliderExpand_32;
|
|
// System.Boolean UnityEngine.UI.ScrollRect::m_VSliderExpand
|
|
bool ___m_VSliderExpand_33;
|
|
// System.Single UnityEngine.UI.ScrollRect::m_HSliderHeight
|
|
float ___m_HSliderHeight_34;
|
|
// System.Single UnityEngine.UI.ScrollRect::m_VSliderWidth
|
|
float ___m_VSliderWidth_35;
|
|
// UnityEngine.RectTransform UnityEngine.UI.ScrollRect::m_Rect
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___m_Rect_36;
|
|
// UnityEngine.RectTransform UnityEngine.UI.ScrollRect::m_HorizontalScrollbarRect
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___m_HorizontalScrollbarRect_37;
|
|
// UnityEngine.RectTransform UnityEngine.UI.ScrollRect::m_VerticalScrollbarRect
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___m_VerticalScrollbarRect_38;
|
|
// UnityEngine.DrivenRectTransformTracker UnityEngine.UI.ScrollRect::m_Tracker
|
|
DrivenRectTransformTracker_tFB0706C933E3C68E4F377C204FCEEF091F1EE0B1 ___m_Tracker_39;
|
|
// UnityEngine.Vector3[] UnityEngine.UI.ScrollRect::m_Corners
|
|
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___m_Corners_40;
|
|
};
|
|
|
|
// UnityEngine.UI.Selectable
|
|
struct Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712 : public UIBehaviour_tB9D4295827BD2EEDEF0749200C6CA7090C742A9D
|
|
{
|
|
// System.Boolean UnityEngine.UI.Selectable::m_EnableCalled
|
|
bool ___m_EnableCalled_6;
|
|
// UnityEngine.UI.Navigation UnityEngine.UI.Selectable::m_Navigation
|
|
Navigation_t4D2E201D65749CF4E104E8AC1232CF1D6F14795C ___m_Navigation_7;
|
|
// UnityEngine.UI.Selectable/Transition UnityEngine.UI.Selectable::m_Transition
|
|
int32_t ___m_Transition_8;
|
|
// UnityEngine.UI.ColorBlock UnityEngine.UI.Selectable::m_Colors
|
|
ColorBlock_tDD7C62E7AFE442652FC98F8D058CE8AE6BFD7C11 ___m_Colors_9;
|
|
// UnityEngine.UI.SpriteState UnityEngine.UI.Selectable::m_SpriteState
|
|
SpriteState_tC8199570BE6337FB5C49347C97892B4222E5AACD ___m_SpriteState_10;
|
|
// UnityEngine.UI.AnimationTriggers UnityEngine.UI.Selectable::m_AnimationTriggers
|
|
AnimationTriggers_tA0DC06F89C5280C6DD972F6F4C8A56D7F4F79074* ___m_AnimationTriggers_11;
|
|
// System.Boolean UnityEngine.UI.Selectable::m_Interactable
|
|
bool ___m_Interactable_12;
|
|
// UnityEngine.UI.Graphic UnityEngine.UI.Selectable::m_TargetGraphic
|
|
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* ___m_TargetGraphic_13;
|
|
// System.Boolean UnityEngine.UI.Selectable::m_GroupsAllowInteraction
|
|
bool ___m_GroupsAllowInteraction_14;
|
|
// System.Int32 UnityEngine.UI.Selectable::m_CurrentIndex
|
|
int32_t ___m_CurrentIndex_15;
|
|
// System.Boolean UnityEngine.UI.Selectable::<isPointerInside>k__BackingField
|
|
bool ___U3CisPointerInsideU3Ek__BackingField_16;
|
|
// System.Boolean UnityEngine.UI.Selectable::<isPointerDown>k__BackingField
|
|
bool ___U3CisPointerDownU3Ek__BackingField_17;
|
|
// System.Boolean UnityEngine.UI.Selectable::<hasSelection>k__BackingField
|
|
bool ___U3ChasSelectionU3Ek__BackingField_18;
|
|
// System.Collections.Generic.List`1<UnityEngine.CanvasGroup> UnityEngine.UI.Selectable::m_CanvasGroupCache
|
|
List_1_t2CDCA768E7F493F5EDEBC75AEB200FD621354E35* ___m_CanvasGroupCache_19;
|
|
};
|
|
|
|
struct Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712_StaticFields
|
|
{
|
|
// UnityEngine.UI.Selectable[] UnityEngine.UI.Selectable::s_Selectables
|
|
SelectableU5BU5D_t4160E135F02A40F75A63F787D36F31FEC6FE91A9* ___s_Selectables_4;
|
|
// System.Int32 UnityEngine.UI.Selectable::s_SelectableCount
|
|
int32_t ___s_SelectableCount_5;
|
|
};
|
|
|
|
// UnityEngine.UI.Button
|
|
struct Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098 : public Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712
|
|
{
|
|
// UnityEngine.UI.Button/ButtonClickedEvent UnityEngine.UI.Button::m_OnClick
|
|
ButtonClickedEvent_t8EA72E90B3BD1392FB3B3EF167D5121C23569E4C* ___m_OnClick_20;
|
|
};
|
|
|
|
// UnityEngine.UI.InputField
|
|
struct InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140 : public Selectable_t3251808068A17B8E92FB33590A4C2FA66D456712
|
|
{
|
|
// UnityEngine.TouchScreenKeyboard UnityEngine.UI.InputField::m_Keyboard
|
|
TouchScreenKeyboard_tE87B78A3DAED69816B44C99270A734682E093E7A* ___m_Keyboard_20;
|
|
// UnityEngine.UI.Text UnityEngine.UI.InputField::m_TextComponent
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* ___m_TextComponent_23;
|
|
// UnityEngine.UI.Graphic UnityEngine.UI.InputField::m_Placeholder
|
|
Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* ___m_Placeholder_24;
|
|
// UnityEngine.UI.InputField/ContentType UnityEngine.UI.InputField::m_ContentType
|
|
int32_t ___m_ContentType_25;
|
|
// UnityEngine.UI.InputField/InputType UnityEngine.UI.InputField::m_InputType
|
|
int32_t ___m_InputType_26;
|
|
// System.Char UnityEngine.UI.InputField::m_AsteriskChar
|
|
Il2CppChar ___m_AsteriskChar_27;
|
|
// UnityEngine.TouchScreenKeyboardType UnityEngine.UI.InputField::m_KeyboardType
|
|
int32_t ___m_KeyboardType_28;
|
|
// UnityEngine.UI.InputField/LineType UnityEngine.UI.InputField::m_LineType
|
|
int32_t ___m_LineType_29;
|
|
// System.Boolean UnityEngine.UI.InputField::m_HideMobileInput
|
|
bool ___m_HideMobileInput_30;
|
|
// UnityEngine.UI.InputField/CharacterValidation UnityEngine.UI.InputField::m_CharacterValidation
|
|
int32_t ___m_CharacterValidation_31;
|
|
// System.Int32 UnityEngine.UI.InputField::m_CharacterLimit
|
|
int32_t ___m_CharacterLimit_32;
|
|
// UnityEngine.UI.InputField/SubmitEvent UnityEngine.UI.InputField::m_OnSubmit
|
|
SubmitEvent_t1E0F5A2AB28D0DB55AE18E8DA99147D86492DD5D* ___m_OnSubmit_33;
|
|
// UnityEngine.UI.InputField/EndEditEvent UnityEngine.UI.InputField::m_OnDidEndEdit
|
|
EndEditEvent_t946A962BA13CF60BB0BE7AD091DA041FD788E655* ___m_OnDidEndEdit_34;
|
|
// UnityEngine.UI.InputField/OnChangeEvent UnityEngine.UI.InputField::m_OnValueChanged
|
|
OnChangeEvent_tE4829F88300B0E0E0D1B78B453AF25FC1AA55E2F* ___m_OnValueChanged_35;
|
|
// UnityEngine.UI.InputField/OnValidateInput UnityEngine.UI.InputField::m_OnValidateInput
|
|
OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B* ___m_OnValidateInput_36;
|
|
// UnityEngine.Color UnityEngine.UI.InputField::m_CaretColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_CaretColor_37;
|
|
// System.Boolean UnityEngine.UI.InputField::m_CustomCaretColor
|
|
bool ___m_CustomCaretColor_38;
|
|
// UnityEngine.Color UnityEngine.UI.InputField::m_SelectionColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___m_SelectionColor_39;
|
|
// System.String UnityEngine.UI.InputField::m_Text
|
|
String_t* ___m_Text_40;
|
|
// System.Single UnityEngine.UI.InputField::m_CaretBlinkRate
|
|
float ___m_CaretBlinkRate_41;
|
|
// System.Int32 UnityEngine.UI.InputField::m_CaretWidth
|
|
int32_t ___m_CaretWidth_42;
|
|
// System.Boolean UnityEngine.UI.InputField::m_ReadOnly
|
|
bool ___m_ReadOnly_43;
|
|
// System.Boolean UnityEngine.UI.InputField::m_ShouldActivateOnSelect
|
|
bool ___m_ShouldActivateOnSelect_44;
|
|
// System.Int32 UnityEngine.UI.InputField::m_CaretPosition
|
|
int32_t ___m_CaretPosition_45;
|
|
// System.Int32 UnityEngine.UI.InputField::m_CaretSelectPosition
|
|
int32_t ___m_CaretSelectPosition_46;
|
|
// UnityEngine.RectTransform UnityEngine.UI.InputField::caretRectTrans
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___caretRectTrans_47;
|
|
// UnityEngine.UIVertex[] UnityEngine.UI.InputField::m_CursorVerts
|
|
UIVertexU5BU5D_tBC532486B45D071A520751A90E819C77BA4E3D2F* ___m_CursorVerts_48;
|
|
// UnityEngine.TextGenerator UnityEngine.UI.InputField::m_InputTextCache
|
|
TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* ___m_InputTextCache_49;
|
|
// UnityEngine.CanvasRenderer UnityEngine.UI.InputField::m_CachedInputRenderer
|
|
CanvasRenderer_tAB9A55A976C4E3B2B37D0CE5616E5685A8B43860* ___m_CachedInputRenderer_50;
|
|
// System.Boolean UnityEngine.UI.InputField::m_PreventFontCallback
|
|
bool ___m_PreventFontCallback_51;
|
|
// UnityEngine.Mesh UnityEngine.UI.InputField::m_Mesh
|
|
Mesh_t6D9C539763A09BC2B12AEAEF36F6DFFC98AE63D4* ___m_Mesh_52;
|
|
// System.Boolean UnityEngine.UI.InputField::m_AllowInput
|
|
bool ___m_AllowInput_53;
|
|
// System.Boolean UnityEngine.UI.InputField::m_ShouldActivateNextUpdate
|
|
bool ___m_ShouldActivateNextUpdate_54;
|
|
// System.Boolean UnityEngine.UI.InputField::m_UpdateDrag
|
|
bool ___m_UpdateDrag_55;
|
|
// System.Boolean UnityEngine.UI.InputField::m_DragPositionOutOfBounds
|
|
bool ___m_DragPositionOutOfBounds_56;
|
|
// System.Boolean UnityEngine.UI.InputField::m_CaretVisible
|
|
bool ___m_CaretVisible_59;
|
|
// UnityEngine.Coroutine UnityEngine.UI.InputField::m_BlinkCoroutine
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* ___m_BlinkCoroutine_60;
|
|
// System.Single UnityEngine.UI.InputField::m_BlinkStartTime
|
|
float ___m_BlinkStartTime_61;
|
|
// System.Int32 UnityEngine.UI.InputField::m_DrawStart
|
|
int32_t ___m_DrawStart_62;
|
|
// System.Int32 UnityEngine.UI.InputField::m_DrawEnd
|
|
int32_t ___m_DrawEnd_63;
|
|
// UnityEngine.Coroutine UnityEngine.UI.InputField::m_DragCoroutine
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* ___m_DragCoroutine_64;
|
|
// System.String UnityEngine.UI.InputField::m_OriginalText
|
|
String_t* ___m_OriginalText_65;
|
|
// System.Boolean UnityEngine.UI.InputField::m_WasCanceled
|
|
bool ___m_WasCanceled_66;
|
|
// System.Boolean UnityEngine.UI.InputField::m_HasDoneFocusTransition
|
|
bool ___m_HasDoneFocusTransition_67;
|
|
// UnityEngine.WaitForSecondsRealtime UnityEngine.UI.InputField::m_WaitForSecondsRealtime
|
|
WaitForSecondsRealtime_tA8CE0AAB4B0C872B843E7973637037D17682BA01* ___m_WaitForSecondsRealtime_68;
|
|
// System.Boolean UnityEngine.UI.InputField::m_TouchKeyboardAllowsInPlaceEditing
|
|
bool ___m_TouchKeyboardAllowsInPlaceEditing_69;
|
|
// System.Boolean UnityEngine.UI.InputField::m_IsCompositionActive
|
|
bool ___m_IsCompositionActive_70;
|
|
// UnityEngine.Event UnityEngine.UI.InputField::m_ProcessingEvent
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___m_ProcessingEvent_73;
|
|
};
|
|
|
|
struct InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140_StaticFields
|
|
{
|
|
// System.Char[] UnityEngine.UI.InputField::kSeparators
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___kSeparators_21;
|
|
// System.Boolean UnityEngine.UI.InputField::s_IsQuestDevice
|
|
bool ___s_IsQuestDevice_22;
|
|
};
|
|
|
|
// UnityEngine.UI.MaskableGraphic
|
|
struct MaskableGraphic_tFC5B6BE351C90DE53744DF2A70940242774B361E : public Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931
|
|
{
|
|
// System.Boolean UnityEngine.UI.MaskableGraphic::m_ShouldRecalculateStencil
|
|
bool ___m_ShouldRecalculateStencil_26;
|
|
// UnityEngine.Material UnityEngine.UI.MaskableGraphic::m_MaskMaterial
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___m_MaskMaterial_27;
|
|
// UnityEngine.UI.RectMask2D UnityEngine.UI.MaskableGraphic::m_ParentMask
|
|
RectMask2D_tACF92BE999C791A665BD1ADEABF5BCEB82846670* ___m_ParentMask_28;
|
|
// System.Boolean UnityEngine.UI.MaskableGraphic::m_Maskable
|
|
bool ___m_Maskable_29;
|
|
// System.Boolean UnityEngine.UI.MaskableGraphic::m_IsMaskingGraphic
|
|
bool ___m_IsMaskingGraphic_30;
|
|
// System.Boolean UnityEngine.UI.MaskableGraphic::m_IncludeForMasking
|
|
bool ___m_IncludeForMasking_31;
|
|
// UnityEngine.UI.MaskableGraphic/CullStateChangedEvent UnityEngine.UI.MaskableGraphic::m_OnCullStateChanged
|
|
CullStateChangedEvent_t6073CD0D951EC1256BF74B8F9107D68FC89B99B8* ___m_OnCullStateChanged_32;
|
|
// System.Boolean UnityEngine.UI.MaskableGraphic::m_ShouldRecalculate
|
|
bool ___m_ShouldRecalculate_33;
|
|
// System.Int32 UnityEngine.UI.MaskableGraphic::m_StencilValue
|
|
int32_t ___m_StencilValue_34;
|
|
// UnityEngine.Vector3[] UnityEngine.UI.MaskableGraphic::m_Corners
|
|
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___m_Corners_35;
|
|
};
|
|
|
|
// UnityEngine.UI.Image
|
|
struct Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E : public MaskableGraphic_tFC5B6BE351C90DE53744DF2A70940242774B361E
|
|
{
|
|
// UnityEngine.Sprite UnityEngine.UI.Image::m_Sprite
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_Sprite_37;
|
|
// UnityEngine.Sprite UnityEngine.UI.Image::m_OverrideSprite
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___m_OverrideSprite_38;
|
|
// UnityEngine.UI.Image/Type UnityEngine.UI.Image::m_Type
|
|
int32_t ___m_Type_39;
|
|
// System.Boolean UnityEngine.UI.Image::m_PreserveAspect
|
|
bool ___m_PreserveAspect_40;
|
|
// System.Boolean UnityEngine.UI.Image::m_FillCenter
|
|
bool ___m_FillCenter_41;
|
|
// UnityEngine.UI.Image/FillMethod UnityEngine.UI.Image::m_FillMethod
|
|
int32_t ___m_FillMethod_42;
|
|
// System.Single UnityEngine.UI.Image::m_FillAmount
|
|
float ___m_FillAmount_43;
|
|
// System.Boolean UnityEngine.UI.Image::m_FillClockwise
|
|
bool ___m_FillClockwise_44;
|
|
// System.Int32 UnityEngine.UI.Image::m_FillOrigin
|
|
int32_t ___m_FillOrigin_45;
|
|
// System.Single UnityEngine.UI.Image::m_AlphaHitTestMinimumThreshold
|
|
float ___m_AlphaHitTestMinimumThreshold_46;
|
|
// System.Boolean UnityEngine.UI.Image::m_Tracked
|
|
bool ___m_Tracked_47;
|
|
// System.Boolean UnityEngine.UI.Image::m_UseSpriteMesh
|
|
bool ___m_UseSpriteMesh_48;
|
|
// System.Single UnityEngine.UI.Image::m_PixelsPerUnitMultiplier
|
|
float ___m_PixelsPerUnitMultiplier_49;
|
|
// System.Single UnityEngine.UI.Image::m_CachedReferencePixelsPerUnit
|
|
float ___m_CachedReferencePixelsPerUnit_50;
|
|
};
|
|
|
|
struct Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E_StaticFields
|
|
{
|
|
// UnityEngine.Material UnityEngine.UI.Image::s_ETC1DefaultUI
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___s_ETC1DefaultUI_36;
|
|
// UnityEngine.Vector2[] UnityEngine.UI.Image::s_VertScratch
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* ___s_VertScratch_51;
|
|
// UnityEngine.Vector2[] UnityEngine.UI.Image::s_UVScratch
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* ___s_UVScratch_52;
|
|
// UnityEngine.Vector3[] UnityEngine.UI.Image::s_Xy
|
|
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___s_Xy_53;
|
|
// UnityEngine.Vector3[] UnityEngine.UI.Image::s_Uv
|
|
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___s_Uv_54;
|
|
// System.Collections.Generic.List`1<UnityEngine.UI.Image> UnityEngine.UI.Image::m_TrackedTexturelessImages
|
|
List_1_tE6BB71ABF15905EFA2BE92C38A2716547AEADB19* ___m_TrackedTexturelessImages_55;
|
|
// System.Boolean UnityEngine.UI.Image::s_Initialized
|
|
bool ___s_Initialized_56;
|
|
};
|
|
|
|
// UnityEngine.UI.Text
|
|
struct Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62 : public MaskableGraphic_tFC5B6BE351C90DE53744DF2A70940242774B361E
|
|
{
|
|
// UnityEngine.UI.FontData UnityEngine.UI.Text::m_FontData
|
|
FontData_tB8E562846C6CB59C43260F69AE346B9BF3157224* ___m_FontData_36;
|
|
// System.String UnityEngine.UI.Text::m_Text
|
|
String_t* ___m_Text_37;
|
|
// UnityEngine.TextGenerator UnityEngine.UI.Text::m_TextCache
|
|
TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* ___m_TextCache_38;
|
|
// UnityEngine.TextGenerator UnityEngine.UI.Text::m_TextCacheForLayout
|
|
TextGenerator_t85D00417640A53953556C01F9D4E7DDE1ABD8FEC* ___m_TextCacheForLayout_39;
|
|
// System.Boolean UnityEngine.UI.Text::m_DisableFontTextureRebuiltCallback
|
|
bool ___m_DisableFontTextureRebuiltCallback_41;
|
|
// UnityEngine.UIVertex[] UnityEngine.UI.Text::m_TempVerts
|
|
UIVertexU5BU5D_tBC532486B45D071A520751A90E819C77BA4E3D2F* ___m_TempVerts_42;
|
|
};
|
|
|
|
struct Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62_StaticFields
|
|
{
|
|
// UnityEngine.Material UnityEngine.UI.Text::s_DefaultText
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___s_DefaultText_40;
|
|
};
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
// System.String[]
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) String_t* m_Items[1];
|
|
|
|
inline String_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline String_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, String_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Type[]
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Type_t* m_Items[1];
|
|
|
|
inline Type_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Type_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, Type_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Type_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Type_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Reflection.Assembly[]
|
|
struct AssemblyU5BU5D_t97B7B4E3FD4DA4944A4BFAA4DC484EA7D990B339 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Assembly_t* m_Items[1];
|
|
|
|
inline Assembly_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Assembly_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, Assembly_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Assembly_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Assembly_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Assembly_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Reflection.MethodInfo[]
|
|
struct MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) MethodInfo_t* m_Items[1];
|
|
|
|
inline MethodInfo_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline MethodInfo_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, MethodInfo_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline MethodInfo_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline MethodInfo_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, MethodInfo_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Object[]
|
|
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);
|
|
}
|
|
};
|
|
// System.Reflection.ParameterInfo[]
|
|
struct ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* m_Items[1];
|
|
|
|
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F** 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, ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Single[]
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) float m_Items[1];
|
|
|
|
inline float GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline float* 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, float value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline float GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline float* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, float value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// System.Delegate[]
|
|
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);
|
|
}
|
|
};
|
|
// System.Int32[]
|
|
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;
|
|
}
|
|
};
|
|
// IngameDebugConsole.DebugLogEntryTimestamp[]
|
|
struct DebugLogEntryTimestampU5BU5D_t8E5BB7892CC61C2FD0065B78005D54E21811CDA8 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 m_Items[1];
|
|
|
|
inline DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97* 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, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
|
|
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(TKey,TValue)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m2E1DFA67718FC1A0B6E5DFEB78831FFE9C059EB4_gshared (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogConsole::AddCommand<System.Object>(System.String,System.String,System.Action`1<T1>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_AddCommand_TisRuntimeObject_m5360880B2806E797933740D56904CA057C8B23C7_gshared (String_t* ___command0, String_t* ___description1, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___method2, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::Clear()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Remove(TKey)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m5C7C45E75D951A75843F3F7AADD56ECD64F6BC86_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsKey(TKey)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m703047C213F7AB55C9DC346596287773A1F670CD_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::RemoveAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::Insert(System.Int32,T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m9C9559248941FED50561DB029D55DF08DEF3B094_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, RuntimeObject* ___item1, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::Add(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___item0, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___key0, RuntimeObject** ___value1, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___collection0, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Object>::set_Item(System.Int32,T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m3C58DBC69A321AF2826595584FF3E9F43C07EA56_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
|
|
// T UnityEngine.GameObject::AddComponent<System.Object>()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GameObject_AddComponent_TisRuntimeObject_m69B93700FACCF372F5753371C6E8FB780800B824_gshared (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Nullable`1<IngameDebugConsole.DebugLogEntryTimestamp>::.ctor(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685_gshared (Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41* __this, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 ___value0, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Nullable`1<IngameDebugConsole.DebugLogEntryTimestamp>::get_HasValue()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m72F8CCD2B9960B32D61CFA8DDFB3A8B66E75E78D_gshared_inline (Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41* __this, const RuntimeMethod* method) ;
|
|
// T System.Nullable`1<IngameDebugConsole.DebugLogEntryTimestamp>::get_Value()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 Nullable_1_get_Value_m2CE3C311F530B9D4B476C8B128164C51D5692CBF_gshared (Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m30DD6F0F8DFBA9856BF7220A3CDB1C89ECEC0D98_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DynamicCircularBuffer`1<IngameDebugConsole.QueuedDebugLogEntry>::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DynamicCircularBuffer_1__ctor_m2C25B66F5928BB4AFECDF42471C898F632AA72D3_gshared (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* __this, int32_t ___initialCapacity0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.CircularBuffer`1<System.Object>::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CircularBuffer_1__ctor_m1BF8285E1909E019FA9D57390464A13F4CE4A495_gshared (CircularBuffer_1_tCE48A157807D790AE588042B34881E85CC57CEB6* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mCC9983804D8DC41E938E080075F9EA7BDD0C7059_gshared (Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::Add(TKey,TValue)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mC515884C0546021A29DC0A00DBCABD89B1B65872_gshared (Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71* __this, int32_t ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m129B1E1EDDABF00B402C93841CCA7169B8963D83_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogIndexList`1<System.Int32>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogIndexList_1__ctor_mA89F322ECBB6B3A499BFE45D2D21FE45F550DA79_gshared (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntryTimestamp>::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mC44213C602CAA3F94A5594ACA8E70E9826C8268A_gshared (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogIndexList_1__ctor_mFDB99EECA2932B97D971CD576697FA8F3877ABCD_gshared (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* __this, const RuntimeMethod* method) ;
|
|
// T UnityEngine.Component::GetComponentInParent<System.Object>()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Component_GetComponentInParent_TisRuntimeObject_m6746D6BB99912B1B509746C993906492F86CD119_gshared (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
// T UnityEngine.Component::GetComponent<System.Object>()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Events.UnityAction`1<System.Object>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m0C2FC6B483B474AE9596A43EBA7FF6E85503A92A_gshared (UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Events.UnityEvent`1<System.Object>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m055233246714700E4BDAA62635BC0AA49E8165CC_gshared (UnityEvent_1_t3CE03B42D5873C0C0E0692BEE72E1E6D5399F205* __this, UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* ___call0, const RuntimeMethod* method) ;
|
|
// T UnityEngine.GameObject::GetComponent<System.Object>()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* GameObject_GetComponent_TisRuntimeObject_m6EAED4AA356F0F48288F67899E5958792395563B_gshared (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 IngameDebugConsole.DynamicCircularBuffer`1<IngameDebugConsole.QueuedDebugLogEntry>::get_Count()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_gshared_inline (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* __this, const RuntimeMethod* method) ;
|
|
// T IngameDebugConsole.DynamicCircularBuffer`1<IngameDebugConsole.QueuedDebugLogEntry>::RemoveFirst()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C DynamicCircularBuffer_1_RemoveFirst_mB90660C9AD7A06237A51BF5C1A00148A2975CF72_gshared (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 IngameDebugConsole.DebugLogIndexList`1<System.Int32>::get_Count()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_gshared_inline (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 IngameDebugConsole.CircularBuffer`1<System.Object>::get_Count()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t CircularBuffer_1_get_Count_mD43A95B88B324220E62C43C054A08F5D4D0EE748_gshared_inline (CircularBuffer_1_tCE48A157807D790AE588042B34881E85CC57CEB6* __this, const RuntimeMethod* method) ;
|
|
// T IngameDebugConsole.CircularBuffer`1<System.Object>::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CircularBuffer_1_get_Item_mDA9F74D5D86FB841E444EFC95E581F369C73D02B_gshared (CircularBuffer_1_tCE48A157807D790AE588042B34881E85CC57CEB6* __this, int32_t ___index0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.CircularBuffer`1<System.Object>::Add(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CircularBuffer_1_Add_m3E8794C8A9B1F0B7B0C0A0F83910B82801ACBF32_gshared (CircularBuffer_1_tCE48A157807D790AE588042B34881E85CC57CEB6* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DynamicCircularBuffer`1<IngameDebugConsole.QueuedDebugLogEntry>::Add(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DynamicCircularBuffer_1_Add_m53EC77E0459887173ED94AD5A527032DD96B430B_gshared (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* __this, QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C ___value0, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::TryGetValue(TKey,TValue&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m4B8EE45640C70BBFD6F3EFF1040983404C098342_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, RuntimeObject* ___key0, int32_t* ___value1, const RuntimeMethod* method) ;
|
|
// TValue System.Collections.Generic.Dictionary`2<System.Int32Enum,System.Object>::get_Item(TKey)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_get_Item_m9C4302CCAE3C1BF70D02091D0E0CED7663F18211_gshared (Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71* __this, int32_t ___key0, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::set_Item(TKey,TValue)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m72CC2F1213D1C1B8ABEDE31082D07B67EC873B13_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, RuntimeObject* ___key0, int32_t ___value1, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntryTimestamp>::Add(T)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m285FF9023DA9D5F2308CB2B578F0DFF7025F0363_gshared_inline (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* __this, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 ___item0, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntryTimestamp>::set_Item(System.Int32,T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m6E2E1480A05AB8BB307A64F6A0DA82368C1A2B6F_gshared (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* __this, int32_t ___index0, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 ___value1, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogIndexList`1<System.Int32>::Add(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4_gshared (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntryTimestamp>::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8_gshared (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* __this, int32_t ___index0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp>::Add(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855_gshared (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* __this, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 ___value0, const RuntimeMethod* method) ;
|
|
// System.Int32 IngameDebugConsole.DebugLogIndexList`1<System.Int32>::IndexOf(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DebugLogIndexList_1_IndexOf_mDAF87C3A6990C857499B37310F685BA31A1A9C54_gshared (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp>::set_Item(System.Int32,T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogIndexList_1_set_Item_m44047632959125DE52AF27BC23E7AABABA65348F_gshared (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* __this, int32_t ___index0, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 ___value1, const RuntimeMethod* method) ;
|
|
// T IngameDebugConsole.DynamicCircularBuffer`1<IngameDebugConsole.QueuedDebugLogEntry>::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C DynamicCircularBuffer_1_get_Item_m248003143CE1EFEC41A6812530777540C8A57FBB_gshared (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* __this, int32_t ___index0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DynamicCircularBuffer`1<IngameDebugConsole.QueuedDebugLogEntry>::set_Item(System.Int32,T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DynamicCircularBuffer_1_set_Item_m527B7BFD3A45171383AEED1585D7EDFE2E152BFD_gshared (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* __this, int32_t ___index0, QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C ___value1, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m931E25EF2557C3A386E4B9DC8D8212B7D9D3F5AE_gshared (Dictionary_2_t5C96F4B6841710A9013966F76224BAE01FB4B4D1* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogIndexList`1<System.Int32>::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogIndexList_1_Clear_mD2D832E651D36136AC8CAB51E17567950F882BD0_gshared (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntryTimestamp>::Clear()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mFB9655FC4FC26BA5CEC0B55A5D2072D534BF550A_gshared_inline (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp>::Clear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogIndexList_1_Clear_mAA7E9A2FBFD40AC07610639B5712F4FE060BDDC6_gshared (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::Clear()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<System.Int32>::get_Count()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1<System.Int32>::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_gshared (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___index0, const RuntimeMethod* method) ;
|
|
// T UnityEngine.Object::Instantiate<System.Object>(T,UnityEngine.Transform,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Object_Instantiate_TisRuntimeObject_mDC5AD8BD13FE50E98B67B956C048367F4E8C6F94_gshared (RuntimeObject* ___original0, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___parent1, bool ___worldPositionStays2, const RuntimeMethod* method) ;
|
|
// T IngameDebugConsole.DebugLogIndexList`1<System.Int32>::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_gshared (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* __this, int32_t ___index0, const RuntimeMethod* method) ;
|
|
// T IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp>::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_gshared (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* __this, int32_t ___index0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_m71C125B79EE35648CFC416CA7DBBC27C8DBAD45A_gshared (UnityAction_1_t8FBFBC01962B7293F0E33F9D6F1CEAF2896D8669* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_m2B74313C91E347D6AD24CE5B036E190E77E70851_gshared (UnityEvent_1_t9A868DD8EBFC0D9D8134D903A170ECBDEE567932* __this, UnityAction_1_t8FBFBC01962B7293F0E33F9D6F1CEAF2896D8669* ___call0, const RuntimeMethod* method) ;
|
|
// TValue System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Item(TKey)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_get_Item_mC3FEA647E750C27367C990777D8890E0E712E514_gshared (Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907* __this, int32_t ___key0, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::TryGetValue(TKey,TValue&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m7316301B8CF47FB538886B229B2749EC160B9D5C_gshared (Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907* __this, int32_t ___key0, RuntimeObject** ___value1, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::set_Item(TKey,TValue)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m2888D71A14F2B8510102F24FEE90552E91B124C1_gshared (Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907* __this, int32_t ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2E996E8E97DFC188B4E8854C11A9C82B16EDD2CE_gshared (Dictionary_2_tA75D1125AC9BE8F005BA9B868B373398E643C907* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
|
|
|
|
// System.Void System.Attribute::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2 (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Object::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Reflection.MethodBase::get_IsStatic()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsStatic_mD2921396167EC4F99E2ADC46C39CCCEC3CD0E16E (MethodBase_t* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo>::.ctor()
|
|
inline void List_1__ctor_m1B50B5865DB51955210F564FE524ECB55215107D (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo>::.ctor(System.Int32)
|
|
inline void List_1__ctor_mC2EA22E22D584C79B83F3DE54ED552A45F7428EF (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* __this, int32_t ___capacity0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4*, int32_t, const RuntimeMethod*))List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared)(__this, ___capacity0, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Type,IngameDebugConsole.DebugLogConsole/ParseFunction>::.ctor()
|
|
inline void Dictionary_2__ctor_m98909E5E8CE8D2293CA61D264046F026589507D8 (Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___handle0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogConsole/ParseFunction::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25 (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Type,IngameDebugConsole.DebugLogConsole/ParseFunction>::Add(TKey,TValue)
|
|
inline void Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970 (Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* __this, Type_t* ___key0, ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* ___value1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A*, Type_t*, ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___key0, ___value1, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Type,System.String>::.ctor()
|
|
inline void Dictionary_2__ctor_mFAF23CD29002CAB23492293F8C8B56962DE7A0B6 (Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Type,System.String>::Add(TKey,TValue)
|
|
inline void Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC (Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* __this, Type_t* ___key0, String_t* ___value1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE*, Type_t*, String_t*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___key0, ___value1, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.String>::.ctor(System.Int32)
|
|
inline void List_1__ctor_m1A062F45FE926079CE2D4FD38A3BF15F7AEB89AF (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, int32_t ___capacity0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, int32_t, const RuntimeMethod*))List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared)(__this, ___capacity0, method);
|
|
}
|
|
// System.Void System.Globalization.CultureInfo::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CultureInfo__ctor_m13C68B1478A97FC5FA9653C46B2C42DA01573FFB (CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* __this, String_t* ___name0, const RuntimeMethod* method) ;
|
|
// System.Void System.Action::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogConsole::AddCommand(System.String,System.String,System.Action)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_AddCommand_m44EA1C3BC10905406AAED2B25AC713C0E076A70F (String_t* ___command0, String_t* ___description1, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___method2, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`1<System.String>::.ctor(System.Object,System.IntPtr)
|
|
inline void Action_1__ctor_m9DC2953C55C4D7D4B7BEFE03D84DA1F9362D652C (Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_1__ctor_m2E1DFA67718FC1A0B6E5DFEB78831FFE9C059EB4_gshared)(__this, ___object0, ___method1, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::AddCommand<System.String>(System.String,System.String,System.Action`1<T1>)
|
|
inline void DebugLogConsole_AddCommand_TisString_t_m56B48A18D995EDA3186C3ABCA826924E82120333 (String_t* ___command0, String_t* ___description1, Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A* ___method2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (String_t*, String_t*, Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A*, const RuntimeMethod*))DebugLogConsole_AddCommand_TisRuntimeObject_m5360880B2806E797933740D56904CA057C8B23C7_gshared)(___command0, ___description1, ___method2, method);
|
|
}
|
|
// System.AppDomain System.AppDomain::get_CurrentDomain()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F* AppDomain_get_CurrentDomain_m38D86FD149C2C62AD0FAB0159D70ECB13D841667 (const RuntimeMethod* method) ;
|
|
// System.Reflection.Assembly[] System.AppDomain::GetAssemblies()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssemblyU5BU5D_t97B7B4E3FD4DA4944A4BFAA4DC484EA7D990B339* AppDomain_GetAssemblies_m8EE862747CADACB8CC0BDDBD8CA7DAD7BD9D9249 (AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Reflection.AssemblyName::get_Name()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* AssemblyName_get_Name_m7899B9B3F289EEBAF62AEAB51D1CA91DA92C4E6A_inline (AssemblyName_t555F1570F523D87D970C6E7F27B1B44C83EADDD2* __this, const RuntimeMethod* method) ;
|
|
// System.String IngameDebugConsole.ConsoleMethodAttribute::get_Command()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ConsoleMethodAttribute_get_Command_m5891B27830AD8D24C0BEC16F9B30F440EBB49E82_inline (ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734* __this, const RuntimeMethod* method) ;
|
|
// System.String IngameDebugConsole.ConsoleMethodAttribute::get_Description()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ConsoleMethodAttribute_get_Description_mFC1AAFE7BDA0B06A1C7AB0C9B02FD228177F7F5E_inline (ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734* __this, const RuntimeMethod* method) ;
|
|
// System.String[] IngameDebugConsole.ConsoleMethodAttribute::get_ParameterNames()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ConsoleMethodAttribute_get_ParameterNames_m254994229F47A4A9C4E8D8AE92AB305A8B7FCCEB_inline (ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogConsole::AddCommand(System.String,System.String,System.Reflection.MethodInfo,System.Object,System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_AddCommand_m3D56A91D2615526245C2996E0D97AE636B6EDFAB (String_t* ___command0, String_t* ___description1, MethodInfo_t* ___method2, RuntimeObject* ___instance3, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___parameterNames4, const RuntimeMethod* method) ;
|
|
// System.String System.String::Concat(System.String,System.String,System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m093934F71A9B351911EE46311674ED463B180006 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Debug::LogError(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2 (RuntimeObject* ___message0, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo>::get_Item(System.Int32)
|
|
inline ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1 (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
return (( ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* (*) (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
|
|
}
|
|
// System.Boolean IngameDebugConsole.ConsoleMethodInfo::IsValid()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConsoleMethodInfo_IsValid_m9F0346F09F2E31E1F774FC741BD75AEE58BF18D7 (ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.String::get_Length()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo>::get_Count()
|
|
inline int32_t List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void System.Text.StringBuilder::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5 (StringBuilder_t* __this, int32_t ___capacity0, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Debug::Log(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Log_m87A9A3C761FF5C43ED8A53B16190A53D08F818BB (RuntimeObject* ___message0, const RuntimeMethod* method) ;
|
|
// IngameDebugConsole.DebugLogManager IngameDebugConsole.DebugLogManager::get_Instance()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Object::op_Implicit(UnityEngine.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___exists0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogManager::ExpandLatestPendingLog()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_ExpandLatestPendingLog_m3049C9438441A4BC6BBF827C416CD88D5D2D597E (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogManager::StripStackTraceFromLatestPendingLog()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_StripStackTraceFromLatestPendingLog_m66AE6A25F37E381D549C2AD6372B2FDF871F2A67 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo>::Clear()
|
|
inline void List_1_Clear_m77380B71C791340B3330CF6AD09FE5256DA675CD_inline (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::FindCommands(System.String,System.Boolean,System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_FindCommands_m33C4DDBF9B312C69EED77A268C8BBFB218F51146 (String_t* ___commandName0, bool ___allowSubstringMatching1, List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* ___matchingCommands2, const RuntimeMethod* method) ;
|
|
// System.String System.String::Concat(System.String,System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Debug::LogWarning(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9 (RuntimeObject* ___message0, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.SystemInfo::get_deviceModel()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SystemInfo_get_deviceModel_m308FFBADED4BF6CB34C318A0BBDA762D09A7F185 (const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder IngameDebugConsole.DebugLogConsole::AppendSysInfoIfPresent(System.Text.StringBuilder,System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* DebugLogConsole_AppendSysInfoIfPresent_m8348C123A80619F01E787BC5F6DF69577A53B556 (StringBuilder_t* ___sb0, String_t* ___info1, String_t* ___postfix2, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.SystemInfo::get_processorType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SystemInfo_get_processorType_m985AB6C66E69918DF641BC1A589A3F9B4CE76FBE (const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.SystemInfo::get_systemMemorySize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SystemInfo_get_systemMemorySize_m3BFE40CF5A43FEAB94F5C552A47D04ECD88B771E (const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder IngameDebugConsole.DebugLogConsole::AppendSysInfoIfPresent(System.Text.StringBuilder,System.Int32,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* DebugLogConsole_AppendSysInfoIfPresent_mE33F854781092A2E4B3A1301DADA8A99C9FF1537 (StringBuilder_t* ___sb0, int32_t ___info1, String_t* ___postfix2, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.SystemInfo::get_processorCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SystemInfo_get_processorCount_m6B20AC11AEA09CA06278FBC47BAAEAA01BC7DB55 (const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA (StringBuilder_t* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.SystemInfo::get_operatingSystem()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SystemInfo_get_operatingSystem_m47B20646C221517ACA8F99DE8576BF794AEB6F8D (const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.SystemInfo::get_graphicsDeviceName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SystemInfo_get_graphicsDeviceName_mA3F2E2CA587AD5E212A38AD7D28559FD017451A2 (const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.SystemInfo::get_graphicsMemorySize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SystemInfo_get_graphicsMemorySize_m05C833741F5F5C06FE9B4B9F50078A21E9E71ACF (const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.SystemInfo::get_graphicsDeviceVersion()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SystemInfo_get_graphicsDeviceVersion_m8A157C76206F3CF7D9A3DA6F4BE188A6FEC0769C (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.SystemInfo::get_graphicsMultiThreaded()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_graphicsMultiThreaded_m64EB05A6E20E1128246404063FDD6EC902F06458 (const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.Application::get_dataPath()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Application_get_dataPath_m4C8412CBEE4EAAAB6711CC9BEFFA73CEE5BDBEF7 (const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.Application::get_persistentDataPath()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Application_get_persistentDataPath_mC58BD3E1A20732E0A536491DBCAE6505B1624399 (const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.Application::get_streamingAssetsPath()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Application_get_streamingAssetsPath_mB904BCD9A7A4F18A52C175DE4A81F5DC3010CDB5 (const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.Application::get_temporaryCachePath()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Application_get_temporaryCachePath_mE4483A939988E69570C19F8B31AB9FB17B0FD97D (const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.SystemInfo::get_deviceUniqueIdentifier()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SystemInfo_get_deviceUniqueIdentifier_m61BA4CB77ADA09730B8B575700D85027EFDB4EFC (const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.SystemInfo::get_maxTextureSize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SystemInfo_get_maxTextureSize_mEE557C09643222591C6F4D3F561D7A60CD403991 (const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.SystemInfo::get_maxCubemapSize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SystemInfo_get_maxCubemapSize_m10289E5E734D6DD36A0640E3892CB9037A43C8D9 (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.SystemInfo::get_supportsAccelerometer()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_supportsAccelerometer_mDD94E914406FBF282CCECEFF79F80A3E5ECC9559 (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.SystemInfo::get_supportsGyroscope()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_supportsGyroscope_m98477EC99D88396F076A93EF5C28A6129DC4E211 (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.SystemInfo::get_supportsLocationService()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_supportsLocationService_m7274D2AE36316B66F33043270B6CBCFBD1DAA54E (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.SystemInfo::get_supportsComputeShaders()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_supportsComputeShaders_m4A029D2F8FB9343E65E6F1C6F1C79DA41911F13A (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.SystemInfo::get_supportsShadows()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_supportsShadows_mC38F1230132BCB8059CD1C1E96D5106030166261 (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.SystemInfo::get_supportsInstancing()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_supportsInstancing_m8EF067060BFA3D50A266342D26A392747DA4FF3E (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.SystemInfo::get_supportsMotionVectors()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_supportsMotionVectors_m1F03671FD39F2CB8006298D843EFE41B8EDE5F61 (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.SystemInfo::get_supports3DTextures()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_supports3DTextures_mA80B4F445CEEC84FFAA80B7F94C90EC270813CE3 (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.SystemInfo::get_supports3DRenderTextures()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_supports3DRenderTextures_mB90960ABC1CDAC3048C96338EC513E623306D108 (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.SystemInfo::get_supports2DArrayTextures()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_supports2DArrayTextures_m05916AB730192840AE57A9C309F7CBF01EEEB41F (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.SystemInfo::get_supportsCubemapArrayTextures()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemInfo_get_supportsCubemapArrayTextures_mEDBA13526AEAE5385F897BE17E74F792181B2510 (const RuntimeMethod* method) ;
|
|
// System.Boolean System.String::op_Inequality(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC (Type_t* ___left0, Type_t* ___right1, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Type,IngameDebugConsole.DebugLogConsole/ParseFunction>::set_Item(TKey,TValue)
|
|
inline void Dictionary_2_set_Item_mF64507B32BEC0199DA2C603E6687F24ECF1B066B (Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* __this, Type_t* ___key0, ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* ___value1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A*, Type_t*, ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*, const RuntimeMethod*))Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared)(__this, ___key0, ___value1, method);
|
|
}
|
|
// System.Boolean System.String::IsNullOrEmpty(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478 (String_t* ___value0, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Type,System.String>::set_Item(TKey,TValue)
|
|
inline void Dictionary_2_set_Item_mDA78A8299D16DD1B42B93F0C63BE2D9CE92F8A00 (Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* __this, Type_t* ___key0, String_t* ___value1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE*, Type_t*, String_t*, const RuntimeMethod*))Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared)(__this, ___key0, ___value1, method);
|
|
}
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.Type,IngameDebugConsole.DebugLogConsole/ParseFunction>::Remove(TKey)
|
|
inline bool Dictionary_2_Remove_m4AF5A90C3CF292C4566D0EEB66AE1F3817C71433 (Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* __this, Type_t* ___key0, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A*, Type_t*, const RuntimeMethod*))Dictionary_2_Remove_m5C7C45E75D951A75843F3F7AADD56ECD64F6BC86_gshared)(__this, ___key0, method);
|
|
}
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.String>::Remove(TKey)
|
|
inline bool Dictionary_2_Remove_m69603B656EDD211D370280238098794BE7457F09 (Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* __this, Type_t* ___key0, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE*, Type_t*, const RuntimeMethod*))Dictionary_2_Remove_m5C7C45E75D951A75843F3F7AADD56ECD64F6BC86_gshared)(__this, ___key0, method);
|
|
}
|
|
// System.Type System.Object::GetType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogConsole::AddCommand(System.String,System.String,System.String,System.Type,System.Object,System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_AddCommand_m4BFF08D8BF1C63A4282EB1B5FFF95E695A0C4FD9 (String_t* ___command0, String_t* ___description1, String_t* ___methodName2, Type_t* ___ownerType3, RuntimeObject* ___instance4, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___parameterNames5, const RuntimeMethod* method) ;
|
|
// System.Reflection.MethodInfo System.Delegate::get_Method()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* Delegate_get_Method_mB684A7525653DFE0EFC35E58449E1FC8E2A9F019 (Delegate_t* __this, const RuntimeMethod* method) ;
|
|
// System.Object System.Delegate::get_Target()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Delegate_get_Target_m6E203F111C1548193A5AB7E616BD5834CD269753_inline (Delegate_t* __this, const RuntimeMethod* method) ;
|
|
// System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* Type_GetMethod_m9E66B5053F150537A74C490C1DA5174A7875189D (Type_t* __this, String_t* ___name0, int32_t ___bindingAttr1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Reflection.MethodInfo::op_Equality(System.Reflection.MethodInfo,System.Reflection.MethodInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Equality_m1466AB76300C9F07856E706E7E914062175189D1 (MethodInfo_t* ___left0, MethodInfo_t* ___right1, const RuntimeMethod* method) ;
|
|
// System.String System.String::Trim()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5 (String_t* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.String::IndexOf(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
|
|
// System.String System.String::Concat(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Type::get_IsByRef()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsByRef_mA417B3C05E39BCF8F21A2B6437A1B41D3BE638A4 (Type_t* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.Type,IngameDebugConsole.DebugLogConsole/ParseFunction>::ContainsKey(TKey)
|
|
inline bool Dictionary_2_ContainsKey_mB328F3A2CA70097AB381986824251092440019DE (Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* __this, Type_t* ___key0, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A*, Type_t*, const RuntimeMethod*))Dictionary_2_ContainsKey_m703047C213F7AB55C9DC346596287773A1F670CD_gshared)(__this, ___key0, method);
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::IsSupportedArrayType(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_IsSupportedArrayType_mCF63052024BD4D95564AD4E395C558E99092BB86 (Type_t* ___type0, const RuntimeMethod* method) ;
|
|
// System.String System.String::Concat(System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9EB826D3BC0EF2322AA8E55DF0D20EE41B1E5A36 (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args0, const RuntimeMethod* method) ;
|
|
// System.Int32 IngameDebugConsole.DebugLogConsole::FindCommandIndex(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DebugLogConsole_FindCommandIndex_m937912A34A602748887E50AE2A6965A125E420A7 (String_t* ___command0, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo>::RemoveAt(System.Int32)
|
|
inline void List_1_RemoveAt_m6AFCEA5AB2D9694CD3281747F3D850EC0AE03440 (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___index0, method);
|
|
}
|
|
// System.Int32 System.Text.StringBuilder::get_Length()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8 (StringBuilder_t* __this, const RuntimeMethod* method) ;
|
|
// System.String IngameDebugConsole.DebugLogConsole::GetTypeReadableName(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DebugLogConsole_GetTypeReadableName_mD536CA0D3C2534C91B7BA1096C1F09B8D4E83934 (Type_t* ___type0, const RuntimeMethod* method) ;
|
|
// System.String System.Text.StringBuilder::ToString(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringBuilder_ToString_m8A0AC56824DF98812AFBCD745AC6C911873CA8C0 (StringBuilder_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.ConsoleMethodInfo::.ctor(System.Reflection.MethodInfo,System.Type[],System.Object,System.String,System.String,System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConsoleMethodInfo__ctor_mD64937BD94F186B6418DEF8B8AF8D36AADD59175 (ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* __this, MethodInfo_t* ___method0, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___parameterTypes1, RuntimeObject* ___instance2, String_t* ___command3, String_t* ___signature4, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___parameters5, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo>::Insert(System.Int32,T)
|
|
inline void List_1_Insert_m0302A77BB0DBECAC73CA7E4FD3F1B75BD1FD83C6 (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* __this, int32_t ___index0, ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* ___item1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4*, int32_t, ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79*, const RuntimeMethod*))List_1_Insert_m9C9559248941FED50561DB029D55DF08DEF3B094_gshared)(__this, ___index0, ___item1, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::RemoveCommand(System.Reflection.MethodInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_RemoveCommand_m5B5D9DBA606BD7CF700A12DCDEED6F3CA7ABC90A (MethodInfo_t* ___method0, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Reflection.MethodInfo::op_Inequality(System.Reflection.MethodInfo,System.Reflection.MethodInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Inequality_mB73597A1FCC2F906DBCADDEC68A1B7D5B7E89FA8 (MethodInfo_t* ___left0, MethodInfo_t* ___right1, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.String>::Clear()
|
|
inline void List_1_Clear_mC6C7AEBB0F980A717A87C0D12377984A464F0934_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::FetchArgumentsFromCommand(System.String,System.Collections.Generic.List`1<System.String>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_FetchArgumentsFromCommand_mC1BAA30A6C63276103CEE04B898336A8900FDCAF (String_t* ___command0, List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___commandArguments1, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1<System.String>::get_Item(System.Int32)
|
|
inline String_t* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8 (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
|
|
}
|
|
// System.Int32 System.Collections.Generic.List`1<System.String>::get_Count()
|
|
inline int32_t List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo>::Add(T)
|
|
inline void List_1_Add_m0FEDE06A2790398E6431E1A0B22E2B990AE52172_inline (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* __this, ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* ___item0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4*, ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseArgument(System.String,System.Type,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseArgument_mD38752180CA3F7F281044CFAA47E4CD34597CC24 (String_t* ___input0, Type_t* ___argumentType1, RuntimeObject** ___output2, const RuntimeMethod* method) ;
|
|
// System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826 (MethodBase_t* __this, RuntimeObject* ___obj0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___parameters1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Type::op_Inequality(System.Type,System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172 (Type_t* ___left0, Type_t* ___right1, const RuntimeMethod* method) ;
|
|
// System.Char System.String::get_Chars(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___index0, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Char::IsWhiteSpace(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924 (Il2CppChar ___c0, const RuntimeMethod* method) ;
|
|
// System.Int32 IngameDebugConsole.DebugLogConsole::IndexOfDelimiterGroup(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DebugLogConsole_IndexOfDelimiterGroup_m0CC9FFF8192FA903465847E9B51D5D7B6A826F29 (Il2CppChar ___c0, const RuntimeMethod* method) ;
|
|
// System.Int32 IngameDebugConsole.DebugLogConsole::IndexOfDelimiterGroupEnd(System.String,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DebugLogConsole_IndexOfDelimiterGroupEnd_mA3CF7EEF7D82521E9173011822619D159E404C72 (String_t* ___command0, int32_t ___delimiterIndex1, int32_t ___startIndex2, const RuntimeMethod* method) ;
|
|
// System.String System.String::Substring(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.String>::Add(T)
|
|
inline void List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, String_t* ___item0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, String_t*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
|
|
}
|
|
// System.Int32 IngameDebugConsole.DebugLogConsole::IndexOfChar(System.String,System.Char,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DebugLogConsole_IndexOfChar_m4C1A446342AA125173F57AAED37E9445C8C9CD37 (String_t* ___command0, Il2CppChar ___c1, int32_t ___startIndex2, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::Add(T)
|
|
inline void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___item0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline)(__this, ___item0, method);
|
|
}
|
|
// System.Int32 System.String::IndexOf(System.Char,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4 (String_t* __this, Il2CppChar ___value0, int32_t ___startIndex1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Type::get_IsArray()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673 (Type_t* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.String>::TryGetValue(TKey,TValue&)
|
|
inline bool Dictionary_2_TryGetValue_mABC63A9E661076B85F0C38BD3A8A40AAEA175816 (Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* __this, Type_t* ___key0, String_t** ___value1, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE*, Type_t*, String_t**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___key0, ___value1, method);
|
|
}
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.Type,IngameDebugConsole.DebugLogConsole/ParseFunction>::TryGetValue(TKey,TValue&)
|
|
inline bool Dictionary_2_TryGetValue_m8DE42FF542A875B33731BDA6DD7348A642758F26 (Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* __this, Type_t* ___key0, ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C** ___value1, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A*, Type_t*, ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___key0, ___value1, method);
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole/ParseFunction::Invoke(System.String,System.Object&)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ParseFunction_Invoke_m6559BD38F8E131515CE959A7FC6D7EDE407794C1_inline (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* __this, String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method) ;
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseComponent(System.String,System.Type,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseComponent_m9D6051721A1FB1D1A1AAC2F28E029003B0807833 (String_t* ___input0, Type_t* ___componentType1, RuntimeObject** ___output2, const RuntimeMethod* method) ;
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseEnum(System.String,System.Type,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseEnum_m3E539F2030843B5E70454E1DE9EA3EFFDA570CAE (String_t* ___input0, Type_t* ___enumType1, RuntimeObject** ___output2, const RuntimeMethod* method) ;
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseArray(System.String,System.Type,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseArray_m447E48C65E5900282AC24CA15886EB383929E04F (String_t* ___input0, Type_t* ___arrayType1, RuntimeObject** ___output2, const RuntimeMethod* method) ;
|
|
// System.Boolean System.String::op_Equality(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
|
|
// System.String System.String::ToLowerInvariant()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLowerInvariant_mBE32C93DE27C5353FEA3FA654FC1DDBE3D0EB0F2 (String_t* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Int32::TryParse(System.String,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_TryParse_mC928DE2FEC1C35ED5298BDDCA9868076E94B8A21 (String_t* ___s0, int32_t* ___result1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.UInt32::TryParse(System.String,System.UInt32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UInt32_TryParse_mD470E3BAC9F792AB0BC616510AE3FA78C3CCB1E9 (String_t* ___s0, uint32_t* ___result1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.String::EndsWith(System.String,System.StringComparison)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Int64::TryParse(System.String,System.Int64&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_TryParse_m3FC0128C89CC2331239FC2A0A749BF33455F03D2 (String_t* ___s0, int64_t* ___result1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.UInt64::TryParse(System.String,System.UInt64&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UInt64_TryParse_mF3AF0976C95B83F09039AA0205FCB76B1CFD6D84 (String_t* ___s0, uint64_t* ___result1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Byte::TryParse(System.String,System.Byte&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_TryParse_mB1716E3B6714F20DF6C1FEDDC4A76AA78D5EA87B (String_t* ___s0, uint8_t* ___result1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.SByte::TryParse(System.String,System.SByte&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SByte_TryParse_m9C205D94AB4FF1CA82EA082E38DD01A493A77ED6 (String_t* ___s0, int8_t* ___result1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Int16::TryParse(System.String,System.Int16&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int16_TryParse_m7190AF18437CE1B43990B99E5D992E31485E77AE (String_t* ___s0, int16_t* ___result1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.UInt16::TryParse(System.String,System.UInt16&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UInt16_TryParse_m02DD9A625527B4019B32ACC9A5D3B09D72B2FBB6 (String_t* ___s0, uint16_t* ___result1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Char::TryParse(System.String,System.Char&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_TryParse_m7D4FA37A9A0C470380D7C0A8B81A55E91E67485C (String_t* ___s0, Il2CppChar* ___result1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Single::TryParse(System.String,System.Single&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Single_TryParse_mC39FC2D8F1F33DE64685F3A8CE6BDD2164FB9423 (String_t* ___s0, float* ___result1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Double::TryParse(System.String,System.Double&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_TryParse_m60AD55BC181D70F661BC2A2294E66B5466C3C018 (String_t* ___s0, double* ___result1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Decimal::TryParse(System.String,System.Decimal&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_TryParse_m7813DB99794E0AC1068BA2FF2F6BF9E998E2FB4B (String_t* ___s0, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* ___result1, const RuntimeMethod* method) ;
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseVector(System.String,System.Type,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseVector_m02B35A42C6167A4F80F99869A134FAF667E90FFD (String_t* ___input0, Type_t* ___vectorType1, RuntimeObject** ___output2, const RuntimeMethod* method) ;
|
|
// UnityEngine.GameObject UnityEngine.GameObject::Find(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* GameObject_Find_m7A669B4EEC2617AB82F6E3FF007CDCD9F21DB300 (String_t* ___name0, const RuntimeMethod* method) ;
|
|
// UnityEngine.Component UnityEngine.GameObject::GetComponent(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* GameObject_GetComponent_m99E12753EA84947521DC711CA33F452B5E65B474 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, Type_t* ___type0, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.Mathf::Min(System.Int32,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline (int32_t ___a0, int32_t ___b1, const RuntimeMethod* method) ;
|
|
// System.Object System.Enum::Parse(System.Type,System.String,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enum_Parse_m0316ABE916ED60AA2257A464A33A33D544EDEE12 (Type_t* ___enumType0, String_t* ___value1, bool ___ignoreCase2, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Convert::ToInt32(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m9FEA65DB96264479B5268014F10754787382D297 (RuntimeObject* ___value0, const RuntimeMethod* method) ;
|
|
// System.Object System.Enum::ToObject(System.Type,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enum_ToObject_m7952B7BD43E48BBF79BB973BD31E7FF9E62B948E (Type_t* ___enumType0, int32_t ___value1, const RuntimeMethod* method) ;
|
|
// System.Object System.Activator::CreateInstance(System.Type,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Activator_CreateInstance_mDBC65647828F8A3D3E63807B5AEA4A4ECDE397E6 (Type_t* ___type0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
|
|
// System.String System.String::Replace(System.Char,System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_m86403DC5F422D8D5E1CFAAF255B103CB807EDAAF (String_t* __this, Il2CppChar ___oldChar0, Il2CppChar ___newChar1, const RuntimeMethod* method) ;
|
|
// System.String[] System.String::Split(System.Char,System.StringSplitOptions)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_Split_m9530B73D02054692283BF35C3A27C8F2230946F4 (String_t* __this, Il2CppChar ___separator0, int32_t ___options1, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.String>::.ctor(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1__ctor_m0BAB01B25B1D62E100CC97401B1A9972D6DEB6EC (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared)(__this, ___collection0, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.String>::set_Item(System.Int32,T)
|
|
inline void List_1_set_Item_m6A72B7648178616800F05C13DB492E4EDB866B7C (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, int32_t ___index0, String_t* ___value1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, int32_t, String_t*, const RuntimeMethod*))List_1_set_Item_m3C58DBC69A321AF2826595584FF3E9F43C07EA56_gshared)(__this, ___index0, ___value1, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.String>::RemoveAt(System.Int32)
|
|
inline void List_1_RemoveAt_m031D3A21689276A872FCA7566C8F2F79F9581F0D (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___index0, method);
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseFloat(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseFloat_m1D8D2B2D33A52F4564830459382BA43F178EFDD8 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::get_zero()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline (const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::get_zero()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline (const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector4 UnityEngine.Vector4::get_zero()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Vector4_get_zero_m3D61F5FA9483CD9C08977D9D8852FB448B4CE6D1_inline (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Vector3::set_Item(System.Int32,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3_set_Item_m79136861DEC5862CE7EC20AB3B0EF10A3957CEC3_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, int32_t ___index0, float ___value1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Vector2::set_Item(System.Int32,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2_set_Item_mEF309880B9B3B370B542AABEB32256EEC589DD03_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, int32_t ___index0, float ___value1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Vector4::set_Item(System.Int32,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector4_set_Item_mF24782F861A16BB0436C2262FA916B4EE69998A6_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3* __this, int32_t ___index0, float ___value1, const RuntimeMethod* method) ;
|
|
// UnityEngine.Quaternion UnityEngine.Quaternion::get_identity()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 Quaternion_get_identity_m7E701AE095ED10FD5EA0B50ABCFDE2EEFF2173A5_inline (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Quaternion::set_Item(System.Int32,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Quaternion_set_Item_mFEF628DD58AC71A1E712A6F3F9642D5DA00675CE_inline (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974* __this, int32_t ___index0, float ___value1, const RuntimeMethod* method) ;
|
|
// UnityEngine.Color UnityEngine.Color::get_black()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_get_black_mB50217951591A045844C61E7FF31EEE3FEF16737_inline (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Color::set_Item(System.Int32,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color_set_Item_mB7A7D9F6632CDA2F9CE2E817776010653C2A20B2_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* __this, int32_t ___index0, float ___value1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Color32::.ctor(System.Byte,System.Byte,System.Byte,System.Byte)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color32__ctor_mC9C6B443F0C7CA3F8B174158B2AF6F05E18EAC4E_inline (Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B* __this, uint8_t ___r0, uint8_t ___g1, uint8_t ___b2, uint8_t ___a3, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.Mathf::RoundToInt(System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline (float ___f0, const RuntimeMethod* method) ;
|
|
// UnityEngine.Rect UnityEngine.Rect::get_zero()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D Rect_get_zero_m5341D8B63DEF1F4C308A685EEC8CFEA12A396C8D (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Rect::set_x(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect_set_x_mAB91AB71898A20762BC66FD0723C4C739C4C3406 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, float ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Rect::set_y(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect_set_y_mDE91F4B98A6E8623EFB1250FF6526D5DB5855629 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, float ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Rect::set_width(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect_set_width_m93B6217CF3EFF89F9B0C81F34D7345DE90B93E5A (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, float ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Rect::set_height(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect_set_height_mD00038E6E06637137A5626CA8CD421924005BF03 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, float ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.RectOffset::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectOffset__ctor_m7DB8E8EDDB814824299F9EF661DAFA32854F0CC9 (RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.RectOffset::set_left(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectOffset_set_left_mEE36418FAC0A5C5AA4A1C886C7CFF5D35AFAD2C0 (RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.RectOffset::set_right(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectOffset_set_right_m6D3608E0973F68CC0D0A6A9863D31D70972A9588 (RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.RectOffset::set_top(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectOffset_set_top_mEF389A8923A33EC2927AD13ADE00D960D4593207 (RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.RectOffset::set_bottom(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectOffset_set_bottom_mB303CE31F9932C3BE8A3FD48E5049D624F395C83 (RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Bounds::.ctor(UnityEngine.Vector3,UnityEngine.Vector3)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Bounds__ctor_mAF7B238B9FBF90C495E5D7951760085A93119C5A (Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___center0, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___size1, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector3Int UnityEngine.Vector3Int::get_zero()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 Vector3Int_get_zero_m0D0DA069A4982B8DB9F5EE1A26E4CAEEA454FEE2_inline (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Vector3Int::set_Item(System.Int32,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3Int_set_Item_m54C03389E56D4403F81C5560671011599599B67D_inline (Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376* __this, int32_t ___index0, int32_t ___value1, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2Int UnityEngine.Vector2Int::get_zero()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A Vector2Int_get_zero_mF92C338E9CB9434105090E675E04D20A29649553_inline (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Vector2Int::set_Item(System.Int32,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2Int_set_Item_mDC8B5A6DBB600C2AEB15712F0D02A434E7831B5B_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, int32_t ___index0, int32_t ___value1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.RectInt::set_x(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectInt_set_x_m2D2F3A87E9899A29444DBDD0BB11CB19F13AA075 (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.RectInt::set_y(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectInt_set_y_m45D5C1D817698266BED66D41A705956A1571858D (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.RectInt::set_width(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectInt_set_width_mCD96AA9D096114147F8411A340CE4AD3476DCD4C (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.RectInt::set_height(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectInt_set_height_m823A353A80B8B5180AEDF968A6E85B9D9B75C1C6 (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.BoundsInt::.ctor(UnityEngine.Vector3Int,UnityEngine.Vector3Int)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BoundsInt__ctor_m93F7EDF326B3BA01465FA229F6CEED0ED48D32FF (BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485* __this, Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___position0, Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___size1, const RuntimeMethod* method) ;
|
|
// System.Int32 System.String::IndexOf(System.String,System.StringComparison)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.QueuedDebugLogEntry::.ctor(System.String,System.String,UnityEngine.LogType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueuedDebugLogEntry__ctor_m4C3374C16FCD4D5BB8A4224E360B018ACBBA4ACE (QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C* __this, String_t* ___logString0, String_t* ___stackTrace1, int32_t ___logType2, const RuntimeMethod* method) ;
|
|
// System.Boolean IngameDebugConsole.QueuedDebugLogEntry::MatchesSearchTerm(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QueuedDebugLogEntry_MatchesSearchTerm_m4958263BE056CF58058C82981011F727EEDAE747 (QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C* __this, String_t* ___searchTerm0, const RuntimeMethod* method) ;
|
|
// System.DateTime System.DateTime::get_UtcNow()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_UtcNow_m06B6E9995FE16846A0F71EC9DB23E90BE2C5F9FA (const RuntimeMethod* method) ;
|
|
// System.DateTime System.DateTime::op_Addition(System.DateTime,System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t1, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Time::get_realtimeSinceStartup()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_realtimeSinceStartup_m73B3CB73175D79A44333D59BB70F9EDE55EC9510 (const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.Time::get_frameCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Time_get_frameCount_m4A42E558A71301A216BDC49EC402D62F19C79667 (const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogEntryTimestamp::.ctor(System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogEntryTimestamp__ctor_m4078075799D0C3846D64F2E8800CB70B69ED53ED (DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___localTimeUtcOffset0, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTime::get_Hour()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTime::get_Minute()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.DateTime::get_Second()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogEntryTimestamp::AppendTime(System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogEntryTimestamp_AppendTime_m1613293116BEC3BBEB7E957432B2FDF34B0E593C (DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
|
|
// System.String System.Single::ToString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Single_ToString_m3F2C4433B6ADFA5ED8E3F14ED19CD23014E5179D (float* __this, String_t* ___format0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogEntryTimestamp::AppendFullTimestamp(System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogEntryTimestamp_AppendFullTimestamp_m4C6F17EF93FD1009A0EF3263DCE82792F86403CB (DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method) ;
|
|
// UnityEngine.RectTransform UnityEngine.UI.Graphic::get_rectTransform()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* Graphic_get_rectTransform_mF4752E8934267D630810E84CE02CDFB81EB1FD6D (Graphic_tCBFCA4585A19E2B75465AECFEAC43F4016BF7931* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.RectTransform::get_anchoredPosition()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RectTransform_get_anchoredPosition_m38F25A4253B0905BB058BE73DBF43C7172CE0680 (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.RectTransform::get_sizeDelta()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.GameObject UnityEngine.Component::get_gameObject()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
// T UnityEngine.GameObject::AddComponent<IngameDebugConsole.DebugLogItemCopyWebGL>()
|
|
inline DebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3* GameObject_AddComponent_TisDebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3_m299610713BC44A89D57A385F30CFC991B7E884BE (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( DebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))GameObject_AddComponent_TisRuntimeObject_m69B93700FACCF372F5753371C6E8FB780800B824_gshared)(__this, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItemCopyWebGL::Initialize(IngameDebugConsole.DebugLogItem)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DebugLogItemCopyWebGL_Initialize_m669E97D390AA126308D66275688AACC868D3168F_inline (DebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3* __this, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___logItem0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UI.Text::set_horizontalOverflow(UnityEngine.HorizontalWrapMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Text_set_horizontalOverflow_m10AAFBA65FD7F4B1934B5D628B3E70D75D02FFD6 (Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.Single IngameDebugConsole.DebugLogRecycledListView::get_SelectedItemHeight()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DebugLogRecycledListView_get_SelectedItemHeight_m55C399776D3C681426A1E7BB96D17799AAF17358_inline (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.GameObject::get_activeSelf()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GameObject_get_activeSelf_m4F3E5240E138B66AAA080EA30759A3D0517DA368 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GameObject::SetActive(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, bool ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Vector2::.ctor(System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___x0, float ___y1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.RectTransform::set_anchoredPosition(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_anchoredPosition_mF903ACE04F6959B1CD67E2B94FABC0263068F965 (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::op_Subtraction(UnityEngine.Vector2,UnityEngine.Vector2)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Subtraction_m44475FCDAD2DA2F98D78A6625EC2DCDFE8803837_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___b1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.RectTransform::set_sizeDelta(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_sizeDelta_mC9A980EA6036E6725EF24CEDF3EE80A9B2B50EE5 (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
|
|
// System.Single IngameDebugConsole.DebugLogRecycledListView::get_ItemHeight()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DebugLogRecycledListView_get_ItemHeight_m4FBFACEF0C31D99C4745209391D410234EAE6A80_inline (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogItem::SetText(IngameDebugConsole.DebugLogEntry,System.Nullable`1<IngameDebugConsole.DebugLogEntryTimestamp>,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItem_SetText_mAE64E89F6945A0D9535258E12B75C7AE340F009D (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* ___logEntry0, Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 ___logEntryTimestamp1, bool ___isExpanded2, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UI.Image::set_sprite(UnityEngine.Sprite)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Image_set_sprite_mC0C248340BA27AAEE56855A3FAFA0D8CA12956DE (Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* __this, Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___value0, const RuntimeMethod* method) ;
|
|
// System.String System.Int32::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5 (int32_t* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Nullable`1<IngameDebugConsole.DebugLogEntryTimestamp>::.ctor(T)
|
|
inline void Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685 (Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41* __this, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 ___value0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41*, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97, const RuntimeMethod*))Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685_gshared)(__this, ___value0, method);
|
|
}
|
|
// System.Boolean System.Nullable`1<IngameDebugConsole.DebugLogEntryTimestamp>::get_HasValue()
|
|
inline bool Nullable_1_get_HasValue_m72F8CCD2B9960B32D61CFA8DDFB3A8B66E75E78D_inline (Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41*, const RuntimeMethod*))Nullable_1_get_HasValue_m72F8CCD2B9960B32D61CFA8DDFB3A8B66E75E78D_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void System.Text.StringBuilder::set_Length(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414 (StringBuilder_t* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// T System.Nullable`1<IngameDebugConsole.DebugLogEntryTimestamp>::get_Value()
|
|
inline DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 Nullable_1_get_Value_m2CE3C311F530B9D4B476C8B128164C51D5692CBF (Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 (*) (Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41*, const RuntimeMethod*))Nullable_1_get_Value_m2CE3C311F530B9D4B476C8B128164C51D5692CBF_gshared)(__this, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::OnLogItemClicked(IngameDebugConsole.DebugLogItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_OnLogItemClicked_m884D345CF8F6ACB003D53075D9A8B6F8B4BB19B2 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___item0, const RuntimeMethod* method) ;
|
|
// UnityEngine.HorizontalWrapMode UnityEngine.UI.Text::get_horizontalOverflow()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Text_get_horizontalOverflow_mC909085F76EF49D62A70A8E503C5BC14C30176F1 (Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Mathf::Max(System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline (float ___a0, float ___b1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.MonoBehaviour::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E (MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71* __this, const RuntimeMethod* method) ;
|
|
// System.String IngameDebugConsole.DebugLogItem::GetCopyContent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DebugLogItem_GetCopyContent_m5FE53FDB96ECAD424FC870B38C3421F1E9596ED9 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogItemCopyWebGL::IngameDebugConsoleStartCopy(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItemCopyWebGL_IngameDebugConsoleStartCopy_mCB7B966C5FBFCAFADF25744A4651C4DE213F3F83 (String_t* ___textToCopy0, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.EventSystems.PointerEventData::get_dragging()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogItemCopyWebGL::IngameDebugConsoleCancelCopy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItemCopyWebGL_IngameDebugConsoleCancelCopy_m063C59C6EB51F1EEEED03EC1BCE14BE81BF78AC5 (const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogManager::set_Instance(IngameDebugConsole.DebugLogManager)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DebugLogManager_set_Instance_m8AAA1D33AF4369E3F6479AF6B0B6DF97015AE73A_inline (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Object::DontDestroyOnLoad(UnityEngine.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_DontDestroyOnLoad_m4B70C3AEF886C176543D1295507B6455C9DCAEA7 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___target0, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___x0, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___y1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Object::Destroy(UnityEngine.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Destroy_mE97D0A766419A81296E8D4E5C23D01D3FE91ACBB (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___obj0, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntry>::.ctor(System.Int32)
|
|
inline void List_1__ctor_m84B60E4511081603E6186BDB5DAFB2CDE9AA8454 (List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* __this, int32_t ___capacity0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983*, int32_t, const RuntimeMethod*))List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared)(__this, ___capacity0, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.DebugLogItem>::.ctor(System.Int32)
|
|
inline void List_1__ctor_m983421AD93B4F8031BD3DE40348CD04ACB2EB2D8 (List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14* __this, int32_t ___capacity0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14*, int32_t, const RuntimeMethod*))List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared)(__this, ___capacity0, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UI.Text>::.ctor(System.Int32)
|
|
inline void List_1__ctor_m8253079A55CBC89FDB0B6E9075715BD28D305562 (List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48* __this, int32_t ___capacity0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48*, int32_t, const RuntimeMethod*))List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared)(__this, ___capacity0, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::.ctor(System.Int32)
|
|
inline void List_1__ctor_m30DD6F0F8DFBA9856BF7220A3CDB1C89ECEC0D98 (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___capacity0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1__ctor_m30DD6F0F8DFBA9856BF7220A3CDB1C89ECEC0D98_gshared)(__this, ___capacity0, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DynamicCircularBuffer`1<IngameDebugConsole.QueuedDebugLogEntry>::.ctor(System.Int32)
|
|
inline void DynamicCircularBuffer_1__ctor_m2C25B66F5928BB4AFECDF42471C898F632AA72D3 (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* __this, int32_t ___initialCapacity0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965*, int32_t, const RuntimeMethod*))DynamicCircularBuffer_1__ctor_m2C25B66F5928BB4AFECDF42471C898F632AA72D3_gshared)(__this, ___initialCapacity0, method);
|
|
}
|
|
// System.Void IngameDebugConsole.CircularBuffer`1<System.String>::.ctor(System.Int32)
|
|
inline void CircularBuffer_1__ctor_m5ABA82D2EC7ECE4256398E62D68629E6B59BE9C9 (CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A* __this, int32_t ___capacity0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A*, int32_t, const RuntimeMethod*))CircularBuffer_1__ctor_m1BF8285E1909E019FA9D57390464A13F4CE4A495_gshared)(__this, ___capacity0, method);
|
|
}
|
|
// UnityEngine.Transform UnityEngine.Component::get_transform()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<UnityEngine.LogType,UnityEngine.Sprite>::.ctor()
|
|
inline void Dictionary_2__ctor_m50FA4CBA07D3DBAE93E04E6C9ACFC805CA054B4E (Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7*, const RuntimeMethod*))Dictionary_2__ctor_mCC9983804D8DC41E938E080075F9EA7BDD0C7059_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Dictionary`2<UnityEngine.LogType,UnityEngine.Sprite>::Add(TKey,TValue)
|
|
inline void Dictionary_2_Add_m2620E8DF00B206AC5E4A4106D63E3C4485C128BC (Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7* __this, int32_t ___key0, Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* ___value1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7*, int32_t, Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99*, const RuntimeMethod*))Dictionary_2_Add_mC515884C0546021A29DC0A00DBCABD89B1B65872_gshared)(__this, ___key0, ___value1, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Dictionary`2<IngameDebugConsole.DebugLogEntry,System.Int32>::.ctor(System.Int32)
|
|
inline void Dictionary_2__ctor_m316B32060B187C6935D44E5342EEC67EC2F26F0C (Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22* __this, int32_t ___capacity0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22*, int32_t, const RuntimeMethod*))Dictionary_2__ctor_m129B1E1EDDABF00B402C93841CCA7169B8963D83_gshared)(__this, ___capacity0, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogIndexList`1<System.Int32>::.ctor()
|
|
inline void DebugLogIndexList_1__ctor_mA89F322ECBB6B3A499BFE45D2D21FE45F550DA79 (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F*, const RuntimeMethod*))DebugLogIndexList_1__ctor_mA89F322ECBB6B3A499BFE45D2D21FE45F550DA79_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntryTimestamp>::.ctor(System.Int32)
|
|
inline void List_1__ctor_mC44213C602CAA3F94A5594ACA8E70E9826C8268A (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* __this, int32_t ___capacity0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6*, int32_t, const RuntimeMethod*))List_1__ctor_mC44213C602CAA3F94A5594ACA8E70E9826C8268A_gshared)(__this, ___capacity0, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp>::.ctor()
|
|
inline void DebugLogIndexList_1__ctor_mFDB99EECA2932B97D971CD576697FA8F3877ABCD (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20*, const RuntimeMethod*))DebugLogIndexList_1__ctor_mFDB99EECA2932B97D971CD576697FA8F3877ABCD_gshared)(__this, method);
|
|
}
|
|
// UnityEngine.RectTransform IngameDebugConsole.DebugLogItem::get_Transform()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* DebugLogItem_get_Transform_mBAA5D6E01F83683FF29CE440C3D2F4D5616E6466_inline (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::Initialize(IngameDebugConsole.DebugLogManager,System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntry>,IngameDebugConsole.DebugLogIndexList`1<System.Int32>,IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp>,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_Initialize_mAF57AB488F6259FDDE530279AB805F5B96EC6404 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* ___manager0, List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* ___collapsedLogEntries1, DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* ___indicesOfEntriesToShow2, DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* ___timestampsOfEntriesToShow3, float ___logItemHeight4, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::UpdateItemsInTheList(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_UpdateItemsInTheList_mFA3693DC343B8C587ADB84C71BEFF417EA3710EA (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, bool ___updateAllVisibleItemContents0, const RuntimeMethod* method) ;
|
|
// T UnityEngine.Component::GetComponentInParent<IngameDebugConsole.DebugLogResizeListener>()
|
|
inline DebugLogResizeListener_tAEB6FDAE1D37AD856CBD82204674E6AC4C1764B5* Component_GetComponentInParent_TisDebugLogResizeListener_tAEB6FDAE1D37AD856CBD82204674E6AC4C1764B5_mF02A4B666F5DCABE759B5071135F7F6B1ACE8536 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( DebugLogResizeListener_tAEB6FDAE1D37AD856CBD82204674E6AC4C1764B5* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponentInParent_TisRuntimeObject_m6746D6BB99912B1B509746C993906492F86CD119_gshared)(__this, method);
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.RectTransform::get_anchorMin()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RectTransform_get_anchorMin_mD85363930BE38EC188F933B9F4D58320CAB72F03 (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.RectTransform::set_anchorMin(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_anchorMin_m931442ABE3368D6D4309F43DF1D64AB64B0F52E3 (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.RectTransform::get_anchorMax()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RectTransform_get_anchorMax_mEF870BE2A134CEB9C2326930A71D3961271297DB (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.RectTransform::set_anchorMax(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_anchorMax_m52829ABEDD229ABD3DA20BCA676FA1DCA4A39B7D (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.RectTransform::get_pivot()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 RectTransform_get_pivot_mA8334AF05AA7FF09A173A2430F2BB9E85E5CBFFF (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.RectTransform::set_pivot(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_pivot_m79D0177D383D432A93C2615F1932B739B1C6E146 (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___value0, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::op_Addition(UnityEngine.Vector2,UnityEngine.Vector2)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Addition_m8136742CE6EE33BA4EB81C5F584678455917D2AE_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___b1, const RuntimeMethod* method) ;
|
|
// T UnityEngine.Component::GetComponent<UnityEngine.UI.InputField>()
|
|
inline InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* Component_GetComponent_TisInputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140_m08978F3683B8CCF83910BA8BB0A4F786A6361896 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared)(__this, method);
|
|
}
|
|
// UnityEngine.UI.InputField/OnChangeEvent UnityEngine.UI.InputField::get_onValueChanged()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR OnChangeEvent_tE4829F88300B0E0E0D1B78B453AF25FC1AA55E2F* InputField_get_onValueChanged_mA9ABE178FE3EB05AEF3DC20C11349427C59916AE_inline (InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Events.UnityAction`1<System.String>::.ctor(System.Object,System.IntPtr)
|
|
inline void UnityAction_1__ctor_mE6251CCFD943EB114960F556A546E2777B18AC71 (UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B*, RuntimeObject*, intptr_t, const RuntimeMethod*))UnityAction_1__ctor_m0C2FC6B483B474AE9596A43EBA7FF6E85503A92A_gshared)(__this, ___object0, ___method1, method);
|
|
}
|
|
// System.Void UnityEngine.Events.UnityEvent`1<System.String>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
|
|
inline void UnityEvent_1_AddListener_mEC384A8CFC5D4D41B62B08248A738CF61B82172F (UnityEvent_1_tC9859540CF1468306CAB6D758C0A0D95DBCEC257* __this, UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B* ___call0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityEvent_1_tC9859540CF1468306CAB6D758C0A0D95DBCEC257*, UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B*, const RuntimeMethod*))UnityEvent_1_AddListener_m055233246714700E4BDAA62635BC0AA49E8165CC_gshared)(__this, ___call0, method);
|
|
}
|
|
// UnityEngine.UI.InputField/OnValidateInput UnityEngine.UI.InputField::get_onValidateInput()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B* InputField_get_onValidateInput_m370D93274B6040422092981DD3A34E4B88E96EBC_inline (InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UI.InputField/OnValidateInput::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnValidateInput__ctor_mDC0454BF264F87154EF8694821905B5A6A587A29 (OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
|
|
// System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t* Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00 (Delegate_t* ___a0, Delegate_t* ___b1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UI.InputField::set_onValidateInput(UnityEngine.UI.InputField/OnValidateInput)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputField_set_onValidateInput_m3A3FA74285B9BBA68325A91AA862201AF3A18CE4 (InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* __this, OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B* ___value0, const RuntimeMethod* method) ;
|
|
// UnityEngine.UI.InputField/EndEditEvent UnityEngine.UI.InputField::get_onEndEdit()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EndEditEvent_t946A962BA13CF60BB0BE7AD091DA041FD788E655* InputField_get_onEndEdit_m92C86FF7CA6108C4B14392CED20C9ED9D39AD9A3_inline (InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UI.Button/ButtonClickedEvent UnityEngine.UI.Button::get_onClick()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonClickedEvent_t8EA72E90B3BD1392FB3B3EF167D5121C23569E4C* Button_get_onClick_m701712A7F7F000CC80D517C4510697E15722C35C_inline (Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Events.UnityAction::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131 (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Events.UnityEvent::AddListener(UnityEngine.Events.UnityAction)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_AddListener_m8AA4287C16628486B41DA41CA5E7A856A706D302 (UnityEvent_tDC2C3548799DBC91D1E3F3DE60083A66F4751977* __this, UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* ___call0, const RuntimeMethod* method) ;
|
|
// T UnityEngine.Component::GetComponent<UnityEngine.UI.Button>()
|
|
inline Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098* Component_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mFF8BA4CA5D7158D1D6249559A3289E7A6DF0A2BB (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared)(__this, method);
|
|
}
|
|
// T UnityEngine.GameObject::GetComponent<UnityEngine.UI.Button>()
|
|
inline Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098* GameObject_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mB997CBF78A37938DC1624352E12D0205078CB290 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098* (*) (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_m6EAED4AA356F0F48288F67899E5958792395563B_gshared)(__this, method);
|
|
}
|
|
// System.DateTime System.DateTime::get_Now()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_Now_m636CB9651A9099D20BA1CF813A0C69637317325C (const RuntimeMethod* method) ;
|
|
// System.TimeSpan System.DateTime::op_Subtraction(System.DateTime,System.DateTime)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTime_op_Subtraction_m64D26F5ABFAE6E166A7E567093D025F6C69F0123 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d21, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.EventSystems.PointerEventData::.ctor(UnityEngine.EventSystems.EventSystem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventData__ctor_m63837790B68893F0022CCEFEF26ADD55A975F71C (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707* ___eventSystem0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Application/LogCallback::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LogCallback__ctor_m327A4C69691F8A4B01D405858E48B8A7D9D2A79D (LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Application::remove_logMessageReceivedThreaded(UnityEngine.Application/LogCallback)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Application_remove_logMessageReceivedThreaded_m1E3BD279C50197C83C34222FD135D91C3F3313E2 (LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413* ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Application::add_logMessageReceivedThreaded(UnityEngine.Application/LogCallback)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Application_add_logMessageReceivedThreaded_mDD8B873BF766306B205F549CF98249DD84FCA04C (LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413* ___value0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogConsole::RemoveCommand(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_RemoveCommand_m7E9D585B16ADA53505185CF20D433A02EE9670E8 (String_t* ___command0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogManager::HideLogWindow()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_HideLogWindow_mDA216839443A72537E963035E9DEC6188631E3D2 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogManager::ShowLogWindow()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_ShowLogWindow_m63344BFB6A91AA1AF6E2706E403EBCF3AE394905 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogManager::set_PopupEnabled(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_set_PopupEnabled_m73DC638F652F0B01DA24D13D4FA9470A3B2C3B49 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, bool ___value0, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Input::GetKeyDown(UnityEngine.KeyCode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Input_GetKeyDown_mB237DEA6244132670D38990BAB77D813FBB028D2 (int32_t ___key0, const RuntimeMethod* method) ;
|
|
// System.Int32 IngameDebugConsole.DynamicCircularBuffer`1<IngameDebugConsole.QueuedDebugLogEntry>::get_Count()
|
|
inline int32_t DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_inline (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965*, const RuntimeMethod*))DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void System.Threading.Monitor::Exit(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
|
|
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149 (RuntimeObject* ___obj0, bool* ___lockTaken1, const RuntimeMethod* method) ;
|
|
// T IngameDebugConsole.DynamicCircularBuffer`1<IngameDebugConsole.QueuedDebugLogEntry>::RemoveFirst()
|
|
inline QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C DynamicCircularBuffer_1_RemoveFirst_mB90660C9AD7A06237A51BF5C1A00148A2975CF72 (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C (*) (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965*, const RuntimeMethod*))DynamicCircularBuffer_1_RemoveFirst_mB90660C9AD7A06237A51BF5C1A00148A2975CF72_gshared)(__this, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::ProcessLog(IngameDebugConsole.QueuedDebugLogEntry)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_ProcessLog_mD0F3EAF79AA2A64B5F45AC2859D88311560857C4 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C ___queuedLogEntry0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogPopup::NewLogsArrived(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup_NewLogsArrived_m85EAD7C7DB7DC48013913D26B818DCB25B0AF4AD (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, int32_t ___newInfo0, int32_t ___newWarning1, int32_t ___newError2, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::OnLogEntriesUpdated(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_OnLogEntriesUpdated_m31B75B0BEFE49F0A6C735132A24575ED537259F1 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, bool ___updateAllVisibleItemContents0, const RuntimeMethod* method) ;
|
|
// System.Int32 IngameDebugConsole.DebugLogIndexList`1<System.Int32>::get_Count()
|
|
inline int32_t DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_inline (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F*, const RuntimeMethod*))DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::SelectAndFocusOnLogItemAtIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_SelectAndFocusOnLogItemAtIndex_m76E2D97A52AD52976B1A9ACCEBDC1253B9A07BC9 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, int32_t ___itemIndex0, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UI.InputField::get_isFocused()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool InputField_get_isFocused_m19BD51E842077CA087824025F294C4078B2DAC50_inline (InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UI.InputField::get_caretPosition()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InputField_get_caretPosition_mC43674CCFF5BF7D047C2D4682B2CD7DE8A179EA7 (InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* __this, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.UI.InputField::get_text()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputField_get_text_m6E0796350FF559505E4DF17311803962699D6704_inline (InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogManager::RefreshCommandSuggestions(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_RefreshCommandSuggestions_mFCF8CC3D6641DA413AB30A52D25C37FDFC9A9383 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, String_t* ___command0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::OnViewportHeightChanged()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_OnViewportHeightChanged_mC257005C0AC4AAB23CAB212ABC2B3CD3311E2484 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogPopup::UpdatePosition(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup_UpdatePosition_mB0222958D440072B2379842CD02756074C379234 (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, bool ___immediately0, const RuntimeMethod* method) ;
|
|
// UnityEngine.Rect UnityEngine.RectTransform::get_rect()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D RectTransform_get_rect_mC82A60F8C3805ED9833508CCC233689641207488 (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Rect::get_width()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Mathf::Approximately(System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline (float ___a0, float ___b1, const RuntimeMethod* method) ;
|
|
// UnityEngine.Transform UnityEngine.Transform::get_parent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___x0, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___y1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Transform::SetParent(UnityEngine.Transform,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_SetParent_m9BDD7B7476714B2D7919B10BDC22CE75C0A0A195 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___parent0, bool ___worldPositionStays1, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::OnViewportWidthChanged()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_OnViewportWidthChanged_mC15FBC039660C721E52590BFA3E6A08320AF6C4D (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UI.ScrollRect::set_verticalNormalizedPosition(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScrollRect_set_verticalNormalizedPosition_m4AF461113925E6710BF04F46A49CF1F856F7738C (ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* __this, float ___value0, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UI.ScrollRect::get_verticalNormalizedPosition()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ScrollRect_get_verticalNormalizedPosition_m4FE766F04272C1805FDE2A4B72D80F6190841FA1 (ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 IngameDebugConsole.CircularBuffer`1<System.String>::get_Count()
|
|
inline int32_t CircularBuffer_1_get_Count_m14C7581AC31603481ACBF6A183A4A466EE202205_inline (CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A*, const RuntimeMethod*))CircularBuffer_1_get_Count_mD43A95B88B324220E62C43C054A08F5D4D0EE748_gshared_inline)(__this, method);
|
|
}
|
|
// T IngameDebugConsole.CircularBuffer`1<System.String>::get_Item(System.Int32)
|
|
inline String_t* CircularBuffer_1_get_Item_m9F70975FC739CFFAB235BC282293A7E8290D96A1 (CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
return (( String_t* (*) (CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A*, int32_t, const RuntimeMethod*))CircularBuffer_1_get_Item_mDA9F74D5D86FB841E444EFC95E581F369C73D02B_gshared)(__this, ___index0, method);
|
|
}
|
|
// System.Void UnityEngine.UI.InputField::set_text(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputField_set_text_m28B1C806BBCAC44F3ACCDC3B550509CA0C7D257F (InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* __this, String_t* ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UI.InputField::set_caretPosition(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputField_set_caretPosition_mF502AA3301C39D4397C7BF809D1F3A18D0603BD7 (InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.CanvasGroup::set_interactable(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasGroup_set_interactable_m86928BB0894EF3F06BC7BE63594272FBA0DAC757 (CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* __this, bool ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.CanvasGroup::set_blocksRaycasts(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasGroup_set_blocksRaycasts_m6C17F35782D16AE3FC42FCD1A4D68E1C4A4776E0 (CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* __this, bool ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.CanvasGroup::set_alpha(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasGroup_set_alpha_m5C06839316D948BB4F75ED72C87FA1F1A20C333F (CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* __this, float ___value0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogPopup::Hide()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup_Hide_mA3055E290BA97DFAB66E85D942F0656101926F8C (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Action::Invoke()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UI.InputField::DeactivateInputField()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputField_DeactivateInputField_m58D0B3BF095094A0963A9CE8BABF1979F7D1254D (InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogPopup::Show()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup_Show_m7768CAEB2D2EF3373F587FF5D634BDDD3E2E68E4 (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, const RuntimeMethod* method) ;
|
|
// System.String IngameDebugConsole.DebugLogConsole::GetAutoCompleteCommand(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DebugLogConsole_GetAutoCompleteCommand_m91ECE63056F5D4631D17288E6D2579602F717C49 (String_t* ___commandStart0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.CircularBuffer`1<System.String>::Add(T)
|
|
inline void CircularBuffer_1_Add_m4CCBE4F7A19B2F77BD1935D7A0DBE89B9A51217B (CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A* __this, String_t* ___value0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A*, String_t*, const RuntimeMethod*))CircularBuffer_1_Add_m3E8794C8A9B1F0B7B0C0A0F83910B82801ACBF32_gshared)(__this, ___value0, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::ExecuteCommand(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_ExecuteCommand_m09EFF4CAD43DDF1822589BCA5466F2BF3B02CD21 (String_t* ___command0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogManager::SetSnapToBottom(System.Boolean)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DebugLogManager_SetSnapToBottom_m869F0D298244C064CF9C7611B3D11F198433D6BC_inline (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, bool ___snapToBottom0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DynamicCircularBuffer`1<IngameDebugConsole.QueuedDebugLogEntry>::Add(T)
|
|
inline void DynamicCircularBuffer_1_Add_m53EC77E0459887173ED94AD5A527032DD96B430B (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* __this, QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C ___value0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965*, QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C, const RuntimeMethod*))DynamicCircularBuffer_1_Add_m53EC77E0459887173ED94AD5A527032DD96B430B_gshared)(__this, ___value0, method);
|
|
}
|
|
// System.Int32 System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntry>::get_Count()
|
|
inline int32_t List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_inline (List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntry>::get_Item(System.Int32)
|
|
inline DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78 (List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
return (( DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* (*) (List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntry>::RemoveAt(System.Int32)
|
|
inline void List_1_RemoveAt_m0B75D5B86C4664A84341E758B9F1661B8E1CE0D7 (List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___index0, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogEntry::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogEntry__ctor_mBE7464DD3CDAACF0FD7B0C097A1CEBEB436B774B (DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogEntry::Initialize(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogEntry_Initialize_m692E8607E734476B69652DF35B19E3456574A190 (DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* __this, String_t* ___logString0, String_t* ___stackTrace1, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<IngameDebugConsole.DebugLogEntry,System.Int32>::TryGetValue(TKey,TValue&)
|
|
inline bool Dictionary_2_TryGetValue_m2875CB0A26B6AFAEA5E60272D2D0E84EB907F756 (Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22* __this, DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* ___key0, int32_t* ___value1, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22*, DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD*, int32_t*, const RuntimeMethod*))Dictionary_2_TryGetValue_m4B8EE45640C70BBFD6F3EFF1040983404C098342_gshared)(__this, ___key0, ___value1, method);
|
|
}
|
|
// TValue System.Collections.Generic.Dictionary`2<UnityEngine.LogType,UnityEngine.Sprite>::get_Item(TKey)
|
|
inline Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* Dictionary_2_get_Item_m84343D394ED12686F2F8600785AAF1BAE5DBCE6B (Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7* __this, int32_t ___key0, const RuntimeMethod* method)
|
|
{
|
|
return (( Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* (*) (Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7*, int32_t, const RuntimeMethod*))Dictionary_2_get_Item_m9C4302CCAE3C1BF70D02091D0E0CED7663F18211_gshared)(__this, ___key0, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntry>::Add(T)
|
|
inline void List_1_Add_mB84FC21545F3DE5FB7FAE8E6FA0C3F0AA2AF0E8F_inline (List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* __this, DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* ___item0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983*, DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Dictionary`2<IngameDebugConsole.DebugLogEntry,System.Int32>::set_Item(TKey,TValue)
|
|
inline void Dictionary_2_set_Item_m389487D9CAE4D83EF49F6429AF9024C6437CEF1A (Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22* __this, DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* ___key0, int32_t ___value1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22*, DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD*, int32_t, const RuntimeMethod*))Dictionary_2_set_Item_m72CC2F1213D1C1B8ABEDE31082D07B67EC873B13_gshared)(__this, ___key0, ___value1, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntryTimestamp>::Add(T)
|
|
inline void List_1_Add_m285FF9023DA9D5F2308CB2B578F0DFF7025F0363_inline (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* __this, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 ___item0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6*, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97, const RuntimeMethod*))List_1_Add_m285FF9023DA9D5F2308CB2B578F0DFF7025F0363_gshared_inline)(__this, ___item0, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntryTimestamp>::set_Item(System.Int32,T)
|
|
inline void List_1_set_Item_m6E2E1480A05AB8BB307A64F6A0DA82368C1A2B6F (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* __this, int32_t ___index0, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 ___value1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6*, int32_t, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97, const RuntimeMethod*))List_1_set_Item_m6E2E1480A05AB8BB307A64F6A0DA82368C1A2B6F_gshared)(__this, ___index0, ___value1, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogIndexList`1<System.Int32>::Add(T)
|
|
inline void DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4 (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* __this, int32_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F*, int32_t, const RuntimeMethod*))DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4_gshared)(__this, ___value0, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntryTimestamp>::get_Item(System.Int32)
|
|
inline DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8 (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
return (( DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 (*) (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6*, int32_t, const RuntimeMethod*))List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8_gshared)(__this, ___index0, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp>::Add(T)
|
|
inline void DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855 (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* __this, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 ___value0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20*, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97, const RuntimeMethod*))DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855_gshared)(__this, ___value0, method);
|
|
}
|
|
// System.Int32 IngameDebugConsole.DebugLogIndexList`1<System.Int32>::IndexOf(T)
|
|
inline int32_t DebugLogIndexList_1_IndexOf_mDAF87C3A6990C857499B37310F685BA31A1A9C54 (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* __this, int32_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F*, int32_t, const RuntimeMethod*))DebugLogIndexList_1_IndexOf_mDAF87C3A6990C857499B37310F685BA31A1A9C54_gshared)(__this, ___value0, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp>::set_Item(System.Int32,T)
|
|
inline void DebugLogIndexList_1_set_Item_m44047632959125DE52AF27BC23E7AABABA65348F (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* __this, int32_t ___index0, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 ___value1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20*, int32_t, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97, const RuntimeMethod*))DebugLogIndexList_1_set_Item_m44047632959125DE52AF27BC23E7AABABA65348F_gshared)(__this, ___index0, ___value1, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::OnCollapsedLogEntryAtIndexUpdated(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_OnCollapsedLogEntryAtIndexUpdated_m83CA66274FC922C662D9A56A137F308EC39F1DDB (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, int32_t ___index0, const RuntimeMethod* method) ;
|
|
// T IngameDebugConsole.DynamicCircularBuffer`1<IngameDebugConsole.QueuedDebugLogEntry>::get_Item(System.Int32)
|
|
inline QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C DynamicCircularBuffer_1_get_Item_m248003143CE1EFEC41A6812530777540C8A57FBB (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
return (( QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C (*) (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965*, int32_t, const RuntimeMethod*))DynamicCircularBuffer_1_get_Item_m248003143CE1EFEC41A6812530777540C8A57FBB_gshared)(__this, ___index0, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DynamicCircularBuffer`1<IngameDebugConsole.QueuedDebugLogEntry>::set_Item(System.Int32,T)
|
|
inline void DynamicCircularBuffer_1_set_Item_m527B7BFD3A45171383AEED1585D7EDFE2E152BFD (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* __this, int32_t ___index0, QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C ___value1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965*, int32_t, QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C, const RuntimeMethod*))DynamicCircularBuffer_1_set_Item_m527B7BFD3A45171383AEED1585D7EDFE2E152BFD_gshared)(__this, ___index0, ___value1, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntry>::Clear()
|
|
inline void List_1_Clear_m9425EE9EC20F325B521EE700AEAC64219769AF7D_inline (List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.Dictionary`2<IngameDebugConsole.DebugLogEntry,System.Int32>::Clear()
|
|
inline void Dictionary_2_Clear_mE8ACDACEA8CA85F717F6AAB281DA5B302D9B2120 (Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22*, const RuntimeMethod*))Dictionary_2_Clear_m931E25EF2557C3A386E4B9DC8D8212B7D9D3F5AE_gshared)(__this, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogIndexList`1<System.Int32>::Clear()
|
|
inline void DebugLogIndexList_1_Clear_mD2D832E651D36136AC8CAB51E17567950F882BD0 (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F*, const RuntimeMethod*))DebugLogIndexList_1_Clear_mD2D832E651D36136AC8CAB51E17567950F882BD0_gshared)(__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntryTimestamp>::Clear()
|
|
inline void List_1_Clear_mFB9655FC4FC26BA5CEC0B55A5D2072D534BF550A_inline (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6*, const RuntimeMethod*))List_1_Clear_mFB9655FC4FC26BA5CEC0B55A5D2072D534BF550A_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp>::Clear()
|
|
inline void DebugLogIndexList_1_Clear_mAA7E9A2FBFD40AC07610639B5712F4FE060BDDC6 (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20*, const RuntimeMethod*))DebugLogIndexList_1_Clear_mAA7E9A2FBFD40AC07610639B5712F4FE060BDDC6_gshared)(__this, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::DeselectSelectedLogItem()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_DeselectSelectedLogItem_m04DC7746AB16AF9D1B7E9D9747ACA6B70787BF63 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::SetCollapseMode(System.Boolean)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DebugLogRecycledListView_SetCollapseMode_m8B9F13CBAB315B685DBFBFFBD9FF546DC3AEAFC2_inline (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, bool ___collapse0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogManager::FilterLogs()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_FilterLogs_m4C6CFEB33CDA37F7C3E6C783C174916471E3876D (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<System.Int32>::Clear()
|
|
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);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::GetCommandSuggestions(System.String,System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo>,System.Collections.Generic.List`1<System.Int32>,System.String&,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_GetCommandSuggestions_mD9A1F9ECB81527BDD14183214F668B8C6AA0DCBF (String_t* ___command0, List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* ___matchingCommands1, List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___caretIndexIncrements2, String_t** ___commandName3, int32_t* ___numberOfParameters4, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<System.Int32>::get_Count()
|
|
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);
|
|
}
|
|
// T System.Collections.Generic.List`1<System.Int32>::get_Item(System.Int32)
|
|
inline int32_t List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_gshared)(__this, ___index0, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::OnEndEditCommand(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_OnEndEditCommand_m6A00CF0CD88DE7DDD5E68262AE2CE34DBF3C2307 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, String_t* ___command0, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<UnityEngine.UI.Text>::get_Count()
|
|
inline int32_t List_1_get_Count_m451B44D19BA4256832D8B46E419A6176263901A4_inline (List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
// T UnityEngine.Object::Instantiate<UnityEngine.UI.Text>(T,UnityEngine.Transform,System.Boolean)
|
|
inline Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* Object_Instantiate_TisText_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62_mBB3AC9020A139E16AACFD144F60315A6E3B035EF (Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* ___original0, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___parent1, bool ___worldPositionStays2, const RuntimeMethod* method)
|
|
{
|
|
return (( Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* (*) (Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62*, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1*, bool, const RuntimeMethod*))Object_Instantiate_TisRuntimeObject_mDC5AD8BD13FE50E98B67B956C048367F4E8C6F94_gshared)(___original0, ___parent1, ___worldPositionStays2, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UI.Text>::Add(T)
|
|
inline void List_1_Add_m1E764F119DDC62D8B86C24186CBA7A268E9D3092_inline (List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48* __this, Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* ___item0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48*, Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<UnityEngine.UI.Text>::get_Item(System.Int32)
|
|
inline Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* List_1_get_Item_mD575040BED5E15F408E2E182CAFDF0EF52625E87 (List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
return (( Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* (*) (List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::get_position()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Camera UnityEngine.EventSystems.PointerEventData::get_pressEventCamera()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* PointerEventData_get_pressEventCamera_m8D6A377D5CA730307D9F8ABB8656FFB8FCD56AE3 (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.RectTransformUtility::ScreenPointToLocalPointInRectangle(UnityEngine.RectTransform,UnityEngine.Vector2,UnityEngine.Camera,UnityEngine.Vector2&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RectTransformUtility_ScreenPointToLocalPointInRectangle_m01A75CAFB6D1019F1C65BA606635EAB10AF31195 (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* ___rect0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___screenPoint1, Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* ___cam2, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* ___localPoint3, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.Rect::get_size()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Mathf::Clamp01(System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline (float ___value0, const RuntimeMethod* method) ;
|
|
// System.Boolean IngameDebugConsole.DebugLogEntry::MatchesSearchTerm(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogEntry_MatchesSearchTerm_m2A8682D30E6BAA04DD077A48EB81D85287DC96A2 (DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* __this, String_t* ___searchTerm0, const RuntimeMethod* method) ;
|
|
// T IngameDebugConsole.DebugLogIndexList`1<System.Int32>::get_Item(System.Int32)
|
|
inline int32_t DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F*, int32_t, const RuntimeMethod*))DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_gshared)(__this, ___index0, method);
|
|
}
|
|
// T IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp>::get_Item(System.Int32)
|
|
inline DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695 (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
return (( DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 (*) (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20*, int32_t, const RuntimeMethod*))DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_gshared)(__this, ___index0, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::ValidateScrollPosition()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_ValidateScrollPosition_m2A11C6555ED058C996C5116F208E953848D479FF (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method) ;
|
|
// System.String System.Environment::get_NewLine()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF (const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::AppendLine(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88 (StringBuilder_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
|
|
// System.Text.StringBuilder System.Text.StringBuilder::AppendLine()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E (StringBuilder_t* __this, const RuntimeMethod* method) ;
|
|
// System.String System.DateTime::ToString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m6963A84785C320DA776C9FCFFEDAF26C8F1A8D78 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, String_t* ___format0, const RuntimeMethod* method) ;
|
|
// System.String System.IO.Path::Combine(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_Combine_m1ADAC05CDA2D1D61B172DF65A81E86592696BEAE (String_t* ___path10, String_t* ___path21, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogManager::SaveLogsToFile(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_SaveLogsToFile_mF9FAE140F4FA5B15748622C1FBEC0760BBDE9508 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, String_t* ___filePath0, const RuntimeMethod* method) ;
|
|
// System.String IngameDebugConsole.DebugLogManager::GetAllLogs()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DebugLogManager_GetAllLogs_mE3A04FBEB916F84E6947FE1576EDFD1E003D7ABF (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.IO.File::WriteAllText(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void File_WriteAllText_m8AE8932A417928EF1E86F1E6B37C7A41904614D1 (String_t* ___path0, String_t* ___contents1, const RuntimeMethod* method) ;
|
|
// UnityEngine.CanvasGroup IngameDebugConsole.DebugLogItem::get_CanvasGroup()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* DebugLogItem_get_CanvasGroup_m54F87E5DE59659B77527BE8B0163A02963A1C0DB_inline (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.DebugLogItem>::Add(T)
|
|
inline void List_1_Add_m8054DB29304F9BB63B9ACBD183F0E98428FDCA86_inline (List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14* __this, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___item0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14*, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
|
|
}
|
|
// System.Int32 System.Collections.Generic.List`1<IngameDebugConsole.DebugLogItem>::get_Count()
|
|
inline int32_t List_1_get_Count_m1FB42CA14EF53D0F281649D58B4B43D0D17D2608_inline (List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<IngameDebugConsole.DebugLogItem>::get_Item(System.Int32)
|
|
inline DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* List_1_get_Item_m4F5E4A5103386DC79FDB5E944976BF4F2AE74D72 (List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
return (( DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* (*) (List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<IngameDebugConsole.DebugLogItem>::RemoveAt(System.Int32)
|
|
inline void List_1_RemoveAt_m9CD17F82D874520655B6F7A8A5C80CE4338A0FA0 (List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___index0, method);
|
|
}
|
|
// T UnityEngine.Object::Instantiate<IngameDebugConsole.DebugLogItem>(T,UnityEngine.Transform,System.Boolean)
|
|
inline DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* Object_Instantiate_TisDebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230_m5AB9007F059CB3FFCE6D1C9C5607A53ACB43871B (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___original0, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___parent1, bool ___worldPositionStays2, const RuntimeMethod* method)
|
|
{
|
|
return (( DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* (*) (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230*, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1*, bool, const RuntimeMethod*))Object_Instantiate_TisRuntimeObject_mDC5AD8BD13FE50E98B67B956C048367F4E8C6F94_gshared)(___original0, ___parent1, ___worldPositionStays2, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItem::Initialize(IngameDebugConsole.DebugLogRecycledListView)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItem_Initialize_m97E3F360DFD58E5E911D99472A70BB4DE3B00B64 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* ___listView0, const RuntimeMethod* method) ;
|
|
// T UnityEngine.Component::GetComponent<UnityEngine.UI.Image>()
|
|
inline Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* Component_GetComponent_TisImage_tBC1D03F63BF71132E9A5E472B8742F172A011E7E_mE74EE63C85A63FC34DCFC631BC229207B420BC79 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared)(__this, method);
|
|
}
|
|
// T UnityEngine.Component::GetComponent<UnityEngine.CanvasGroup>()
|
|
inline CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* Component_GetComponent_TisCanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094_mA3B0428368982ED39ADEBB220EE67D1E99D8B2D2 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_m7181F81CAEC2CF53F5D2BC79B7425C16E1F80D33_gshared)(__this, method);
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::op_Multiply(UnityEngine.Vector2,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Multiply_m2D984B613020089BF5165BA4CA10988E2DC771FE_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, float ___d1, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::get_normalized()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_get_normalized_mF6722883AEFB5027690A778DF8ACC20F0FA65297_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogPopup/<MoveToPosAnimation>d__21::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CMoveToPosAnimationU3Ed__21__ctor_mEBE2673235A90D111A2DC623C41A3D2F7AFB4DC5 (U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogPopup::Reset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup_Reset_m10D0DAC90821975E35450A17C30CFC0ADE161D45 (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.MonoBehaviour::StopCoroutine(System.Collections.IEnumerator)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour_StopCoroutine_mF9E93B82091E804595BE13AA29F9AB7517F7E04A (MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71* __this, RuntimeObject* ___routine0, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Mathf::Min(System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline (float ___a0, float ___b1, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Mathf::Clamp(System.Single,System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp_mEB9AEA827D27D20FCC787F7375156AF46BB12BBF_inline (float ___value0, float ___min1, float ___max2, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Vector2::Set(System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2_Set_m42A76E817B65A9626E1F5E900EB67F037B3E1ED0_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___newX0, float ___newY1, const RuntimeMethod* method) ;
|
|
// System.Collections.IEnumerator IngameDebugConsole.DebugLogPopup::MoveToPosAnimation(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DebugLogPopup_MoveToPosAnimation_mAC680B56F6D56D11D41C8580AD1CF1B0E7DB5ADD (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___targetPos0, const RuntimeMethod* method) ;
|
|
// UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutine(System.Collections.IEnumerator)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* MonoBehaviour_StartCoroutine_m4CAFF732AA28CD3BDC5363B44A863575530EC812 (MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71* __this, RuntimeObject* ___routine0, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Time::get_unscaledDeltaTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_unscaledDeltaTime_mF057EECA857E5C0F90A3F910D26D3EE59F27C4B5 (const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::Lerp(UnityEngine.Vector2,UnityEngine.Vector2,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_Lerp_m1A36103F7967F653A929556E26E6D052C298C00C_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___b1, float ___t2, const RuntimeMethod* method) ;
|
|
// System.Void System.NotSupportedException::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, const RuntimeMethod* method) ;
|
|
// T UnityEngine.Component::GetComponentInParent<UnityEngine.UI.ScrollRect>()
|
|
inline ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* Component_GetComponentInParent_TisScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E_mD5D105BD6034A3131A91D7B6534D7E74834D72AD (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* (*) (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*, const RuntimeMethod*))Component_GetComponentInParent_TisRuntimeObject_m6746D6BB99912B1B509746C993906492F86CD119_gshared)(__this, method);
|
|
}
|
|
// UnityEngine.UI.ScrollRect/ScrollRectEvent UnityEngine.UI.ScrollRect::get_onValueChanged()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ScrollRectEvent_t812C011901E6101F2A0FFC34C66AC5F65C0DEC26* ScrollRect_get_onValueChanged_mA6AF3832A97E82D31BB8C20BCD6E87A300E56C05_inline (ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>::.ctor(System.Object,System.IntPtr)
|
|
inline void UnityAction_1__ctor_m71C125B79EE35648CFC416CA7DBBC27C8DBAD45A (UnityAction_1_t8FBFBC01962B7293F0E33F9D6F1CEAF2896D8669* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityAction_1_t8FBFBC01962B7293F0E33F9D6F1CEAF2896D8669*, RuntimeObject*, intptr_t, const RuntimeMethod*))UnityAction_1__ctor_m71C125B79EE35648CFC416CA7DBBC27C8DBAD45A_gshared)(__this, ___object0, ___method1, method);
|
|
}
|
|
// System.Void UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>::AddListener(UnityEngine.Events.UnityAction`1<T0>)
|
|
inline void UnityEvent_1_AddListener_m2B74313C91E347D6AD24CE5B036E190E77E70851 (UnityEvent_1_t9A868DD8EBFC0D9D8134D903A170ECBDEE567932* __this, UnityAction_1_t8FBFBC01962B7293F0E33F9D6F1CEAF2896D8669* ___call0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityEvent_1_t9A868DD8EBFC0D9D8134D903A170ECBDEE567932*, UnityAction_1_t8FBFBC01962B7293F0E33F9D6F1CEAF2896D8669*, const RuntimeMethod*))UnityEvent_1_AddListener_m2B74313C91E347D6AD24CE5B036E190E77E70851_gshared)(__this, ___call0, method);
|
|
}
|
|
// System.Single UnityEngine.Rect::get_height()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 IngameDebugConsole.DebugLogItem::get_Index()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DebugLogItem_get_Index_mAE7C163DD212089A2276418AC74D1F118C4AE0E1_inline (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::OnLogItemClickedInternal(System.Int32,IngameDebugConsole.DebugLogItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_OnLogItemClickedInternal_m9C3AA7CA2C2C65BC15F72C0AA4AA9310F724707E (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, int32_t ___itemIndex0, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___referenceItem1, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Mathf::InverseLerp(System.Single,System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_InverseLerp_mBD7EC6A7173CE082226077E1557D5BC2D2AE0D9D_inline (float ___a0, float ___b1, float ___value2, const RuntimeMethod* method) ;
|
|
// TValue System.Collections.Generic.Dictionary`2<System.Int32,IngameDebugConsole.DebugLogItem>::get_Item(TKey)
|
|
inline DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7 (Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA* __this, int32_t ___key0, const RuntimeMethod* method)
|
|
{
|
|
return (( DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* (*) (Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA*, int32_t, const RuntimeMethod*))Dictionary_2_get_Item_mC3FEA647E750C27367C990777D8890E0E712E514_gshared)(__this, ___key0, method);
|
|
}
|
|
// System.Single IngameDebugConsole.DebugLogItem::CalculateExpandedHeight(IngameDebugConsole.DebugLogEntry,System.Nullable`1<IngameDebugConsole.DebugLogEntryTimestamp>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DebugLogItem_CalculateExpandedHeight_m55309AF097A86F270D520E266A7C3ACA00BA0EFC (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* ___logEntry0, Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 ___logEntryTimestamp1, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::ColorLogItem(IngameDebugConsole.DebugLogItem,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_ColorLogItem_m46DD7992FD72641EC61AE079E99B244472429CF3 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___logItem0, int32_t ___index1, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::CalculateContentHeight()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_CalculateContentHeight_m88EBCC3CBDBDE451B6F798EA318B87B9D443ABCB (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::HardResetItems()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_HardResetItems_mFF51258835419129C8C059D5EC869EF1998DEB55 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,IngameDebugConsole.DebugLogItem>::TryGetValue(TKey,TValue&)
|
|
inline bool Dictionary_2_TryGetValue_m9D7BB18AA4AB86EFE14E4557DE16B27241E87691 (Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA* __this, int32_t ___key0, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230** ___value1, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA*, int32_t, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230**, const RuntimeMethod*))Dictionary_2_TryGetValue_m7316301B8CF47FB538886B229B2749EC160B9D5C_gshared)(__this, ___key0, ___value1, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItem::ShowCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItem_ShowCount_m370DD836F4F51DE3090FBA4E46F0D5DAE4F6E7A4 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogItem::UpdateTimestamp(IngameDebugConsole.DebugLogEntryTimestamp)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItem_UpdateTimestamp_m727217AF90E45BF3F269237C89C9477D0EC3CEB0 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 ___timestamp0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::DestroyLogItemsBetweenIndices(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_DestroyLogItemsBetweenIndices_m85E1847758B9863E284951C77E3BB2DEF9A8E4A6 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, int32_t ___topIndex0, int32_t ___bottomIndex1, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::CreateLogItemsBetweenIndices(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_CreateLogItemsBetweenIndices_mDB2C5AA2319B2CBF70A1FD041F20EF1DD420FD8C (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, int32_t ___topIndex0, int32_t ___bottomIndex1, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::UpdateLogItemContentsBetweenIndices(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_UpdateLogItemContentsBetweenIndices_m9A78E2D3DFCB338642E1CAA287A6EE18D4120490 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, int32_t ___topIndex0, int32_t ___bottomIndex1, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::CreateLogItemAtIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_CreateLogItemAtIndex_mDB380A0813676996CF1295C0064548546D724006 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, int32_t ___index0, const RuntimeMethod* method) ;
|
|
// IngameDebugConsole.DebugLogItem IngameDebugConsole.DebugLogManager::PopLogItem()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* DebugLogManager_PopLogItem_m854ED51B251AD048C1097A5BF3F6E8518504E0EA (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,IngameDebugConsole.DebugLogItem>::set_Item(TKey,TValue)
|
|
inline void Dictionary_2_set_Item_m11CA9CFE0B08B5F7D60812584F934FEFEEE7CA67 (Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA* __this, int32_t ___key0, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___value1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA*, int32_t, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230*, const RuntimeMethod*))Dictionary_2_set_Item_m2888D71A14F2B8510102F24FEE90552E91B124C1_gshared)(__this, ___key0, ___value1, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::PoolLogItem(IngameDebugConsole.DebugLogItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_PoolLogItem_m50869AD2E15FB447682B47A83D7B06DED349B736 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___logItem0, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogItem::SetContent(IngameDebugConsole.DebugLogEntry,System.Nullable`1<IngameDebugConsole.DebugLogEntryTimestamp>,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItem_SetContent_mAA060346F58906FAA676D025BF7B440DEBA1C7E3 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* ___logEntry0, Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 ___logEntryTimestamp1, int32_t ___entryIndex2, bool ___isExpanded3, const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.DebugLogItem::HideCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItem_HideCount_m74445C719C5941D4DD597C50988526E5FAF7DBD2 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UI.Image IngameDebugConsole.DebugLogItem::get_Image()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* DebugLogItem_get_Image_m19E45CDC961A393E891617E0AE8196EEC60827E2_inline (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,IngameDebugConsole.DebugLogItem>::.ctor(System.Int32)
|
|
inline void Dictionary_2__ctor_m66E6C05B4FDC3BEA15F9B57F7F885C886492C1D7 (Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA* __this, int32_t ___capacity0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA*, int32_t, const RuntimeMethod*))Dictionary_2__ctor_m2E996E8E97DFC188B4E8854C11A9C82B16EDD2CE_gshared)(__this, ___capacity0, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::Resize(UnityEngine.EventSystems.PointerEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_Resize_m0F28C37B4111332354C18770A29BD3D3277DD0E4 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method) ;
|
|
// System.Boolean IngameDebugConsole.DebugsOnScrollListener::IsScrollbarAtBottom()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugsOnScrollListener_IsScrollbarAtBottom_mD32894983625F436CB103115886010DE782D5A8D (DebugsOnScrollListener_t2E15E040AD7FE915FC4F583966EBDE135A4C0DB0* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.PlayerPrefs::HasKey(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PlayerPrefs_HasKey_mCA5C64BBA6BF8B230BC3BC92B4761DD3B11D4668 (String_t* ___key0, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.PlayerPrefs::GetInt(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PlayerPrefs_GetInt_m4D859DBEABAD3FB406C94485A0B2638A0C7F2987 (String_t* ___key0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.PlayerPrefs::SetInt(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefs_SetInt_m956D3E2DB966F20CF42F842880DDF9E2BE94D948 (String_t* ___key0, int32_t ___value1, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.PlayerPrefs::GetFloat(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PlayerPrefs_GetFloat_m81F89D571E11218ED76DC9234CF8FAC2515FA7CB (String_t* ___key0, const RuntimeMethod* method) ;
|
|
// System.String System.Single::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Single_ToString_mE282EDA9CA4F7DF88432D807732837A629D04972 (float* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.PlayerPrefs::SetFloat(System.String,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefs_SetFloat_m1E8EA662BB9D8CF339D7DA2C452FCDFED88C5285 (String_t* ___key0, float ___value1, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.PlayerPrefs::GetString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PlayerPrefs_GetString_mA4C9F842BF77E5572AB20EA087C7048F870D02AE (String_t* ___key0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.PlayerPrefs::SetString(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefs_SetString_mF4F457C81BB75F0213547C6287BA36E15E1F0256 (String_t* ___key0, String_t* ___value1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.PlayerPrefs::DeleteKey(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefs_DeleteKey_mF3A7857B52DCEF4139843CD28716788624C2AD30 (String_t* ___key0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.PlayerPrefs::DeleteAll()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefs_DeleteAll_m7687D47AE64203DB76AC6754EC276DFFD0DFAB0E (const RuntimeMethod* method) ;
|
|
// System.Void IngameDebugConsole.Commands.SceneCommands::LoadSceneInternal(System.String,System.Boolean,UnityEngine.SceneManagement.LoadSceneMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SceneCommands_LoadSceneInternal_m44750C6CBF099D1649D013DE26C8E6C838AA234B (String_t* ___sceneName0, bool ___isAsync1, int32_t ___mode2, const RuntimeMethod* method) ;
|
|
// UnityEngine.SceneManagement.Scene UnityEngine.SceneManagement.SceneManager::GetSceneByName(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Scene_tA1DC762B79745EB5140F054C884855B922318356 SceneManager_GetSceneByName_m2A70CB2D1C586ED6747E82693785CA86F99FA9B9 (String_t* ___name0, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.SceneManagement.Scene::IsValid()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Scene_IsValid_m0D5200731D3E26ECBBB55803F9242965A14A4599 (Scene_tA1DC762B79745EB5140F054C884855B922318356* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.AsyncOperation UnityEngine.SceneManagement.SceneManager::LoadSceneAsync(System.String,UnityEngine.SceneManagement.LoadSceneMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C* SceneManager_LoadSceneAsync_m29D55D2C6CB7A019B26DA3F44C0881FF6AC491EC (String_t* ___sceneName0, int32_t ___mode1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.SceneManagement.SceneManager::LoadScene(System.String,UnityEngine.SceneManagement.LoadSceneMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SceneManager_LoadScene_m2841705C02C450E42A44B5EEE2A6A2C4261FA3AF (String_t* ___sceneName0, int32_t ___mode1, const RuntimeMethod* method) ;
|
|
// UnityEngine.AsyncOperation UnityEngine.SceneManagement.SceneManager::UnloadSceneAsync(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C* SceneManager_UnloadSceneAsync_mF6F4161EF48C6622AA1B5BC66B4A2CA736C4D2B2 (String_t* ___sceneName0, const RuntimeMethod* method) ;
|
|
// UnityEngine.SceneManagement.Scene UnityEngine.SceneManagement.SceneManager::GetActiveScene()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Scene_tA1DC762B79745EB5140F054C884855B922318356 SceneManager_GetActiveScene_m0B320EC4302F51A71495D1CCD1A0FF9C2ED1FDC8 (const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.SceneManagement.Scene::get_name()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Scene_get_name_m3C818DFA663E159274DAD823B780C7616C5E2A8C (Scene_tA1DC762B79745EB5140F054C884855B922318356* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Time::set_timeScale(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Time_set_timeScale_mEF84EE4B2376A458387648079B426B267862D331 (float ___value0, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Time::get_timeScale()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_timeScale_m1F45A413D4EEA08B1E0988022512C137F6C1E616 (const RuntimeMethod* method) ;
|
|
// System.Void System.IndexOutOfRangeException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_mFD06819F05B815BE2D6E826D4E04F4C449D0A425 (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* __this, String_t* ___message0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Color::.ctor(System.Single,System.Single,System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* __this, float ___r0, float ___g1, float ___b2, float ___a3, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Vector3Int::set_x(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3Int_set_x_m8745C5976D035EBBAC6F6191B5838D58631D8685_inline (Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Vector3Int::set_y(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3Int_set_y_mA856F32D1BF187BD4091DDF3C6872FD01F7D3377_inline (Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Vector3Int::set_z(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3Int_set_z_m5782180F67C4257C505F124971985D99C3422F74_inline (Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.UnityString::Format(System.String,System.Object[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityString_Format_m98A0629641086A1BE20BBF7F4EADDE3FE3877D85 (String_t* ___fmt0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Vector2Int::set_x(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2Int_set_x_m291ECF246536852F0B8EE049C4A3768E4999CDC8_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Vector2Int::set_y(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2Int_set_y_mF81881204EEE272BA409728C7EBFDE3A979DDF6A_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, int32_t ___value0, const RuntimeMethod* method) ;
|
|
// System.String System.String::Format(System.String,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8 (String_t* ___format0, RuntimeObject* ___arg01, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Vector2::Normalize()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2_Normalize_m56DABCAB5967DF37A6B96710477D3660D800C652_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Array::Clear(System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB (RuntimeArray* ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Vector2::get_magnitude()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector2_get_magnitude_m5C59B4056420AEFDB291AD0914A3F675330A75CE_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::op_Division(UnityEngine.Vector2,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Division_m57A2DCD71E0CE7420851D705D1951F9238902AAB_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, float ___d1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C void DEFAULT_CALL IngameDebugConsoleStartCopy(char*);
|
|
IL2CPP_EXTERN_C void DEFAULT_CALL IngameDebugConsoleCancelCopy();
|
|
#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
|
|
// System.String IngameDebugConsole.ConsoleMethodAttribute::get_Command()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConsoleMethodAttribute_get_Command_m5891B27830AD8D24C0BEC16F9B30F440EBB49E82 (ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public string Command { get { return m_command; } }
|
|
String_t* L_0 = __this->___m_command_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String IngameDebugConsole.ConsoleMethodAttribute::get_Description()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConsoleMethodAttribute_get_Description_mFC1AAFE7BDA0B06A1C7AB0C9B02FD228177F7F5E (ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public string Description { get { return m_description; } }
|
|
String_t* L_0 = __this->___m_description_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.String[] IngameDebugConsole.ConsoleMethodAttribute::get_ParameterNames()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ConsoleMethodAttribute_get_ParameterNames_m254994229F47A4A9C4E8D8AE92AB305A8B7FCCEB (ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public string[] ParameterNames { get { return m_parameterNames; } }
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___m_parameterNames_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.ConsoleMethodAttribute::.ctor(System.String,System.String,System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConsoleMethodAttribute__ctor_m14190D9D09BD98E2F46AA89C7B10EC8B75DA1A50 (ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734* __this, String_t* ___command0, String_t* ___description1, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___parameterNames2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public ConsoleMethodAttribute( string command, string description, params string[] parameterNames )
|
|
Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL);
|
|
// m_command = command;
|
|
String_t* L_0 = ___command0;
|
|
__this->___m_command_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_command_0), (void*)L_0);
|
|
// m_description = description;
|
|
String_t* L_1 = ___description1;
|
|
__this->___m_description_1 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_description_1), (void*)L_1);
|
|
// m_parameterNames = parameterNames;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = ___parameterNames2;
|
|
__this->___m_parameterNames_2 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_parameterNames_2), (void*)L_2);
|
|
// }
|
|
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
|
|
// System.Void IngameDebugConsole.ConsoleMethodInfo::.ctor(System.Reflection.MethodInfo,System.Type[],System.Object,System.String,System.String,System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConsoleMethodInfo__ctor_mD64937BD94F186B6418DEF8B8AF8D36AADD59175 (ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* __this, MethodInfo_t* ___method0, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___parameterTypes1, RuntimeObject* ___instance2, String_t* ___command3, String_t* ___signature4, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___parameters5, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public ConsoleMethodInfo( MethodInfo method, Type[] parameterTypes, object instance, string command, string signature, string[] parameters )
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
// this.method = method;
|
|
MethodInfo_t* L_0 = ___method0;
|
|
__this->___method_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___method_0), (void*)L_0);
|
|
// this.parameterTypes = parameterTypes;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_1 = ___parameterTypes1;
|
|
__this->___parameterTypes_1 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___parameterTypes_1), (void*)L_1);
|
|
// this.instance = instance;
|
|
RuntimeObject* L_2 = ___instance2;
|
|
__this->___instance_2 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___instance_2), (void*)L_2);
|
|
// this.command = command;
|
|
String_t* L_3 = ___command3;
|
|
__this->___command_3 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___command_3), (void*)L_3);
|
|
// this.signature = signature;
|
|
String_t* L_4 = ___signature4;
|
|
__this->___signature_4 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___signature_4), (void*)L_4);
|
|
// this.parameters = parameters;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = ___parameters5;
|
|
__this->___parameters_5 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___parameters_5), (void*)L_5);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.ConsoleMethodInfo::IsValid()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConsoleMethodInfo_IsValid_m9F0346F09F2E31E1F774FC741BD75AEE58BF18D7 (ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// if( !method.IsStatic && ( instance == null || instance.Equals( null ) ) )
|
|
MethodInfo_t* L_0 = __this->___method_0;
|
|
bool L_1;
|
|
L_1 = MethodBase_get_IsStatic_mD2921396167EC4F99E2ADC46C39CCCEC3CD0E16E(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = __this->___instance_2;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = __this->___instance_2;
|
|
bool L_4;
|
|
L_4 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
// return false;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
// return true;
|
|
return (bool)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
|
|
// System.Void IngameDebugConsole.DebugLogConsole::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole__cctor_m75A152ACAB9CFE5C1E44304E03114D1B6DB0386A (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Color_tD001788D726C3A7F1379BEED0260B9591F440C1F_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_AddCommand_TisString_t_m56B48A18D995EDA3186C3ABCA826924E82120333_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_LogAllCommandsWithName_mE66120EA06927650B2D14A4DC9291C9FD34F4B2D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_LogAllCommands_m978E37DE77B64B1BFEBEAE76A009FC8B6869E1EC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_LogSystemInfo_mB8DFBFE050EC55468EDF6106D49D060C5E2AB622_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseBool_mEF25361C5A16EA42E637C9A5C4CAAA9B69FE6C93_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseBoundsInt_m530D51F98125A1FBAA8A063D1A3085FDA6CF0F7C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseBounds_mDCA2A9708F851390931A57FF8E5FB40A2AA627B9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseByte_mDCD41E40AF9A49B3000FB4F9CA3476AC28E4C172_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseChar_mE26B50B4C917AC6EA436AE99B798EC443A3C61BC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseColor32_mB7E40A40CF0B3BF6360DF08350938199400F71BF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseColor_m143BF87018F4A2B5D6F6E788457C66114F6B12EC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseDecimal_m474453B063948DD000A23560EFFAC050937AF2AA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseDouble_mE0E87D6FA7478B20157C50AB3CC6FA3B1D2AEA94_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseFloat_m1D8D2B2D33A52F4564830459382BA43F178EFDD8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseGameObject_mF3CB80573688D1F357974DD9D979099F3FFF4466_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseInt_m89E83041C6A5BBE5D15158F8463E7791967D99DA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseLong_m931B8028A8F8FA1FB4DC8BDFFCE46D640329BCBA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseQuaternion_mD00B4033687BC4E5FB517201982EE7011CB5CED6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseRectInt_m872D02399F3D0E1AB96EA4C5E7ECEC7A646AE975_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseRectOffset_m72AF3CF248A32FA772AB4D657C9A8A7A34E686CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseRect_m387D9CDCD3040CEB10B7C96FB7D5BE8EED3CA591_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseSByte_mB24E4FD123682684CED79E98F16BEC0C72575B10_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseShort_m5F4567CA60623F25C9EB8470354C5C2844A715F1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseString_mC6A889D46770639BE9916E34C01111BDA20B4195_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseUInt_m1DC3574D7B9A04530134BFFBDBAC11F4638F5C04_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseULong_mE10F56112556D7CA1DDEA4AA6419A4D81DE2E5C9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseUShort_m5063AAAD632520CCAE05D2183F8C6EC36F5789DC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseVector2Int_m3649B9BC937B4664ACC7CA2F0200C63FBB25072E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseVector2_m7C7FA8F64A90CC149A78E4F53E23101F4320EF17_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseVector3Int_mD25E0226F9D50907FA52B655D84A9BFE58F28304_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseVector3_m1180FCC0F42A09E6A8436E2864EB376CE2317373_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_ParseVector4_mD631138EB5D4E11480D70BE1BC91E717E5E26CA6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m98909E5E8CE8D2293CA61D264046F026589507D8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mFAF23CD29002CAB23492293F8C8B56962DE7A0B6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1A062F45FE926079CE2D4FD38A3BF15F7AEB89AF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1B50B5865DB51955210F564FE524ECB55215107D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mC2EA22E22D584C79B83F3DE54ED552A45F7428EF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral072BA90B274B502615639084DC3D7FCC63407A24);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral195EE01589A1BFBA8BC53B99BC20604632BE0374);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral353C4741109DDADB95190E7F01B8D87E35D1673B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral38BAB054DA9F959809102ADA08F0F63973ECA525);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3A971881AF6B7B211E34707E857DEC5F36487877);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4E6A14ED6BDC6C214624E6D07B51CEA65B43C35B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B41A58E45555854EC2026B9B5F8243AA9E7ED4B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5FF374709F3F171D980E4E8BEA80A7954877FE64);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral622F5FF68A93093A1D312703FF92713F8BF2C946);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6855F4EC54AF75D6CAC8881791FBD2C863F2C1C9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral685AAD315643CB18DF2FB0FDBD65960F704C6706);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D6D8E86DBD851D1A807A44DC76915458B0CA61A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6F1975603AAE377B592571C48C0494F1FE06976C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral79CEC13F0CDE1D8B6306BE0D3B47994AC53C6D3C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral848A97F7360A08955AB3B08A739AFC04D590A51A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8F10756DCEBC5D3850F738F90B6A677D8FF1459D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral90F319F9C4138C3D70C6BA6CE014489F79A75843);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92268EB187B60388ABDE4FB41CAD03848C3E99A9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9743367EF85DF9405A17FA9B3523524E8EC33B5E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9AC36C3A3EC82C292FD998FA2F3C73EFBC571F3A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9ED931619E39F59A8520C1E3B03FEA2E9A56FB60);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA39CC7AB32E876B0A2453058CC6C522CAC51AB69);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAB6E4B33D18D43371E9CAA8B5F1BAB030A6A6C42);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBCA7DDD073AD5DB21CC612ADB1833BF1A5D32261);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC3A6C9992A21401C104E6402B6589EB9CB00BE43);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD3617E11EB8FFA6578B5DE0FBB98C4C20AA8378C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD4CE3559A2E2973C19617C23E21CA20E9DAD861A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD99ED39183CCE9D128A0FFF60FBEF9678C00D6F3);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDE2BB7271C3ADD797F43A7DAE3B1E1D64468A348);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE566E6091771397A8847DE9F0E5AF31E5E383CA7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5AE18385283D6C5462AF087AEC09F611FA4015E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFD4AADFE240628ED07070E31A6FAC66EE94C9452);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFF4B33BFCEDB53E4FD45237E05792EBB05A408D0);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_0 = NULL;
|
|
AssemblyU5BU5D_t97B7B4E3FD4DA4944A4BFAA4DC484EA7D990B339* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Assembly_t* V_3 = NULL;
|
|
String_t* V_4 = NULL;
|
|
bool V_5 = false;
|
|
int32_t V_6 = 0;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_7 = NULL;
|
|
int32_t V_8 = 0;
|
|
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* V_9 = NULL;
|
|
int32_t V_10 = 0;
|
|
MethodInfo_t* V_11 = NULL;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_12 = NULL;
|
|
int32_t V_13 = 0;
|
|
ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734* V_14 = NULL;
|
|
Exception_t* V_15 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
// private static readonly List<ConsoleMethodInfo> methods = new List<ConsoleMethodInfo>();
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_0 = (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4*)il2cpp_codegen_object_new(List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m1B50B5865DB51955210F564FE524ECB55215107D(L_0, List_1__ctor_m1B50B5865DB51955210F564FE524ECB55215107D_RuntimeMethod_var);
|
|
((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0), (void*)L_0);
|
|
// private static readonly List<ConsoleMethodInfo> matchingMethods = new List<ConsoleMethodInfo>( 4 );
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_1 = (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4*)il2cpp_codegen_object_new(List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mC2EA22E22D584C79B83F3DE54ED552A45F7428EF(L_1, 4, List_1__ctor_mC2EA22E22D584C79B83F3DE54ED552A45F7428EF_RuntimeMethod_var);
|
|
((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1), (void*)L_1);
|
|
// private static readonly Dictionary<Type, ParseFunction> parseFunctions = new Dictionary<Type, ParseFunction>()
|
|
// {
|
|
// { typeof( string ), ParseString },
|
|
// { typeof( bool ), ParseBool },
|
|
// { typeof( int ), ParseInt },
|
|
// { typeof( uint ), ParseUInt },
|
|
// { typeof( long ), ParseLong },
|
|
// { typeof( ulong ), ParseULong },
|
|
// { typeof( byte ), ParseByte },
|
|
// { typeof( sbyte ), ParseSByte },
|
|
// { typeof( short ), ParseShort },
|
|
// { typeof( ushort ), ParseUShort },
|
|
// { typeof( char ), ParseChar },
|
|
// { typeof( float ), ParseFloat },
|
|
// { typeof( double ), ParseDouble },
|
|
// { typeof( decimal ), ParseDecimal },
|
|
// { typeof( Vector2 ), ParseVector2 },
|
|
// { typeof( Vector3 ), ParseVector3 },
|
|
// { typeof( Vector4 ), ParseVector4 },
|
|
// { typeof( Quaternion ), ParseQuaternion },
|
|
// { typeof( Color ), ParseColor },
|
|
// { typeof( Color32 ), ParseColor32 },
|
|
// { typeof( Rect ), ParseRect },
|
|
// { typeof( RectOffset ), ParseRectOffset },
|
|
// { typeof( Bounds ), ParseBounds },
|
|
// { typeof( GameObject ), ParseGameObject },
|
|
// #if UNITY_2017_2_OR_NEWER
|
|
// { typeof( Vector2Int ), ParseVector2Int },
|
|
// { typeof( Vector3Int ), ParseVector3Int },
|
|
// { typeof( RectInt ), ParseRectInt },
|
|
// { typeof( BoundsInt ), ParseBoundsInt },
|
|
// #endif
|
|
// };
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_2 = (Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A*)il2cpp_codegen_object_new(Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m98909E5E8CE8D2293CA61D264046F026589507D8(L_2, Dictionary_2__ctor_m98909E5E8CE8D2293CA61D264046F026589507D8_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_3 = L_2;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_6 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_6, NULL, (intptr_t)((void*)DebugLogConsole_ParseString_mC6A889D46770639BE9916E34C01111BDA20B4195_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_3, L_5, L_6, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_7 = L_3;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast<intptr_t> (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) };
|
|
Type_t* L_9;
|
|
L_9 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_8, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_10 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_10, NULL, (intptr_t)((void*)DebugLogConsole_ParseBool_mEF25361C5A16EA42E637C9A5C4CAAA9B69FE6C93_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_7, L_9, L_10, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_11 = L_7;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_12 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
|
|
Type_t* L_13;
|
|
L_13 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_12, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_14 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_14, NULL, (intptr_t)((void*)DebugLogConsole_ParseInt_m89E83041C6A5BBE5D15158F8463E7791967D99DA_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_11, L_13, L_14, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_15 = L_11;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_16 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
|
|
Type_t* L_17;
|
|
L_17 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_16, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_18 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_18, NULL, (intptr_t)((void*)DebugLogConsole_ParseUInt_m1DC3574D7B9A04530134BFFBDBAC11F4638F5C04_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_15, L_17, L_18, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_19 = L_15;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_20 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) };
|
|
Type_t* L_21;
|
|
L_21 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_20, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_22 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_22, NULL, (intptr_t)((void*)DebugLogConsole_ParseLong_m931B8028A8F8FA1FB4DC8BDFFCE46D640329BCBA_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_19, L_21, L_22, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_23 = L_19;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) };
|
|
Type_t* L_25;
|
|
L_25 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_24, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_26 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_26, NULL, (intptr_t)((void*)DebugLogConsole_ParseULong_mE10F56112556D7CA1DDEA4AA6419A4D81DE2E5C9_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_23, L_25, L_26, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_27 = L_23;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_30 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_30, NULL, (intptr_t)((void*)DebugLogConsole_ParseByte_mDCD41E40AF9A49B3000FB4F9CA3476AC28E4C172_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_27, L_29, L_30, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_31 = L_27;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_32 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
|
|
Type_t* L_33;
|
|
L_33 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_32, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_34 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_34, NULL, (intptr_t)((void*)DebugLogConsole_ParseSByte_mB24E4FD123682684CED79E98F16BEC0C72575B10_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_31, L_33, L_34, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_35 = L_31;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_36 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
|
|
Type_t* L_37;
|
|
L_37 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_36, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_38 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_38, NULL, (intptr_t)((void*)DebugLogConsole_ParseShort_m5F4567CA60623F25C9EB8470354C5C2844A715F1_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_35, L_37, L_38, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_39 = L_35;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_40 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
|
|
Type_t* L_41;
|
|
L_41 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_40, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_42 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_42, NULL, (intptr_t)((void*)DebugLogConsole_ParseUShort_m5063AAAD632520CCAE05D2183F8C6EC36F5789DC_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_39, L_41, L_42, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_43 = L_39;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
|
|
Type_t* L_45;
|
|
L_45 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_44, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_46 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_46, NULL, (intptr_t)((void*)DebugLogConsole_ParseChar_mE26B50B4C917AC6EA436AE99B798EC443A3C61BC_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_43, L_45, L_46, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_47 = L_43;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_48 = { reinterpret_cast<intptr_t> (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var) };
|
|
Type_t* L_49;
|
|
L_49 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_48, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_50 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_50, NULL, (intptr_t)((void*)DebugLogConsole_ParseFloat_m1D8D2B2D33A52F4564830459382BA43F178EFDD8_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_47, L_49, L_50, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_51 = L_47;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_52 = { reinterpret_cast<intptr_t> (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var) };
|
|
Type_t* L_53;
|
|
L_53 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_52, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_54 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_54, NULL, (intptr_t)((void*)DebugLogConsole_ParseDouble_mE0E87D6FA7478B20157C50AB3CC6FA3B1D2AEA94_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_51, L_53, L_54, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_55 = L_51;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) };
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_58 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_58, NULL, (intptr_t)((void*)DebugLogConsole_ParseDecimal_m474453B063948DD000A23560EFFAC050937AF2AA_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_55, L_57, L_58, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_59 = L_55;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_60 = { reinterpret_cast<intptr_t> (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_0_0_0_var) };
|
|
Type_t* L_61;
|
|
L_61 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_60, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_62 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_62, NULL, (intptr_t)((void*)DebugLogConsole_ParseVector2_m7C7FA8F64A90CC149A78E4F53E23101F4320EF17_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_59, L_61, L_62, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_63 = L_59;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_64 = { reinterpret_cast<intptr_t> (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_0_0_0_var) };
|
|
Type_t* L_65;
|
|
L_65 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_64, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_66 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_66, NULL, (intptr_t)((void*)DebugLogConsole_ParseVector3_m1180FCC0F42A09E6A8436E2864EB376CE2317373_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_63, L_65, L_66, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_67 = L_63;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_68 = { reinterpret_cast<intptr_t> (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_0_0_0_var) };
|
|
Type_t* L_69;
|
|
L_69 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_68, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_70 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_70, NULL, (intptr_t)((void*)DebugLogConsole_ParseVector4_mD631138EB5D4E11480D70BE1BC91E717E5E26CA6_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_67, L_69, L_70, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_71 = L_67;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_72 = { reinterpret_cast<intptr_t> (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_0_0_0_var) };
|
|
Type_t* L_73;
|
|
L_73 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_72, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_74 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_74, NULL, (intptr_t)((void*)DebugLogConsole_ParseQuaternion_mD00B4033687BC4E5FB517201982EE7011CB5CED6_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_71, L_73, L_74, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_75 = L_71;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_76 = { reinterpret_cast<intptr_t> (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F_0_0_0_var) };
|
|
Type_t* L_77;
|
|
L_77 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_76, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_78 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_78, NULL, (intptr_t)((void*)DebugLogConsole_ParseColor_m143BF87018F4A2B5D6F6E788457C66114F6B12EC_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_75, L_77, L_78, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_79 = L_75;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_80 = { reinterpret_cast<intptr_t> (Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_0_0_0_var) };
|
|
Type_t* L_81;
|
|
L_81 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_80, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_82 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_82, NULL, (intptr_t)((void*)DebugLogConsole_ParseColor32_mB7E40A40CF0B3BF6360DF08350938199400F71BF_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_79, L_81, L_82, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_83 = L_79;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_84 = { reinterpret_cast<intptr_t> (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_0_0_0_var) };
|
|
Type_t* L_85;
|
|
L_85 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_84, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_86 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_86, NULL, (intptr_t)((void*)DebugLogConsole_ParseRect_m387D9CDCD3040CEB10B7C96FB7D5BE8EED3CA591_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_83, L_85, L_86, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_87 = L_83;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_88 = { reinterpret_cast<intptr_t> (RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_0_0_0_var) };
|
|
Type_t* L_89;
|
|
L_89 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_88, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_90 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_90, NULL, (intptr_t)((void*)DebugLogConsole_ParseRectOffset_m72AF3CF248A32FA772AB4D657C9A8A7A34E686CB_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_87, L_89, L_90, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_91 = L_87;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_92 = { reinterpret_cast<intptr_t> (Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_0_0_0_var) };
|
|
Type_t* L_93;
|
|
L_93 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_92, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_94 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_94, NULL, (intptr_t)((void*)DebugLogConsole_ParseBounds_mDCA2A9708F851390931A57FF8E5FB40A2AA627B9_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_91, L_93, L_94, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_95 = L_91;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_96 = { reinterpret_cast<intptr_t> (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_0_0_0_var) };
|
|
Type_t* L_97;
|
|
L_97 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_96, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_98 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_98, NULL, (intptr_t)((void*)DebugLogConsole_ParseGameObject_mF3CB80573688D1F357974DD9D979099F3FFF4466_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_95, L_97, L_98, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_99 = L_95;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_100 = { reinterpret_cast<intptr_t> (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_0_0_0_var) };
|
|
Type_t* L_101;
|
|
L_101 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_100, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_102 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_102, NULL, (intptr_t)((void*)DebugLogConsole_ParseVector2Int_m3649B9BC937B4664ACC7CA2F0200C63FBB25072E_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_99, L_101, L_102, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_103 = L_99;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_104 = { reinterpret_cast<intptr_t> (Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_0_0_0_var) };
|
|
Type_t* L_105;
|
|
L_105 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_104, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_106 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_106, NULL, (intptr_t)((void*)DebugLogConsole_ParseVector3Int_mD25E0226F9D50907FA52B655D84A9BFE58F28304_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_103, L_105, L_106, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_107 = L_103;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_108 = { reinterpret_cast<intptr_t> (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8_0_0_0_var) };
|
|
Type_t* L_109;
|
|
L_109 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_108, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_110 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_110, NULL, (intptr_t)((void*)DebugLogConsole_ParseRectInt_m872D02399F3D0E1AB96EA4C5E7ECEC7A646AE975_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_107, L_109, L_110, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_111 = L_107;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_112 = { reinterpret_cast<intptr_t> (BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_0_0_0_var) };
|
|
Type_t* L_113;
|
|
L_113 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_112, NULL);
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_114 = (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*)il2cpp_codegen_object_new(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C_il2cpp_TypeInfo_var);
|
|
ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25(L_114, NULL, (intptr_t)((void*)DebugLogConsole_ParseBoundsInt_m530D51F98125A1FBAA8A063D1A3085FDA6CF0F7C_RuntimeMethod_var), NULL);
|
|
Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970(L_111, L_113, L_114, Dictionary_2_Add_m140015A2B45723C1DDA706896AA259342565A970_RuntimeMethod_var);
|
|
((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___parseFunctions_2 = L_111;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___parseFunctions_2), (void*)L_111);
|
|
// private static readonly Dictionary<Type, string> typeReadableNames = new Dictionary<Type, string>()
|
|
// {
|
|
// { typeof( string ), "String" },
|
|
// { typeof( bool ), "Boolean" },
|
|
// { typeof( int ), "Integer" },
|
|
// { typeof( uint ), "Unsigned Integer" },
|
|
// { typeof( long ), "Long" },
|
|
// { typeof( ulong ), "Unsigned Long" },
|
|
// { typeof( byte ), "Byte" },
|
|
// { typeof( sbyte ), "Short Byte" },
|
|
// { typeof( short ), "Short" },
|
|
// { typeof( ushort ), "Unsigned Short" },
|
|
// { typeof( char ), "Char" },
|
|
// { typeof( float ), "Float" },
|
|
// { typeof( double ), "Double" },
|
|
// { typeof( decimal ), "Decimal" }
|
|
// };
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_115 = (Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE*)il2cpp_codegen_object_new(Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_mFAF23CD29002CAB23492293F8C8B56962DE7A0B6(L_115, Dictionary_2__ctor_mFAF23CD29002CAB23492293F8C8B56962DE7A0B6_RuntimeMethod_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_116 = L_115;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_117 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
|
|
Type_t* L_118;
|
|
L_118 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_117, NULL);
|
|
Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC(L_116, L_118, _stringLiteralBCA7DDD073AD5DB21CC612ADB1833BF1A5D32261, Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_119 = L_116;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_120 = { reinterpret_cast<intptr_t> (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) };
|
|
Type_t* L_121;
|
|
L_121 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_120, NULL);
|
|
Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC(L_119, L_121, _stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06, Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_122 = L_119;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_123 = { reinterpret_cast<intptr_t> (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) };
|
|
Type_t* L_124;
|
|
L_124 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_123, NULL);
|
|
Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC(L_122, L_124, _stringLiteralE566E6091771397A8847DE9F0E5AF31E5E383CA7, Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_125 = L_122;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_126 = { reinterpret_cast<intptr_t> (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) };
|
|
Type_t* L_127;
|
|
L_127 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_126, NULL);
|
|
Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC(L_125, L_127, _stringLiteral79CEC13F0CDE1D8B6306BE0D3B47994AC53C6D3C, Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_128 = L_125;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_129 = { reinterpret_cast<intptr_t> (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) };
|
|
Type_t* L_130;
|
|
L_130 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_129, NULL);
|
|
Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC(L_128, L_130, _stringLiteral8F10756DCEBC5D3850F738F90B6A677D8FF1459D, Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_131 = L_128;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_132 = { reinterpret_cast<intptr_t> (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) };
|
|
Type_t* L_133;
|
|
L_133 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_132, NULL);
|
|
Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC(L_131, L_133, _stringLiteralD99ED39183CCE9D128A0FFF60FBEF9678C00D6F3, Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_134 = L_131;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_135 = { reinterpret_cast<intptr_t> (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) };
|
|
Type_t* L_136;
|
|
L_136 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_135, NULL);
|
|
Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC(L_134, L_136, _stringLiteral072BA90B274B502615639084DC3D7FCC63407A24, Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_137 = L_134;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_138 = { reinterpret_cast<intptr_t> (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) };
|
|
Type_t* L_139;
|
|
L_139 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_138, NULL);
|
|
Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC(L_137, L_139, _stringLiteral353C4741109DDADB95190E7F01B8D87E35D1673B, Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_140 = L_137;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_141 = { reinterpret_cast<intptr_t> (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) };
|
|
Type_t* L_142;
|
|
L_142 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_141, NULL);
|
|
Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC(L_140, L_142, _stringLiteral685AAD315643CB18DF2FB0FDBD65960F704C6706, Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_143 = L_140;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_144 = { reinterpret_cast<intptr_t> (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) };
|
|
Type_t* L_145;
|
|
L_145 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_144, NULL);
|
|
Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC(L_143, L_145, _stringLiteral4E6A14ED6BDC6C214624E6D07B51CEA65B43C35B, Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_146 = L_143;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_147 = { reinterpret_cast<intptr_t> (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) };
|
|
Type_t* L_148;
|
|
L_148 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_147, NULL);
|
|
Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC(L_146, L_148, _stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E, Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_149 = L_146;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_150 = { reinterpret_cast<intptr_t> (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var) };
|
|
Type_t* L_151;
|
|
L_151 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_150, NULL);
|
|
Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC(L_149, L_151, _stringLiteral6F1975603AAE377B592571C48C0494F1FE06976C, Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_152 = L_149;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_153 = { reinterpret_cast<intptr_t> (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var) };
|
|
Type_t* L_154;
|
|
L_154 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_153, NULL);
|
|
Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC(L_152, L_154, _stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7, Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_155 = L_152;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_156 = { reinterpret_cast<intptr_t> (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) };
|
|
Type_t* L_157;
|
|
L_157 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_156, NULL);
|
|
Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC(L_155, L_157, _stringLiteral5B41A58E45555854EC2026B9B5F8243AA9E7ED4B, Dictionary_2_Add_m7371147962E855B8E8BE002A226B0EE34E37B0CC_RuntimeMethod_var);
|
|
((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___typeReadableNames_3 = L_155;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___typeReadableNames_3), (void*)L_155);
|
|
// private static readonly List<string> commandArguments = new List<string>( 8 );
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_158 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m1A062F45FE926079CE2D4FD38A3BF15F7AEB89AF(L_158, 8, List_1__ctor_m1A062F45FE926079CE2D4FD38A3BF15F7AEB89AF_RuntimeMethod_var);
|
|
((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___commandArguments_4 = L_158;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___commandArguments_4), (void*)L_158);
|
|
// private static readonly string[] inputDelimiters = new string[] { "\"\"", "''", "{}", "()", "[]" };
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_159 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)5);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_160 = L_159;
|
|
ArrayElementTypeCheck (L_160, _stringLiteralFF4B33BFCEDB53E4FD45237E05792EBB05A408D0);
|
|
(L_160)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralFF4B33BFCEDB53E4FD45237E05792EBB05A408D0);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_161 = L_160;
|
|
ArrayElementTypeCheck (L_161, _stringLiteral6855F4EC54AF75D6CAC8881791FBD2C863F2C1C9);
|
|
(L_161)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral6855F4EC54AF75D6CAC8881791FBD2C863F2C1C9);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_162 = L_161;
|
|
ArrayElementTypeCheck (L_162, _stringLiteral9ED931619E39F59A8520C1E3B03FEA2E9A56FB60);
|
|
(L_162)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral9ED931619E39F59A8520C1E3B03FEA2E9A56FB60);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_163 = L_162;
|
|
ArrayElementTypeCheck (L_163, _stringLiteral622F5FF68A93093A1D312703FF92713F8BF2C946);
|
|
(L_163)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral622F5FF68A93093A1D312703FF92713F8BF2C946);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_164 = L_163;
|
|
ArrayElementTypeCheck (L_164, _stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6);
|
|
(L_164)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6);
|
|
((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___inputDelimiters_5 = L_164;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___inputDelimiters_5), (void*)L_164);
|
|
// private static readonly CompareInfo caseInsensitiveComparer = new CultureInfo( "en-US" ).CompareInfo;
|
|
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_165 = (CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0*)il2cpp_codegen_object_new(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
|
|
CultureInfo__ctor_m13C68B1478A97FC5FA9653C46B2C42DA01573FFB(L_165, _stringLiteral3A971881AF6B7B211E34707E857DEC5F36487877, NULL);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_166;
|
|
L_166 = VirtualFuncInvoker0< CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_165);
|
|
((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6 = L_166;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6), (void*)L_166);
|
|
// AddCommand( "help", "Prints all commands", LogAllCommands );
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_167 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_167, NULL, (intptr_t)((void*)DebugLogConsole_LogAllCommands_m978E37DE77B64B1BFEBEAE76A009FC8B6869E1EC_RuntimeMethod_var), NULL);
|
|
DebugLogConsole_AddCommand_m44EA1C3BC10905406AAED2B25AC713C0E076A70F(_stringLiteral9743367EF85DF9405A17FA9B3523524E8EC33B5E, _stringLiteral92268EB187B60388ABDE4FB41CAD03848C3E99A9, L_167, NULL);
|
|
// AddCommand<string>( "help", "Prints all matching commands", LogAllCommandsWithName );
|
|
Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A* L_168 = (Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A*)il2cpp_codegen_object_new(Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A_il2cpp_TypeInfo_var);
|
|
Action_1__ctor_m9DC2953C55C4D7D4B7BEFE03D84DA1F9362D652C(L_168, NULL, (intptr_t)((void*)DebugLogConsole_LogAllCommandsWithName_mE66120EA06927650B2D14A4DC9291C9FD34F4B2D_RuntimeMethod_var), NULL);
|
|
DebugLogConsole_AddCommand_TisString_t_m56B48A18D995EDA3186C3ABCA826924E82120333(_stringLiteral9743367EF85DF9405A17FA9B3523524E8EC33B5E, _stringLiteralFD4AADFE240628ED07070E31A6FAC66EE94C9452, L_168, DebugLogConsole_AddCommand_TisString_t_m56B48A18D995EDA3186C3ABCA826924E82120333_RuntimeMethod_var);
|
|
// AddCommand( "sysinfo", "Prints system information", LogSystemInfo );
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_169 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_169, NULL, (intptr_t)((void*)DebugLogConsole_LogSystemInfo_mB8DFBFE050EC55468EDF6106D49D060C5E2AB622_RuntimeMethod_var), NULL);
|
|
DebugLogConsole_AddCommand_m44EA1C3BC10905406AAED2B25AC713C0E076A70F(_stringLiteral195EE01589A1BFBA8BC53B99BC20604632BE0374, _stringLiteral38BAB054DA9F959809102ADA08F0F63973ECA525, L_169, NULL);
|
|
// string[] ignoredAssemblies = new string[]
|
|
// {
|
|
// "Unity",
|
|
// "System",
|
|
// "Mono.",
|
|
// "mscorlib",
|
|
// "netstandard",
|
|
// "TextMeshPro",
|
|
// "Microsoft.GeneratedCode",
|
|
// "I18N",
|
|
// "Boo.",
|
|
// "UnityScript.",
|
|
// "ICSharpCode.",
|
|
// "ExCSS.Unity",
|
|
// #if UNITY_EDITOR
|
|
// "Assembly-CSharp-Editor",
|
|
// "Assembly-UnityScript-Editor",
|
|
// "nunit.",
|
|
// "SyntaxTree.",
|
|
// "AssetStoreTools",
|
|
// #endif
|
|
// };
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_170 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)12));
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_171 = L_170;
|
|
ArrayElementTypeCheck (L_171, _stringLiteral9AC36C3A3EC82C292FD998FA2F3C73EFBC571F3A);
|
|
(L_171)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral9AC36C3A3EC82C292FD998FA2F3C73EFBC571F3A);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_172 = L_171;
|
|
ArrayElementTypeCheck (L_172, _stringLiteral5FF374709F3F171D980E4E8BEA80A7954877FE64);
|
|
(L_172)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral5FF374709F3F171D980E4E8BEA80A7954877FE64);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_173 = L_172;
|
|
ArrayElementTypeCheck (L_173, _stringLiteralE5AE18385283D6C5462AF087AEC09F611FA4015E);
|
|
(L_173)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralE5AE18385283D6C5462AF087AEC09F611FA4015E);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_174 = L_173;
|
|
ArrayElementTypeCheck (L_174, _stringLiteral848A97F7360A08955AB3B08A739AFC04D590A51A);
|
|
(L_174)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral848A97F7360A08955AB3B08A739AFC04D590A51A);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_175 = L_174;
|
|
ArrayElementTypeCheck (L_175, _stringLiteral6D6D8E86DBD851D1A807A44DC76915458B0CA61A);
|
|
(L_175)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral6D6D8E86DBD851D1A807A44DC76915458B0CA61A);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_176 = L_175;
|
|
ArrayElementTypeCheck (L_176, _stringLiteralC3A6C9992A21401C104E6402B6589EB9CB00BE43);
|
|
(L_176)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralC3A6C9992A21401C104E6402B6589EB9CB00BE43);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_177 = L_176;
|
|
ArrayElementTypeCheck (L_177, _stringLiteralA39CC7AB32E876B0A2453058CC6C522CAC51AB69);
|
|
(L_177)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteralA39CC7AB32E876B0A2453058CC6C522CAC51AB69);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_178 = L_177;
|
|
ArrayElementTypeCheck (L_178, _stringLiteralD4CE3559A2E2973C19617C23E21CA20E9DAD861A);
|
|
(L_178)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteralD4CE3559A2E2973C19617C23E21CA20E9DAD861A);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_179 = L_178;
|
|
ArrayElementTypeCheck (L_179, _stringLiteralAB6E4B33D18D43371E9CAA8B5F1BAB030A6A6C42);
|
|
(L_179)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteralAB6E4B33D18D43371E9CAA8B5F1BAB030A6A6C42);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_180 = L_179;
|
|
ArrayElementTypeCheck (L_180, _stringLiteralDE2BB7271C3ADD797F43A7DAE3B1E1D64468A348);
|
|
(L_180)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteralDE2BB7271C3ADD797F43A7DAE3B1E1D64468A348);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_181 = L_180;
|
|
ArrayElementTypeCheck (L_181, _stringLiteral90F319F9C4138C3D70C6BA6CE014489F79A75843);
|
|
(L_181)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral90F319F9C4138C3D70C6BA6CE014489F79A75843);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_182 = L_181;
|
|
ArrayElementTypeCheck (L_182, _stringLiteralD3617E11EB8FFA6578B5DE0FBB98C4C20AA8378C);
|
|
(L_182)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteralD3617E11EB8FFA6578B5DE0FBB98C4C20AA8378C);
|
|
V_0 = L_182;
|
|
// foreach( Assembly assembly in AppDomain.CurrentDomain.GetAssemblies() )
|
|
AppDomain_tFF7010567CBABAEEA7BB19835234D6485E16AD5F* L_183;
|
|
L_183 = AppDomain_get_CurrentDomain_m38D86FD149C2C62AD0FAB0159D70ECB13D841667(NULL);
|
|
AssemblyU5BU5D_t97B7B4E3FD4DA4944A4BFAA4DC484EA7D990B339* L_184;
|
|
L_184 = AppDomain_GetAssemblies_m8EE862747CADACB8CC0BDDBD8CA7DAD7BD9D9249(L_183, NULL);
|
|
V_1 = L_184;
|
|
V_2 = 0;
|
|
goto IL_069a;
|
|
}
|
|
|
|
IL_057f:
|
|
{
|
|
// foreach( Assembly assembly in AppDomain.CurrentDomain.GetAssemblies() )
|
|
AssemblyU5BU5D_t97B7B4E3FD4DA4944A4BFAA4DC484EA7D990B339* L_185 = V_1;
|
|
int32_t L_186 = V_2;
|
|
int32_t L_187 = L_186;
|
|
Assembly_t* L_188 = (L_185)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_187));
|
|
V_3 = L_188;
|
|
// if( assembly.IsDynamic )
|
|
Assembly_t* L_189 = V_3;
|
|
bool L_190;
|
|
L_190 = VirtualFuncInvoker0< bool >::Invoke(23 /* System.Boolean System.Reflection.Assembly::get_IsDynamic() */, L_189);
|
|
if (L_190)
|
|
{
|
|
goto IL_0696;
|
|
}
|
|
}
|
|
{
|
|
// string assemblyName = assembly.GetName().Name;
|
|
Assembly_t* L_191 = V_3;
|
|
AssemblyName_t555F1570F523D87D970C6E7F27B1B44C83EADDD2* L_192;
|
|
L_192 = VirtualFuncInvoker0< AssemblyName_t555F1570F523D87D970C6E7F27B1B44C83EADDD2* >::Invoke(18 /* System.Reflection.AssemblyName System.Reflection.Assembly::GetName() */, L_191);
|
|
String_t* L_193;
|
|
L_193 = AssemblyName_get_Name_m7899B9B3F289EEBAF62AEAB51D1CA91DA92C4E6A_inline(L_192, NULL);
|
|
V_4 = L_193;
|
|
// bool ignoreAssembly = false;
|
|
V_5 = (bool)0;
|
|
// for( int i = 0; i < ignoredAssemblies.Length; i++ )
|
|
V_6 = 0;
|
|
goto IL_05c1;
|
|
}
|
|
|
|
IL_05a3:
|
|
{
|
|
// if( caseInsensitiveComparer.IsPrefix( assemblyName, ignoredAssemblies[i], CompareOptions.IgnoreCase ) )
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_194 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
String_t* L_195 = V_4;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_196 = V_0;
|
|
int32_t L_197 = V_6;
|
|
int32_t L_198 = L_197;
|
|
String_t* L_199 = (L_196)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_198));
|
|
bool L_200;
|
|
L_200 = VirtualFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(9 /* System.Boolean System.Globalization.CompareInfo::IsPrefix(System.String,System.String,System.Globalization.CompareOptions) */, L_194, L_195, L_199, 1);
|
|
if (!L_200)
|
|
{
|
|
goto IL_05bb;
|
|
}
|
|
}
|
|
{
|
|
// ignoreAssembly = true;
|
|
V_5 = (bool)1;
|
|
// break;
|
|
goto IL_05c8;
|
|
}
|
|
|
|
IL_05bb:
|
|
{
|
|
// for( int i = 0; i < ignoredAssemblies.Length; i++ )
|
|
int32_t L_201 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_201, 1));
|
|
}
|
|
|
|
IL_05c1:
|
|
{
|
|
// for( int i = 0; i < ignoredAssemblies.Length; i++ )
|
|
int32_t L_202 = V_6;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_203 = V_0;
|
|
if ((((int32_t)L_202) < ((int32_t)((int32_t)(((RuntimeArray*)L_203)->max_length)))))
|
|
{
|
|
goto IL_05a3;
|
|
}
|
|
}
|
|
|
|
IL_05c8:
|
|
{
|
|
// if( ignoreAssembly )
|
|
bool L_204 = V_5;
|
|
if (L_204)
|
|
{
|
|
goto IL_0696;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
// foreach( Type type in assembly.GetExportedTypes() )
|
|
Assembly_t* L_205 = V_3;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_206;
|
|
L_206 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(15 /* System.Type[] System.Reflection.Assembly::GetExportedTypes() */, L_205);
|
|
V_7 = L_206;
|
|
V_8 = 0;
|
|
goto IL_0662_1;
|
|
}
|
|
|
|
IL_05e0_1:
|
|
{
|
|
// foreach( Type type in assembly.GetExportedTypes() )
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_207 = V_7;
|
|
int32_t L_208 = V_8;
|
|
int32_t L_209 = L_208;
|
|
Type_t* L_210 = (L_207)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_209));
|
|
// foreach( MethodInfo method in type.GetMethods( BindingFlags.Static | BindingFlags.Public | BindingFlags.DeclaredOnly ) )
|
|
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* L_211;
|
|
L_211 = VirtualFuncInvoker1< MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265*, int32_t >::Invoke(96 /* System.Reflection.MethodInfo[] System.Type::GetMethods(System.Reflection.BindingFlags) */, L_210, ((int32_t)26));
|
|
V_9 = L_211;
|
|
V_10 = 0;
|
|
goto IL_0654_1;
|
|
}
|
|
|
|
IL_05f3_1:
|
|
{
|
|
// foreach( MethodInfo method in type.GetMethods( BindingFlags.Static | BindingFlags.Public | BindingFlags.DeclaredOnly ) )
|
|
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* L_212 = V_9;
|
|
int32_t L_213 = V_10;
|
|
int32_t L_214 = L_213;
|
|
MethodInfo_t* L_215 = (L_212)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_214));
|
|
V_11 = L_215;
|
|
// foreach( object attribute in method.GetCustomAttributes( typeof( ConsoleMethodAttribute ), false ) )
|
|
MethodInfo_t* L_216 = V_11;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_217 = { reinterpret_cast<intptr_t> (ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_218;
|
|
L_218 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_217, NULL);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_219;
|
|
L_219 = VirtualFuncInvoker2< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Type_t*, bool >::Invoke(13 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_216, L_218, (bool)0);
|
|
V_12 = L_219;
|
|
V_13 = 0;
|
|
goto IL_0646_1;
|
|
}
|
|
|
|
IL_0613_1:
|
|
{
|
|
// foreach( object attribute in method.GetCustomAttributes( typeof( ConsoleMethodAttribute ), false ) )
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_220 = V_12;
|
|
int32_t L_221 = V_13;
|
|
int32_t L_222 = L_221;
|
|
RuntimeObject* L_223 = (L_220)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_222));
|
|
// ConsoleMethodAttribute consoleMethod = attribute as ConsoleMethodAttribute;
|
|
V_14 = ((ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734*)IsInstClass((RuntimeObject*)L_223, ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734_il2cpp_TypeInfo_var));
|
|
// if( consoleMethod != null )
|
|
ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734* L_224 = V_14;
|
|
if (!L_224)
|
|
{
|
|
goto IL_0640_1;
|
|
}
|
|
}
|
|
{
|
|
// AddCommand( consoleMethod.Command, consoleMethod.Description, method, null, consoleMethod.ParameterNames );
|
|
ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734* L_225 = V_14;
|
|
String_t* L_226;
|
|
L_226 = ConsoleMethodAttribute_get_Command_m5891B27830AD8D24C0BEC16F9B30F440EBB49E82_inline(L_225, NULL);
|
|
ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734* L_227 = V_14;
|
|
String_t* L_228;
|
|
L_228 = ConsoleMethodAttribute_get_Description_mFC1AAFE7BDA0B06A1C7AB0C9B02FD228177F7F5E_inline(L_227, NULL);
|
|
MethodInfo_t* L_229 = V_11;
|
|
ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734* L_230 = V_14;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_231;
|
|
L_231 = ConsoleMethodAttribute_get_ParameterNames_m254994229F47A4A9C4E8D8AE92AB305A8B7FCCEB_inline(L_230, NULL);
|
|
DebugLogConsole_AddCommand_m3D56A91D2615526245C2996E0D97AE636B6EDFAB(L_226, L_228, L_229, NULL, L_231, NULL);
|
|
}
|
|
|
|
IL_0640_1:
|
|
{
|
|
int32_t L_232 = V_13;
|
|
V_13 = ((int32_t)il2cpp_codegen_add(L_232, 1));
|
|
}
|
|
|
|
IL_0646_1:
|
|
{
|
|
// foreach( object attribute in method.GetCustomAttributes( typeof( ConsoleMethodAttribute ), false ) )
|
|
int32_t L_233 = V_13;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_234 = V_12;
|
|
if ((((int32_t)L_233) < ((int32_t)((int32_t)(((RuntimeArray*)L_234)->max_length)))))
|
|
{
|
|
goto IL_0613_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_235 = V_10;
|
|
V_10 = ((int32_t)il2cpp_codegen_add(L_235, 1));
|
|
}
|
|
|
|
IL_0654_1:
|
|
{
|
|
// foreach( MethodInfo method in type.GetMethods( BindingFlags.Static | BindingFlags.Public | BindingFlags.DeclaredOnly ) )
|
|
int32_t L_236 = V_10;
|
|
MethodInfoU5BU5D_tDF3670604A0AECF814A0B0BA09B91FBF0D6A3265* L_237 = V_9;
|
|
if ((((int32_t)L_236) < ((int32_t)((int32_t)(((RuntimeArray*)L_237)->max_length)))))
|
|
{
|
|
goto IL_05f3_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_238 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_238, 1));
|
|
}
|
|
|
|
IL_0662_1:
|
|
{
|
|
// foreach( Type type in assembly.GetExportedTypes() )
|
|
int32_t L_239 = V_8;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_240 = V_7;
|
|
if ((((int32_t)L_239) < ((int32_t)((int32_t)(((RuntimeArray*)L_240)->max_length)))))
|
|
{
|
|
goto IL_05e0_1;
|
|
}
|
|
}
|
|
{
|
|
// }
|
|
goto IL_0696;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_066f;
|
|
}
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FileNotFoundException_t17F1B49AD996E4A60C87C7ADC9D3A25EB5808A9A_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0672;
|
|
}
|
|
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_0675;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_066f:
|
|
{// begin catch(System.NotSupportedException)
|
|
// catch( NotSupportedException ) { }
|
|
// catch( NotSupportedException ) { }
|
|
IL2CPP_POP_ACTIVE_EXCEPTION();
|
|
goto IL_0696;
|
|
}// end catch (depth: 1)
|
|
|
|
CATCH_0672:
|
|
{// begin catch(System.IO.FileNotFoundException)
|
|
// catch( System.IO.FileNotFoundException ) { }
|
|
// catch( System.IO.FileNotFoundException ) { }
|
|
IL2CPP_POP_ACTIVE_EXCEPTION();
|
|
goto IL_0696;
|
|
}// end catch (depth: 1)
|
|
|
|
CATCH_0675:
|
|
{// begin catch(System.Exception)
|
|
// catch( Exception e )
|
|
V_15 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
|
|
// Debug.LogError( "Couldn't search assembly for [ConsoleMethod] attributes: " + assemblyName + "\n" + e.ToString() );
|
|
String_t* L_241 = V_4;
|
|
Exception_t* L_242 = V_15;
|
|
String_t* L_243;
|
|
L_243 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_242);
|
|
String_t* L_244;
|
|
L_244 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4289EA0CA6C1D59E9F94A1B6A8BCCF5BAA7F3613)), L_241, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD)), L_243, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(L_244, NULL);
|
|
// }
|
|
IL2CPP_POP_ACTIVE_EXCEPTION();
|
|
goto IL_0696;
|
|
}// end catch (depth: 1)
|
|
|
|
IL_0696:
|
|
{
|
|
int32_t L_245 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_245, 1));
|
|
}
|
|
|
|
IL_069a:
|
|
{
|
|
// foreach( Assembly assembly in AppDomain.CurrentDomain.GetAssemblies() )
|
|
int32_t L_246 = V_2;
|
|
AssemblyU5BU5D_t97B7B4E3FD4DA4944A4BFAA4DC484EA7D990B339* L_247 = V_1;
|
|
if ((((int32_t)L_246) < ((int32_t)((int32_t)(((RuntimeArray*)L_247)->max_length)))))
|
|
{
|
|
goto IL_057f;
|
|
}
|
|
}
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::LogAllCommands()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_LogAllCommands_m978E37DE77B64B1BFEBEAE76A009FC8B6869E1EC (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral313E0A856EB7575E1195D830714F903CCE78FE20);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8CD9FA2586F8BF6FD431CC3EA8B8B1EAFB013099);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
StringBuilder_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
// int length = 25;
|
|
V_0 = ((int32_t)25);
|
|
// for( int i = 0; i < methods.Count; i++ )
|
|
V_2 = 0;
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
// if( methods[i].IsValid() )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_0 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_1 = V_2;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_2;
|
|
L_2 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_0, L_1, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
bool L_3;
|
|
L_3 = ConsoleMethodInfo_IsValid_m9F0346F09F2E31E1F774FC741BD75AEE58BF18D7(L_2, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
// length += methods[i].signature.Length + 7;
|
|
int32_t L_4 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_5 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_6 = V_2;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_7;
|
|
L_7 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_5, L_6, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_8 = L_7->___signature_4;
|
|
int32_t L_9;
|
|
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_4, ((int32_t)il2cpp_codegen_add(L_9, 7))));
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
// for( int i = 0; i < methods.Count; i++ )
|
|
int32_t L_10 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
// for( int i = 0; i < methods.Count; i++ )
|
|
int32_t L_11 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_12 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_13;
|
|
L_13 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_12, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_11) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
// StringBuilder stringBuilder = new StringBuilder( length );
|
|
int32_t L_14 = V_0;
|
|
StringBuilder_t* L_15 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_15, L_14, NULL);
|
|
V_1 = L_15;
|
|
// stringBuilder.Append( "Available commands:" );
|
|
StringBuilder_t* L_16 = V_1;
|
|
StringBuilder_t* L_17;
|
|
L_17 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_16, _stringLiteral8CD9FA2586F8BF6FD431CC3EA8B8B1EAFB013099, NULL);
|
|
// for( int i = 0; i < methods.Count; i++ )
|
|
V_3 = 0;
|
|
goto IL_0092;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
// if( methods[i].IsValid() )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_18 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_19 = V_3;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_20;
|
|
L_20 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_18, L_19, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
bool L_21;
|
|
L_21 = ConsoleMethodInfo_IsValid_m9F0346F09F2E31E1F774FC741BD75AEE58BF18D7(L_20, NULL);
|
|
if (!L_21)
|
|
{
|
|
goto IL_008e;
|
|
}
|
|
}
|
|
{
|
|
// stringBuilder.Append( "\n - " ).Append( methods[i].signature );
|
|
StringBuilder_t* L_22 = V_1;
|
|
StringBuilder_t* L_23;
|
|
L_23 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_22, _stringLiteral313E0A856EB7575E1195D830714F903CCE78FE20, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_24 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_25 = V_3;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_26;
|
|
L_26 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_24, L_25, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_27 = L_26->___signature_4;
|
|
StringBuilder_t* L_28;
|
|
L_28 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_23, L_27, NULL);
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
// for( int i = 0; i < methods.Count; i++ )
|
|
int32_t L_29 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_29, 1));
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
// for( int i = 0; i < methods.Count; i++ )
|
|
int32_t L_30 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_31 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_32;
|
|
L_32 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_31, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_30) < ((int32_t)L_32)))
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
// Debug.Log( stringBuilder.ToString() );
|
|
StringBuilder_t* L_33 = V_1;
|
|
String_t* L_34;
|
|
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_33);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Log_m87A9A3C761FF5C43ED8A53B16190A53D08F818BB(L_34, NULL);
|
|
// if( DebugLogManager.Instance )
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_35;
|
|
L_35 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_36;
|
|
L_36 = Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A(L_35, NULL);
|
|
if (!L_36)
|
|
{
|
|
goto IL_00ca;
|
|
}
|
|
}
|
|
{
|
|
// DebugLogManager.Instance.ExpandLatestPendingLog();
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_37;
|
|
L_37 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
DebugLogManager_ExpandLatestPendingLog_m3049C9438441A4BC6BBF827C416CD88D5D2D597E(L_37, NULL);
|
|
// DebugLogManager.Instance.StripStackTraceFromLatestPendingLog();
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_38;
|
|
L_38 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
DebugLogManager_StripStackTraceFromLatestPendingLog_m66AE6A25F37E381D549C2AD6372B2FDF871F2A67(L_38, NULL);
|
|
}
|
|
|
|
IL_00ca:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::LogAllCommandsWithName(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_LogAllCommandsWithName_mE66120EA06927650B2D14A4DC9291C9FD34F4B2D (String_t* ___commandName0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m77380B71C791340B3330CF6AD09FE5256DA675CD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral313E0A856EB7575E1195D830714F903CCE78FE20);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3B9AF2352AA53746DECBC93E6788E1DC58F70219);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC12B937AA1BFC0EC393DC0DED57F5DE36A394386);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
StringBuilder_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
// matchingMethods.Clear();
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_0 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
List_1_Clear_m77380B71C791340B3330CF6AD09FE5256DA675CD_inline(L_0, List_1_Clear_m77380B71C791340B3330CF6AD09FE5256DA675CD_RuntimeMethod_var);
|
|
// FindCommands( commandName, false, matchingMethods );
|
|
String_t* L_1 = ___commandName0;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_2 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
DebugLogConsole_FindCommands_m33C4DDBF9B312C69EED77A268C8BBFB218F51146(L_1, (bool)0, L_2, NULL);
|
|
// if( matchingMethods.Count == 0 )
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_3 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
int32_t L_4;
|
|
L_4 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_3, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if (L_4)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
// FindCommands( commandName, true, matchingMethods );
|
|
String_t* L_5 = ___commandName0;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_6 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
DebugLogConsole_FindCommands_m33C4DDBF9B312C69EED77A268C8BBFB218F51146(L_5, (bool)1, L_6, NULL);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
// if( matchingMethods.Count == 0 )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_7 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
int32_t L_8;
|
|
L_8 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_7, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if (L_8)
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
// Debug.LogWarning( string.Concat( "ERROR: can't find command '", commandName, "'" ) );
|
|
String_t* L_9 = ___commandName0;
|
|
String_t* L_10;
|
|
L_10 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteralC12B937AA1BFC0EC393DC0DED57F5DE36A394386, L_9, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(L_10, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
// int commandsLength = 25;
|
|
V_0 = ((int32_t)25);
|
|
// for( int i = 0; i < matchingMethods.Count; i++ )
|
|
V_2 = 0;
|
|
goto IL_0075;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
// commandsLength += matchingMethods[i].signature.Length + 7;
|
|
int32_t L_11 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_12 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
int32_t L_13 = V_2;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_14;
|
|
L_14 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_12, L_13, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_15 = L_14->___signature_4;
|
|
int32_t L_16;
|
|
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_11, ((int32_t)il2cpp_codegen_add(L_16, 7))));
|
|
// for( int i = 0; i < matchingMethods.Count; i++ )
|
|
int32_t L_17 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
// for( int i = 0; i < matchingMethods.Count; i++ )
|
|
int32_t L_18 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_19 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
int32_t L_20;
|
|
L_20 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_19, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_18) < ((int32_t)L_20)))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
// StringBuilder stringBuilder = new StringBuilder( commandsLength );
|
|
int32_t L_21 = V_0;
|
|
StringBuilder_t* L_22 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_22, L_21, NULL);
|
|
V_1 = L_22;
|
|
// stringBuilder.Append( "Matching commands:" );
|
|
StringBuilder_t* L_23 = V_1;
|
|
StringBuilder_t* L_24;
|
|
L_24 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_23, _stringLiteral3B9AF2352AA53746DECBC93E6788E1DC58F70219, NULL);
|
|
// for( int i = 0; i < matchingMethods.Count; i++ )
|
|
V_3 = 0;
|
|
goto IL_00be;
|
|
}
|
|
|
|
IL_0099:
|
|
{
|
|
// stringBuilder.Append( "\n - " ).Append( matchingMethods[i].signature );
|
|
StringBuilder_t* L_25 = V_1;
|
|
StringBuilder_t* L_26;
|
|
L_26 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_25, _stringLiteral313E0A856EB7575E1195D830714F903CCE78FE20, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_27 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
int32_t L_28 = V_3;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_29;
|
|
L_29 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_27, L_28, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_30 = L_29->___signature_4;
|
|
StringBuilder_t* L_31;
|
|
L_31 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_26, L_30, NULL);
|
|
// for( int i = 0; i < matchingMethods.Count; i++ )
|
|
int32_t L_32 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
}
|
|
|
|
IL_00be:
|
|
{
|
|
// for( int i = 0; i < matchingMethods.Count; i++ )
|
|
int32_t L_33 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_34 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
int32_t L_35;
|
|
L_35 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_34, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_33) < ((int32_t)L_35)))
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
}
|
|
{
|
|
// Debug.Log( stringBuilder.ToString() );
|
|
StringBuilder_t* L_36 = V_1;
|
|
String_t* L_37;
|
|
L_37 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_36);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Log_m87A9A3C761FF5C43ED8A53B16190A53D08F818BB(L_37, NULL);
|
|
// if( DebugLogManager.Instance )
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_38;
|
|
L_38 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_39;
|
|
L_39 = Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A(L_38, NULL);
|
|
if (!L_39)
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
// DebugLogManager.Instance.ExpandLatestPendingLog();
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_40;
|
|
L_40 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
DebugLogManager_ExpandLatestPendingLog_m3049C9438441A4BC6BBF827C416CD88D5D2D597E(L_40, NULL);
|
|
// DebugLogManager.Instance.StripStackTraceFromLatestPendingLog();
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_41;
|
|
L_41 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
DebugLogManager_StripStackTraceFromLatestPendingLog_m66AE6A25F37E381D549C2AD6372B2FDF871F2A67(L_41, NULL);
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::LogSystemInfo()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_LogSystemInfo_mB8DFBFE050EC55468EDF6106D49D060C5E2AB622 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral00DD22EEB247C3B3BE3F13F0A612FD41C0F445DC);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1BE00BDC62CA306C2DAE88EB0A2832DAB2CD5600);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1CE5E9DC21CEDE83448EC29CF472339E4BF67AED);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral205303C28798C5EA52B9388BE0A95CE13315CB1C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral21B84D4894236A6BCE11E8F3A8448A14FD4DD861);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral242B7D4EF6656C870761A7B42734BD96EC248116);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3A309A93FCF93ECA490284F0B4C22C548CCCEEB8);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3BA5C03AAA09A16B06FCFDAA9B64713B82A9D2E4);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4D11215345B46832ED9FC6C2268FB1340D22A8B3);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5264A12B2224A32D9F3F2C8516A832E29A16F8FE);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral545CB94BC7341B071EE1DF8F30487E957977109E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral593E1A8DF72FB8FFD3904B04C862F736FA2561AF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A071BC7935C1CC6E27700BE27D860C5926D99C0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral73A5AF7F44A99A0DFD7C423DB6151C3F98356BDB);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral96EFDACF4E9C416F491557F2D88D164161ACA045);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9E4FDEF2EDEFAC6252CCFD38B4CBAAED06B28AB0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA05EDDE056ADD32DBD9E3AA37D1C7DA9D817E2AE);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA77F230BE5C829677EF9BDD85B86D074B5371536);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBCA50B04709EAD37B11D1C70844BB22E450AA16E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE3EBCE412B18861E9A01C70A934C049AC0DE244);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD54C0512C5F7B23D31D4A508DDC7D1D90A722C15);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD62FCB67A840E8EF3FF0DEE3206BDC74DD52B720);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD7F909241ECF25B1D55FDC28E3218B13C12BEAB9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB37F2BAE93C1ED89913B8128BE02979A0E704E1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE327053B771914499097898B583411B6D78DA1DE);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF1529E632E7FD599BCDE055FB1A61226F97EC230);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF64BD70CEAFBE476C3DCEE5C17D79CFC7346A14E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFDDC8DE4EE1BCC5393C6C86CB9CD496FC7076771);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFE08003D32C174FE05D37786290DF480267E0A4A);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringBuilder_t* G_B2_0 = NULL;
|
|
StringBuilder_t* G_B2_1 = NULL;
|
|
StringBuilder_t* G_B1_0 = NULL;
|
|
StringBuilder_t* G_B1_1 = NULL;
|
|
String_t* G_B3_0 = NULL;
|
|
StringBuilder_t* G_B3_1 = NULL;
|
|
StringBuilder_t* G_B3_2 = NULL;
|
|
StringBuilder_t* G_B5_0 = NULL;
|
|
StringBuilder_t* G_B5_1 = NULL;
|
|
StringBuilder_t* G_B4_0 = NULL;
|
|
StringBuilder_t* G_B4_1 = NULL;
|
|
String_t* G_B6_0 = NULL;
|
|
StringBuilder_t* G_B6_1 = NULL;
|
|
StringBuilder_t* G_B6_2 = NULL;
|
|
StringBuilder_t* G_B8_0 = NULL;
|
|
StringBuilder_t* G_B8_1 = NULL;
|
|
StringBuilder_t* G_B7_0 = NULL;
|
|
StringBuilder_t* G_B7_1 = NULL;
|
|
String_t* G_B9_0 = NULL;
|
|
StringBuilder_t* G_B9_1 = NULL;
|
|
StringBuilder_t* G_B9_2 = NULL;
|
|
StringBuilder_t* G_B11_0 = NULL;
|
|
StringBuilder_t* G_B11_1 = NULL;
|
|
StringBuilder_t* G_B10_0 = NULL;
|
|
StringBuilder_t* G_B10_1 = NULL;
|
|
String_t* G_B12_0 = NULL;
|
|
StringBuilder_t* G_B12_1 = NULL;
|
|
StringBuilder_t* G_B12_2 = NULL;
|
|
StringBuilder_t* G_B14_0 = NULL;
|
|
StringBuilder_t* G_B14_1 = NULL;
|
|
StringBuilder_t* G_B13_0 = NULL;
|
|
StringBuilder_t* G_B13_1 = NULL;
|
|
String_t* G_B15_0 = NULL;
|
|
StringBuilder_t* G_B15_1 = NULL;
|
|
StringBuilder_t* G_B15_2 = NULL;
|
|
StringBuilder_t* G_B17_0 = NULL;
|
|
StringBuilder_t* G_B17_1 = NULL;
|
|
StringBuilder_t* G_B16_0 = NULL;
|
|
StringBuilder_t* G_B16_1 = NULL;
|
|
String_t* G_B18_0 = NULL;
|
|
StringBuilder_t* G_B18_1 = NULL;
|
|
StringBuilder_t* G_B18_2 = NULL;
|
|
StringBuilder_t* G_B20_0 = NULL;
|
|
StringBuilder_t* G_B20_1 = NULL;
|
|
StringBuilder_t* G_B19_0 = NULL;
|
|
StringBuilder_t* G_B19_1 = NULL;
|
|
String_t* G_B21_0 = NULL;
|
|
StringBuilder_t* G_B21_1 = NULL;
|
|
StringBuilder_t* G_B21_2 = NULL;
|
|
StringBuilder_t* G_B23_0 = NULL;
|
|
StringBuilder_t* G_B23_1 = NULL;
|
|
StringBuilder_t* G_B22_0 = NULL;
|
|
StringBuilder_t* G_B22_1 = NULL;
|
|
String_t* G_B24_0 = NULL;
|
|
StringBuilder_t* G_B24_1 = NULL;
|
|
StringBuilder_t* G_B24_2 = NULL;
|
|
StringBuilder_t* G_B26_0 = NULL;
|
|
StringBuilder_t* G_B26_1 = NULL;
|
|
StringBuilder_t* G_B25_0 = NULL;
|
|
StringBuilder_t* G_B25_1 = NULL;
|
|
String_t* G_B27_0 = NULL;
|
|
StringBuilder_t* G_B27_1 = NULL;
|
|
StringBuilder_t* G_B27_2 = NULL;
|
|
StringBuilder_t* G_B29_0 = NULL;
|
|
StringBuilder_t* G_B29_1 = NULL;
|
|
StringBuilder_t* G_B28_0 = NULL;
|
|
StringBuilder_t* G_B28_1 = NULL;
|
|
String_t* G_B30_0 = NULL;
|
|
StringBuilder_t* G_B30_1 = NULL;
|
|
StringBuilder_t* G_B30_2 = NULL;
|
|
StringBuilder_t* G_B32_0 = NULL;
|
|
StringBuilder_t* G_B32_1 = NULL;
|
|
StringBuilder_t* G_B31_0 = NULL;
|
|
StringBuilder_t* G_B31_1 = NULL;
|
|
String_t* G_B33_0 = NULL;
|
|
StringBuilder_t* G_B33_1 = NULL;
|
|
StringBuilder_t* G_B33_2 = NULL;
|
|
StringBuilder_t* G_B35_0 = NULL;
|
|
StringBuilder_t* G_B35_1 = NULL;
|
|
StringBuilder_t* G_B34_0 = NULL;
|
|
StringBuilder_t* G_B34_1 = NULL;
|
|
String_t* G_B36_0 = NULL;
|
|
StringBuilder_t* G_B36_1 = NULL;
|
|
StringBuilder_t* G_B36_2 = NULL;
|
|
{
|
|
// StringBuilder stringBuilder = new StringBuilder( 1024 );
|
|
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_0, ((int32_t)1024), NULL);
|
|
// stringBuilder.Append( "Rig: " ).AppendSysInfoIfPresent( SystemInfo.deviceModel ).AppendSysInfoIfPresent( SystemInfo.processorType )
|
|
// .AppendSysInfoIfPresent( SystemInfo.systemMemorySize, "MB RAM" ).Append( SystemInfo.processorCount ).Append( " cores\n" );
|
|
StringBuilder_t* L_1 = L_0;
|
|
StringBuilder_t* L_2;
|
|
L_2 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_1, _stringLiteral96EFDACF4E9C416F491557F2D88D164161ACA045, NULL);
|
|
String_t* L_3;
|
|
L_3 = SystemInfo_get_deviceModel_m308FFBADED4BF6CB34C318A0BBDA762D09A7F185(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
StringBuilder_t* L_4;
|
|
L_4 = DebugLogConsole_AppendSysInfoIfPresent_m8348C123A80619F01E787BC5F6DF69577A53B556(L_2, L_3, (String_t*)NULL, NULL);
|
|
String_t* L_5;
|
|
L_5 = SystemInfo_get_processorType_m985AB6C66E69918DF641BC1A589A3F9B4CE76FBE(NULL);
|
|
StringBuilder_t* L_6;
|
|
L_6 = DebugLogConsole_AppendSysInfoIfPresent_m8348C123A80619F01E787BC5F6DF69577A53B556(L_4, L_5, (String_t*)NULL, NULL);
|
|
int32_t L_7;
|
|
L_7 = SystemInfo_get_systemMemorySize_m3BFE40CF5A43FEAB94F5C552A47D04ECD88B771E(NULL);
|
|
StringBuilder_t* L_8;
|
|
L_8 = DebugLogConsole_AppendSysInfoIfPresent_mE33F854781092A2E4B3A1301DADA8A99C9FF1537(L_6, L_7, _stringLiteralD7F909241ECF25B1D55FDC28E3218B13C12BEAB9, NULL);
|
|
int32_t L_9;
|
|
L_9 = SystemInfo_get_processorCount_m6B20AC11AEA09CA06278FBC47BAAEAA01BC7DB55(NULL);
|
|
StringBuilder_t* L_10;
|
|
L_10 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_8, L_9, NULL);
|
|
StringBuilder_t* L_11;
|
|
L_11 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_10, _stringLiteralDB37F2BAE93C1ED89913B8128BE02979A0E704E1, NULL);
|
|
// stringBuilder.Append( "OS: " ).Append( SystemInfo.operatingSystem ).Append( "\n" );
|
|
StringBuilder_t* L_12 = L_1;
|
|
StringBuilder_t* L_13;
|
|
L_13 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_12, _stringLiteralE327053B771914499097898B583411B6D78DA1DE, NULL);
|
|
String_t* L_14;
|
|
L_14 = SystemInfo_get_operatingSystem_m47B20646C221517ACA8F99DE8576BF794AEB6F8D(NULL);
|
|
StringBuilder_t* L_15;
|
|
L_15 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_13, L_14, NULL);
|
|
StringBuilder_t* L_16;
|
|
L_16 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_15, _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD, NULL);
|
|
// stringBuilder.Append( "GPU: " ).Append( SystemInfo.graphicsDeviceName ).Append( " " ).Append( SystemInfo.graphicsMemorySize )
|
|
// .Append( "MB " ).Append( SystemInfo.graphicsDeviceVersion )
|
|
// .Append( SystemInfo.graphicsMultiThreaded ? " multi-threaded\n" : "\n" );
|
|
StringBuilder_t* L_17 = L_12;
|
|
StringBuilder_t* L_18;
|
|
L_18 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_17, _stringLiteral5264A12B2224A32D9F3F2C8516A832E29A16F8FE, NULL);
|
|
String_t* L_19;
|
|
L_19 = SystemInfo_get_graphicsDeviceName_mA3F2E2CA587AD5E212A38AD7D28559FD017451A2(NULL);
|
|
StringBuilder_t* L_20;
|
|
L_20 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_18, L_19, NULL);
|
|
StringBuilder_t* L_21;
|
|
L_21 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_20, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, NULL);
|
|
int32_t L_22;
|
|
L_22 = SystemInfo_get_graphicsMemorySize_m05C833741F5F5C06FE9B4B9F50078A21E9E71ACF(NULL);
|
|
StringBuilder_t* L_23;
|
|
L_23 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_21, L_22, NULL);
|
|
StringBuilder_t* L_24;
|
|
L_24 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_23, _stringLiteralA77F230BE5C829677EF9BDD85B86D074B5371536, NULL);
|
|
String_t* L_25;
|
|
L_25 = SystemInfo_get_graphicsDeviceVersion_m8A157C76206F3CF7D9A3DA6F4BE188A6FEC0769C(NULL);
|
|
StringBuilder_t* L_26;
|
|
L_26 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_24, L_25, NULL);
|
|
bool L_27;
|
|
L_27 = SystemInfo_get_graphicsMultiThreaded_m64EB05A6E20E1128246404063FDD6EC902F06458(NULL);
|
|
G_B1_0 = L_26;
|
|
G_B1_1 = L_17;
|
|
if (L_27)
|
|
{
|
|
G_B2_0 = L_26;
|
|
G_B2_1 = L_17;
|
|
goto IL_00ba;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD;
|
|
G_B3_1 = G_B1_0;
|
|
G_B3_2 = G_B1_1;
|
|
goto IL_00bf;
|
|
}
|
|
|
|
IL_00ba:
|
|
{
|
|
G_B3_0 = _stringLiteral4D11215345B46832ED9FC6C2268FB1340D22A8B3;
|
|
G_B3_1 = G_B2_0;
|
|
G_B3_2 = G_B2_1;
|
|
}
|
|
|
|
IL_00bf:
|
|
{
|
|
StringBuilder_t* L_28;
|
|
L_28 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B3_1, G_B3_0, NULL);
|
|
// stringBuilder.Append( "Data Path: " ).Append( Application.dataPath ).Append( "\n" );
|
|
StringBuilder_t* L_29 = G_B3_2;
|
|
StringBuilder_t* L_30;
|
|
L_30 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_29, _stringLiteralFE08003D32C174FE05D37786290DF480267E0A4A, NULL);
|
|
String_t* L_31;
|
|
L_31 = Application_get_dataPath_m4C8412CBEE4EAAAB6711CC9BEFFA73CEE5BDBEF7(NULL);
|
|
StringBuilder_t* L_32;
|
|
L_32 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_30, L_31, NULL);
|
|
StringBuilder_t* L_33;
|
|
L_33 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_32, _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD, NULL);
|
|
// stringBuilder.Append( "Persistent Data Path: " ).Append( Application.persistentDataPath ).Append( "\n" );
|
|
StringBuilder_t* L_34 = L_29;
|
|
StringBuilder_t* L_35;
|
|
L_35 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_34, _stringLiteral21B84D4894236A6BCE11E8F3A8448A14FD4DD861, NULL);
|
|
String_t* L_36;
|
|
L_36 = Application_get_persistentDataPath_mC58BD3E1A20732E0A536491DBCAE6505B1624399(NULL);
|
|
StringBuilder_t* L_37;
|
|
L_37 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_35, L_36, NULL);
|
|
StringBuilder_t* L_38;
|
|
L_38 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_37, _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD, NULL);
|
|
// stringBuilder.Append( "StreamingAssets Path: " ).Append( Application.streamingAssetsPath ).Append( "\n" );
|
|
StringBuilder_t* L_39 = L_34;
|
|
StringBuilder_t* L_40;
|
|
L_40 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_39, _stringLiteral9E4FDEF2EDEFAC6252CCFD38B4CBAAED06B28AB0, NULL);
|
|
String_t* L_41;
|
|
L_41 = Application_get_streamingAssetsPath_mB904BCD9A7A4F18A52C175DE4A81F5DC3010CDB5(NULL);
|
|
StringBuilder_t* L_42;
|
|
L_42 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_40, L_41, NULL);
|
|
StringBuilder_t* L_43;
|
|
L_43 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_42, _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD, NULL);
|
|
// stringBuilder.Append( "Temporary Cache Path: " ).Append( Application.temporaryCachePath ).Append( "\n" );
|
|
StringBuilder_t* L_44 = L_39;
|
|
StringBuilder_t* L_45;
|
|
L_45 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_44, _stringLiteral73A5AF7F44A99A0DFD7C423DB6151C3F98356BDB, NULL);
|
|
String_t* L_46;
|
|
L_46 = Application_get_temporaryCachePath_mE4483A939988E69570C19F8B31AB9FB17B0FD97D(NULL);
|
|
StringBuilder_t* L_47;
|
|
L_47 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_45, L_46, NULL);
|
|
StringBuilder_t* L_48;
|
|
L_48 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_47, _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD, NULL);
|
|
// stringBuilder.Append( "Device ID: " ).Append( SystemInfo.deviceUniqueIdentifier ).Append( "\n" );
|
|
StringBuilder_t* L_49 = L_44;
|
|
StringBuilder_t* L_50;
|
|
L_50 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_49, _stringLiteral545CB94BC7341B071EE1DF8F30487E957977109E, NULL);
|
|
String_t* L_51;
|
|
L_51 = SystemInfo_get_deviceUniqueIdentifier_m61BA4CB77ADA09730B8B575700D85027EFDB4EFC(NULL);
|
|
StringBuilder_t* L_52;
|
|
L_52 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_50, L_51, NULL);
|
|
StringBuilder_t* L_53;
|
|
L_53 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_52, _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD, NULL);
|
|
// stringBuilder.Append( "Max Texture Size: " ).Append( SystemInfo.maxTextureSize ).Append( "\n" );
|
|
StringBuilder_t* L_54 = L_49;
|
|
StringBuilder_t* L_55;
|
|
L_55 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_54, _stringLiteral3BA5C03AAA09A16B06FCFDAA9B64713B82A9D2E4, NULL);
|
|
int32_t L_56;
|
|
L_56 = SystemInfo_get_maxTextureSize_mEE557C09643222591C6F4D3F561D7A60CD403991(NULL);
|
|
StringBuilder_t* L_57;
|
|
L_57 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_55, L_56, NULL);
|
|
StringBuilder_t* L_58;
|
|
L_58 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_57, _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD, NULL);
|
|
// stringBuilder.Append( "Max Cubemap Size: " ).Append( SystemInfo.maxCubemapSize ).Append( "\n" );
|
|
StringBuilder_t* L_59 = L_54;
|
|
StringBuilder_t* L_60;
|
|
L_60 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_59, _stringLiteralD62FCB67A840E8EF3FF0DEE3206BDC74DD52B720, NULL);
|
|
int32_t L_61;
|
|
L_61 = SystemInfo_get_maxCubemapSize_m10289E5E734D6DD36A0640E3892CB9037A43C8D9(NULL);
|
|
StringBuilder_t* L_62;
|
|
L_62 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_60, L_61, NULL);
|
|
StringBuilder_t* L_63;
|
|
L_63 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_62, _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD, NULL);
|
|
// stringBuilder.Append( "Accelerometer: " ).Append( SystemInfo.supportsAccelerometer ? "supported\n" : "not supported\n" );
|
|
StringBuilder_t* L_64 = L_59;
|
|
StringBuilder_t* L_65;
|
|
L_65 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_64, _stringLiteralF64BD70CEAFBE476C3DCEE5C17D79CFC7346A14E, NULL);
|
|
bool L_66;
|
|
L_66 = SystemInfo_get_supportsAccelerometer_mDD94E914406FBF282CCECEFF79F80A3E5ECC9559(NULL);
|
|
G_B4_0 = L_65;
|
|
G_B4_1 = L_64;
|
|
if (L_66)
|
|
{
|
|
G_B5_0 = L_65;
|
|
G_B5_1 = L_64;
|
|
goto IL_01be;
|
|
}
|
|
}
|
|
{
|
|
G_B6_0 = _stringLiteral205303C28798C5EA52B9388BE0A95CE13315CB1C;
|
|
G_B6_1 = G_B4_0;
|
|
G_B6_2 = G_B4_1;
|
|
goto IL_01c3;
|
|
}
|
|
|
|
IL_01be:
|
|
{
|
|
G_B6_0 = _stringLiteral593E1A8DF72FB8FFD3904B04C862F736FA2561AF;
|
|
G_B6_1 = G_B5_0;
|
|
G_B6_2 = G_B5_1;
|
|
}
|
|
|
|
IL_01c3:
|
|
{
|
|
StringBuilder_t* L_67;
|
|
L_67 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B6_1, G_B6_0, NULL);
|
|
// stringBuilder.Append( "Gyro: " ).Append( SystemInfo.supportsGyroscope ? "supported\n" : "not supported\n" );
|
|
StringBuilder_t* L_68 = G_B6_2;
|
|
StringBuilder_t* L_69;
|
|
L_69 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_68, _stringLiteral6A071BC7935C1CC6E27700BE27D860C5926D99C0, NULL);
|
|
bool L_70;
|
|
L_70 = SystemInfo_get_supportsGyroscope_m98477EC99D88396F076A93EF5C28A6129DC4E211(NULL);
|
|
G_B7_0 = L_69;
|
|
G_B7_1 = L_68;
|
|
if (L_70)
|
|
{
|
|
G_B8_0 = L_69;
|
|
G_B8_1 = L_68;
|
|
goto IL_01e2;
|
|
}
|
|
}
|
|
{
|
|
G_B9_0 = _stringLiteral205303C28798C5EA52B9388BE0A95CE13315CB1C;
|
|
G_B9_1 = G_B7_0;
|
|
G_B9_2 = G_B7_1;
|
|
goto IL_01e7;
|
|
}
|
|
|
|
IL_01e2:
|
|
{
|
|
G_B9_0 = _stringLiteral593E1A8DF72FB8FFD3904B04C862F736FA2561AF;
|
|
G_B9_1 = G_B8_0;
|
|
G_B9_2 = G_B8_1;
|
|
}
|
|
|
|
IL_01e7:
|
|
{
|
|
StringBuilder_t* L_71;
|
|
L_71 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B9_1, G_B9_0, NULL);
|
|
// stringBuilder.Append( "Location Service: " ).Append( SystemInfo.supportsLocationService ? "supported\n" : "not supported\n" );
|
|
StringBuilder_t* L_72 = G_B9_2;
|
|
StringBuilder_t* L_73;
|
|
L_73 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_72, _stringLiteralD54C0512C5F7B23D31D4A508DDC7D1D90A722C15, NULL);
|
|
bool L_74;
|
|
L_74 = SystemInfo_get_supportsLocationService_m7274D2AE36316B66F33043270B6CBCFBD1DAA54E(NULL);
|
|
G_B10_0 = L_73;
|
|
G_B10_1 = L_72;
|
|
if (L_74)
|
|
{
|
|
G_B11_0 = L_73;
|
|
G_B11_1 = L_72;
|
|
goto IL_0206;
|
|
}
|
|
}
|
|
{
|
|
G_B12_0 = _stringLiteral205303C28798C5EA52B9388BE0A95CE13315CB1C;
|
|
G_B12_1 = G_B10_0;
|
|
G_B12_2 = G_B10_1;
|
|
goto IL_020b;
|
|
}
|
|
|
|
IL_0206:
|
|
{
|
|
G_B12_0 = _stringLiteral593E1A8DF72FB8FFD3904B04C862F736FA2561AF;
|
|
G_B12_1 = G_B11_0;
|
|
G_B12_2 = G_B11_1;
|
|
}
|
|
|
|
IL_020b:
|
|
{
|
|
StringBuilder_t* L_75;
|
|
L_75 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B12_1, G_B12_0, NULL);
|
|
// stringBuilder.Append( "Compute Shaders: " ).Append( SystemInfo.supportsComputeShaders ? "supported\n" : "not supported\n" );
|
|
StringBuilder_t* L_76 = G_B12_2;
|
|
StringBuilder_t* L_77;
|
|
L_77 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_76, _stringLiteral00DD22EEB247C3B3BE3F13F0A612FD41C0F445DC, NULL);
|
|
bool L_78;
|
|
L_78 = SystemInfo_get_supportsComputeShaders_m4A029D2F8FB9343E65E6F1C6F1C79DA41911F13A(NULL);
|
|
G_B13_0 = L_77;
|
|
G_B13_1 = L_76;
|
|
if (L_78)
|
|
{
|
|
G_B14_0 = L_77;
|
|
G_B14_1 = L_76;
|
|
goto IL_022a;
|
|
}
|
|
}
|
|
{
|
|
G_B15_0 = _stringLiteral205303C28798C5EA52B9388BE0A95CE13315CB1C;
|
|
G_B15_1 = G_B13_0;
|
|
G_B15_2 = G_B13_1;
|
|
goto IL_022f;
|
|
}
|
|
|
|
IL_022a:
|
|
{
|
|
G_B15_0 = _stringLiteral593E1A8DF72FB8FFD3904B04C862F736FA2561AF;
|
|
G_B15_1 = G_B14_0;
|
|
G_B15_2 = G_B14_1;
|
|
}
|
|
|
|
IL_022f:
|
|
{
|
|
StringBuilder_t* L_79;
|
|
L_79 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B15_1, G_B15_0, NULL);
|
|
// stringBuilder.Append( "Shadows: " ).Append( SystemInfo.supportsShadows ? "supported\n" : "not supported\n" );
|
|
StringBuilder_t* L_80 = G_B15_2;
|
|
StringBuilder_t* L_81;
|
|
L_81 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_80, _stringLiteral242B7D4EF6656C870761A7B42734BD96EC248116, NULL);
|
|
bool L_82;
|
|
L_82 = SystemInfo_get_supportsShadows_mC38F1230132BCB8059CD1C1E96D5106030166261(NULL);
|
|
G_B16_0 = L_81;
|
|
G_B16_1 = L_80;
|
|
if (L_82)
|
|
{
|
|
G_B17_0 = L_81;
|
|
G_B17_1 = L_80;
|
|
goto IL_024e;
|
|
}
|
|
}
|
|
{
|
|
G_B18_0 = _stringLiteral205303C28798C5EA52B9388BE0A95CE13315CB1C;
|
|
G_B18_1 = G_B16_0;
|
|
G_B18_2 = G_B16_1;
|
|
goto IL_0253;
|
|
}
|
|
|
|
IL_024e:
|
|
{
|
|
G_B18_0 = _stringLiteral593E1A8DF72FB8FFD3904B04C862F736FA2561AF;
|
|
G_B18_1 = G_B17_0;
|
|
G_B18_2 = G_B17_1;
|
|
}
|
|
|
|
IL_0253:
|
|
{
|
|
StringBuilder_t* L_83;
|
|
L_83 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B18_1, G_B18_0, NULL);
|
|
// stringBuilder.Append( "Instancing: " ).Append( SystemInfo.supportsInstancing ? "supported\n" : "not supported\n" );
|
|
StringBuilder_t* L_84 = G_B18_2;
|
|
StringBuilder_t* L_85;
|
|
L_85 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_84, _stringLiteralFDDC8DE4EE1BCC5393C6C86CB9CD496FC7076771, NULL);
|
|
bool L_86;
|
|
L_86 = SystemInfo_get_supportsInstancing_m8EF067060BFA3D50A266342D26A392747DA4FF3E(NULL);
|
|
G_B19_0 = L_85;
|
|
G_B19_1 = L_84;
|
|
if (L_86)
|
|
{
|
|
G_B20_0 = L_85;
|
|
G_B20_1 = L_84;
|
|
goto IL_0272;
|
|
}
|
|
}
|
|
{
|
|
G_B21_0 = _stringLiteral205303C28798C5EA52B9388BE0A95CE13315CB1C;
|
|
G_B21_1 = G_B19_0;
|
|
G_B21_2 = G_B19_1;
|
|
goto IL_0277;
|
|
}
|
|
|
|
IL_0272:
|
|
{
|
|
G_B21_0 = _stringLiteral593E1A8DF72FB8FFD3904B04C862F736FA2561AF;
|
|
G_B21_1 = G_B20_0;
|
|
G_B21_2 = G_B20_1;
|
|
}
|
|
|
|
IL_0277:
|
|
{
|
|
StringBuilder_t* L_87;
|
|
L_87 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B21_1, G_B21_0, NULL);
|
|
// stringBuilder.Append( "Motion Vectors: " ).Append( SystemInfo.supportsMotionVectors ? "supported\n" : "not supported\n" );
|
|
StringBuilder_t* L_88 = G_B21_2;
|
|
StringBuilder_t* L_89;
|
|
L_89 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_88, _stringLiteral1BE00BDC62CA306C2DAE88EB0A2832DAB2CD5600, NULL);
|
|
bool L_90;
|
|
L_90 = SystemInfo_get_supportsMotionVectors_m1F03671FD39F2CB8006298D843EFE41B8EDE5F61(NULL);
|
|
G_B22_0 = L_89;
|
|
G_B22_1 = L_88;
|
|
if (L_90)
|
|
{
|
|
G_B23_0 = L_89;
|
|
G_B23_1 = L_88;
|
|
goto IL_0296;
|
|
}
|
|
}
|
|
{
|
|
G_B24_0 = _stringLiteral205303C28798C5EA52B9388BE0A95CE13315CB1C;
|
|
G_B24_1 = G_B22_0;
|
|
G_B24_2 = G_B22_1;
|
|
goto IL_029b;
|
|
}
|
|
|
|
IL_0296:
|
|
{
|
|
G_B24_0 = _stringLiteral593E1A8DF72FB8FFD3904B04C862F736FA2561AF;
|
|
G_B24_1 = G_B23_0;
|
|
G_B24_2 = G_B23_1;
|
|
}
|
|
|
|
IL_029b:
|
|
{
|
|
StringBuilder_t* L_91;
|
|
L_91 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B24_1, G_B24_0, NULL);
|
|
// stringBuilder.Append( "3D Textures: " ).Append( SystemInfo.supports3DTextures ? "supported\n" : "not supported\n" );
|
|
StringBuilder_t* L_92 = G_B24_2;
|
|
StringBuilder_t* L_93;
|
|
L_93 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_92, _stringLiteral3A309A93FCF93ECA490284F0B4C22C548CCCEEB8, NULL);
|
|
bool L_94;
|
|
L_94 = SystemInfo_get_supports3DTextures_mA80B4F445CEEC84FFAA80B7F94C90EC270813CE3(NULL);
|
|
G_B25_0 = L_93;
|
|
G_B25_1 = L_92;
|
|
if (L_94)
|
|
{
|
|
G_B26_0 = L_93;
|
|
G_B26_1 = L_92;
|
|
goto IL_02ba;
|
|
}
|
|
}
|
|
{
|
|
G_B27_0 = _stringLiteral205303C28798C5EA52B9388BE0A95CE13315CB1C;
|
|
G_B27_1 = G_B25_0;
|
|
G_B27_2 = G_B25_1;
|
|
goto IL_02bf;
|
|
}
|
|
|
|
IL_02ba:
|
|
{
|
|
G_B27_0 = _stringLiteral593E1A8DF72FB8FFD3904B04C862F736FA2561AF;
|
|
G_B27_1 = G_B26_0;
|
|
G_B27_2 = G_B26_1;
|
|
}
|
|
|
|
IL_02bf:
|
|
{
|
|
StringBuilder_t* L_95;
|
|
L_95 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B27_1, G_B27_0, NULL);
|
|
// stringBuilder.Append( "3D Render Textures: " ).Append( SystemInfo.supports3DRenderTextures ? "supported\n" : "not supported\n" );
|
|
StringBuilder_t* L_96 = G_B27_2;
|
|
StringBuilder_t* L_97;
|
|
L_97 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_96, _stringLiteral1CE5E9DC21CEDE83448EC29CF472339E4BF67AED, NULL);
|
|
bool L_98;
|
|
L_98 = SystemInfo_get_supports3DRenderTextures_mB90960ABC1CDAC3048C96338EC513E623306D108(NULL);
|
|
G_B28_0 = L_97;
|
|
G_B28_1 = L_96;
|
|
if (L_98)
|
|
{
|
|
G_B29_0 = L_97;
|
|
G_B29_1 = L_96;
|
|
goto IL_02de;
|
|
}
|
|
}
|
|
{
|
|
G_B30_0 = _stringLiteral205303C28798C5EA52B9388BE0A95CE13315CB1C;
|
|
G_B30_1 = G_B28_0;
|
|
G_B30_2 = G_B28_1;
|
|
goto IL_02e3;
|
|
}
|
|
|
|
IL_02de:
|
|
{
|
|
G_B30_0 = _stringLiteral593E1A8DF72FB8FFD3904B04C862F736FA2561AF;
|
|
G_B30_1 = G_B29_0;
|
|
G_B30_2 = G_B29_1;
|
|
}
|
|
|
|
IL_02e3:
|
|
{
|
|
StringBuilder_t* L_99;
|
|
L_99 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B30_1, G_B30_0, NULL);
|
|
// stringBuilder.Append( "2D Array Textures: " ).Append( SystemInfo.supports2DArrayTextures ? "supported\n" : "not supported\n" );
|
|
StringBuilder_t* L_100 = G_B30_2;
|
|
StringBuilder_t* L_101;
|
|
L_101 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_100, _stringLiteralA05EDDE056ADD32DBD9E3AA37D1C7DA9D817E2AE, NULL);
|
|
bool L_102;
|
|
L_102 = SystemInfo_get_supports2DArrayTextures_m05916AB730192840AE57A9C309F7CBF01EEEB41F(NULL);
|
|
G_B31_0 = L_101;
|
|
G_B31_1 = L_100;
|
|
if (L_102)
|
|
{
|
|
G_B32_0 = L_101;
|
|
G_B32_1 = L_100;
|
|
goto IL_0302;
|
|
}
|
|
}
|
|
{
|
|
G_B33_0 = _stringLiteral205303C28798C5EA52B9388BE0A95CE13315CB1C;
|
|
G_B33_1 = G_B31_0;
|
|
G_B33_2 = G_B31_1;
|
|
goto IL_0307;
|
|
}
|
|
|
|
IL_0302:
|
|
{
|
|
G_B33_0 = _stringLiteral593E1A8DF72FB8FFD3904B04C862F736FA2561AF;
|
|
G_B33_1 = G_B32_0;
|
|
G_B33_2 = G_B32_1;
|
|
}
|
|
|
|
IL_0307:
|
|
{
|
|
StringBuilder_t* L_103;
|
|
L_103 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B33_1, G_B33_0, NULL);
|
|
// stringBuilder.Append( "Cubemap Array Textures: " ).Append( SystemInfo.supportsCubemapArrayTextures ? "supported" : "not supported" );
|
|
StringBuilder_t* L_104 = G_B33_2;
|
|
StringBuilder_t* L_105;
|
|
L_105 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_104, _stringLiteralF1529E632E7FD599BCDE055FB1A61226F97EC230, NULL);
|
|
bool L_106;
|
|
L_106 = SystemInfo_get_supportsCubemapArrayTextures_mEDBA13526AEAE5385F897BE17E74F792181B2510(NULL);
|
|
G_B34_0 = L_105;
|
|
G_B34_1 = L_104;
|
|
if (L_106)
|
|
{
|
|
G_B35_0 = L_105;
|
|
G_B35_1 = L_104;
|
|
goto IL_0326;
|
|
}
|
|
}
|
|
{
|
|
G_B36_0 = _stringLiteralCE3EBCE412B18861E9A01C70A934C049AC0DE244;
|
|
G_B36_1 = G_B34_0;
|
|
G_B36_2 = G_B34_1;
|
|
goto IL_032b;
|
|
}
|
|
|
|
IL_0326:
|
|
{
|
|
G_B36_0 = _stringLiteralBCA50B04709EAD37B11D1C70844BB22E450AA16E;
|
|
G_B36_1 = G_B35_0;
|
|
G_B36_2 = G_B35_1;
|
|
}
|
|
|
|
IL_032b:
|
|
{
|
|
StringBuilder_t* L_107;
|
|
L_107 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B36_1, G_B36_0, NULL);
|
|
// Debug.Log( stringBuilder.ToString() );
|
|
String_t* L_108;
|
|
L_108 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B36_2);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Log_m87A9A3C761FF5C43ED8A53B16190A53D08F818BB(L_108, NULL);
|
|
// if( DebugLogManager.Instance )
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_109;
|
|
L_109 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_110;
|
|
L_110 = Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A(L_109, NULL);
|
|
if (!L_110)
|
|
{
|
|
goto IL_035b;
|
|
}
|
|
}
|
|
{
|
|
// DebugLogManager.Instance.ExpandLatestPendingLog();
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_111;
|
|
L_111 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
DebugLogManager_ExpandLatestPendingLog_m3049C9438441A4BC6BBF827C416CD88D5D2D597E(L_111, NULL);
|
|
// DebugLogManager.Instance.StripStackTraceFromLatestPendingLog();
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_112;
|
|
L_112 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
DebugLogManager_StripStackTraceFromLatestPendingLog_m66AE6A25F37E381D549C2AD6372B2FDF871F2A67(L_112, NULL);
|
|
}
|
|
|
|
IL_035b:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Text.StringBuilder IngameDebugConsole.DebugLogConsole::AppendSysInfoIfPresent(System.Text.StringBuilder,System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* DebugLogConsole_AppendSysInfoIfPresent_m8348C123A80619F01E787BC5F6DF69577A53B556 (StringBuilder_t* ___sb0, String_t* ___info1, String_t* ___postfix2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6836D94586B3887F0DB2295A1C064F27F99A5DE2);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// if( info != SystemInfo.unsupportedIdentifier )
|
|
String_t* L_0 = ___info1;
|
|
bool L_1;
|
|
L_1 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_0, _stringLiteral6836D94586B3887F0DB2295A1C064F27F99A5DE2, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
// sb.Append( info );
|
|
StringBuilder_t* L_2 = ___sb0;
|
|
String_t* L_3 = ___info1;
|
|
StringBuilder_t* L_4;
|
|
L_4 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_2, L_3, NULL);
|
|
// if( postfix != null )
|
|
String_t* L_5 = ___postfix2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
// sb.Append( postfix );
|
|
StringBuilder_t* L_6 = ___sb0;
|
|
String_t* L_7 = ___postfix2;
|
|
StringBuilder_t* L_8;
|
|
L_8 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_6, L_7, NULL);
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
// sb.Append( " " );
|
|
StringBuilder_t* L_9 = ___sb0;
|
|
StringBuilder_t* L_10;
|
|
L_10 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_9, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, NULL);
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
// return sb;
|
|
StringBuilder_t* L_11 = ___sb0;
|
|
return L_11;
|
|
}
|
|
}
|
|
// System.Text.StringBuilder IngameDebugConsole.DebugLogConsole::AppendSysInfoIfPresent(System.Text.StringBuilder,System.Int32,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* DebugLogConsole_AppendSysInfoIfPresent_mE33F854781092A2E4B3A1301DADA8A99C9FF1537 (StringBuilder_t* ___sb0, int32_t ___info1, String_t* ___postfix2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// if( info > 0 )
|
|
int32_t L_0 = ___info1;
|
|
if ((((int32_t)L_0) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
// sb.Append( info );
|
|
StringBuilder_t* L_1 = ___sb0;
|
|
int32_t L_2 = ___info1;
|
|
StringBuilder_t* L_3;
|
|
L_3 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_1, L_2, NULL);
|
|
// if( postfix != null )
|
|
String_t* L_4 = ___postfix2;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
// sb.Append( postfix );
|
|
StringBuilder_t* L_5 = ___sb0;
|
|
String_t* L_6 = ___postfix2;
|
|
StringBuilder_t* L_7;
|
|
L_7 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_5, L_6, NULL);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
// sb.Append( " " );
|
|
StringBuilder_t* L_8 = ___sb0;
|
|
StringBuilder_t* L_9;
|
|
L_9 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_8, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, NULL);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
// return sb;
|
|
StringBuilder_t* L_10 = ___sb0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::AddCustomParameterType(System.Type,IngameDebugConsole.DebugLogConsole/ParseFunction,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_AddCustomParameterType_m7725AC531D2A3583F6BE80BB92A716ACD766F3FA (Type_t* ___type0, ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* ___parseFunction1, String_t* ___typeReadableName2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_mDA78A8299D16DD1B42B93F0C63BE2D9CE92F8A00_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_mF64507B32BEC0199DA2C603E6687F24ECF1B066B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1EA131BABC70292CBED6E35C3358455D9DB791ED);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4E2E9D9750DD8419A32C2FCBF9367EBAD244B5CF);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// if( type == null )
|
|
Type_t* L_0 = ___type0;
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_0, (Type_t*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
// Debug.LogError( "Parameter type can't be null!" );
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(_stringLiteral1EA131BABC70292CBED6E35C3358455D9DB791ED, NULL);
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
// else if( parseFunction == null )
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_2 = ___parseFunction1;
|
|
if (L_2)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
// Debug.LogError( "Parameter parseFunction can't be null!" );
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(_stringLiteral4E2E9D9750DD8419A32C2FCBF9367EBAD244B5CF, NULL);
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
// parseFunctions[type] = parseFunction;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_3 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___parseFunctions_2;
|
|
Type_t* L_4 = ___type0;
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_5 = ___parseFunction1;
|
|
Dictionary_2_set_Item_mF64507B32BEC0199DA2C603E6687F24ECF1B066B(L_3, L_4, L_5, Dictionary_2_set_Item_mF64507B32BEC0199DA2C603E6687F24ECF1B066B_RuntimeMethod_var);
|
|
// if( !string.IsNullOrEmpty( typeReadableName ) )
|
|
String_t* L_6 = ___typeReadableName2;
|
|
bool L_7;
|
|
L_7 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_6, NULL);
|
|
if (L_7)
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
// typeReadableNames[type] = typeReadableName;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_8 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___typeReadableNames_3;
|
|
Type_t* L_9 = ___type0;
|
|
String_t* L_10 = ___typeReadableName2;
|
|
Dictionary_2_set_Item_mDA78A8299D16DD1B42B93F0C63BE2D9CE92F8A00(L_8, L_9, L_10, Dictionary_2_set_Item_mDA78A8299D16DD1B42B93F0C63BE2D9CE92F8A00_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::RemoveCustomParameterType(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_RemoveCustomParameterType_m2835B8990F7DD01009446DF14B4417E48579968B (Type_t* ___type0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m4AF5A90C3CF292C4566D0EEB66AE1F3817C71433_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m69603B656EDD211D370280238098794BE7457F09_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// parseFunctions.Remove( type );
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_0 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___parseFunctions_2;
|
|
Type_t* L_1 = ___type0;
|
|
bool L_2;
|
|
L_2 = Dictionary_2_Remove_m4AF5A90C3CF292C4566D0EEB66AE1F3817C71433(L_0, L_1, Dictionary_2_Remove_m4AF5A90C3CF292C4566D0EEB66AE1F3817C71433_RuntimeMethod_var);
|
|
// typeReadableNames.Remove( type );
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_3 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___typeReadableNames_3;
|
|
Type_t* L_4 = ___type0;
|
|
bool L_5;
|
|
L_5 = Dictionary_2_Remove_m69603B656EDD211D370280238098794BE7457F09(L_3, L_4, Dictionary_2_Remove_m69603B656EDD211D370280238098794BE7457F09_RuntimeMethod_var);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::AddCommandInstance(System.String,System.String,System.String,System.Object,System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_AddCommandInstance_m460403F17EA9E045FB3CCE3739A1A066E91FAC33 (String_t* ___command0, String_t* ___description1, String_t* ___methodName2, RuntimeObject* ___instance3, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___parameterNames4, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC8F2FA22890DE39532C58F0896BE770734656AC7);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// if( instance == null )
|
|
RuntimeObject* L_0 = ___instance3;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
// Debug.LogError( "Instance can't be null!" );
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(_stringLiteralC8F2FA22890DE39532C58F0896BE770734656AC7, NULL);
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
// AddCommand( command, description, methodName, instance.GetType(), instance, parameterNames );
|
|
String_t* L_1 = ___command0;
|
|
String_t* L_2 = ___description1;
|
|
String_t* L_3 = ___methodName2;
|
|
RuntimeObject* L_4 = ___instance3;
|
|
Type_t* L_5;
|
|
L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL);
|
|
RuntimeObject* L_6 = ___instance3;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = ___parameterNames4;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
DebugLogConsole_AddCommand_m4BFF08D8BF1C63A4282EB1B5FFF95E695A0C4FD9(L_1, L_2, L_3, L_5, L_6, L_7, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::AddCommandStatic(System.String,System.String,System.String,System.Type,System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_AddCommandStatic_mA25C3DE5B2273715EAE7B7EA643F2B27E4E7EF80 (String_t* ___command0, String_t* ___description1, String_t* ___methodName2, Type_t* ___ownerType3, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___parameterNames4, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// AddCommand( command, description, methodName, ownerType, null, parameterNames );
|
|
String_t* L_0 = ___command0;
|
|
String_t* L_1 = ___description1;
|
|
String_t* L_2 = ___methodName2;
|
|
Type_t* L_3 = ___ownerType3;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = ___parameterNames4;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
DebugLogConsole_AddCommand_m4BFF08D8BF1C63A4282EB1B5FFF95E695A0C4FD9(L_0, L_1, L_2, L_3, NULL, L_4, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::AddCommand(System.String,System.String,System.Action)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_AddCommand_m44EA1C3BC10905406AAED2B25AC713C0E076A70F (String_t* ___command0, String_t* ___description1, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___method2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// public static void AddCommand( string command, string description, Action method ) { AddCommand( command, description, method.Method, method.Target, null ); }
|
|
String_t* L_0 = ___command0;
|
|
String_t* L_1 = ___description1;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_2 = ___method2;
|
|
MethodInfo_t* L_3;
|
|
L_3 = Delegate_get_Method_mB684A7525653DFE0EFC35E58449E1FC8E2A9F019(L_2, NULL);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_4 = ___method2;
|
|
RuntimeObject* L_5;
|
|
L_5 = Delegate_get_Target_m6E203F111C1548193A5AB7E616BD5834CD269753_inline(L_4, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
DebugLogConsole_AddCommand_m3D56A91D2615526245C2996E0D97AE636B6EDFAB(L_0, L_1, L_3, L_5, (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)NULL, NULL);
|
|
// public static void AddCommand( string command, string description, Action method ) { AddCommand( command, description, method.Method, method.Target, null ); }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::AddCommand(System.String,System.String,System.Delegate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_AddCommand_m8DC230B10D47E9279F8E0581B3D450A68B03D3BC (String_t* ___command0, String_t* ___description1, Delegate_t* ___method2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// public static void AddCommand( string command, string description, Delegate method ) { AddCommand( command, description, method.Method, method.Target, null ); }
|
|
String_t* L_0 = ___command0;
|
|
String_t* L_1 = ___description1;
|
|
Delegate_t* L_2 = ___method2;
|
|
MethodInfo_t* L_3;
|
|
L_3 = Delegate_get_Method_mB684A7525653DFE0EFC35E58449E1FC8E2A9F019(L_2, NULL);
|
|
Delegate_t* L_4 = ___method2;
|
|
RuntimeObject* L_5;
|
|
L_5 = Delegate_get_Target_m6E203F111C1548193A5AB7E616BD5834CD269753_inline(L_4, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
DebugLogConsole_AddCommand_m3D56A91D2615526245C2996E0D97AE636B6EDFAB(L_0, L_1, L_3, L_5, (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)NULL, NULL);
|
|
// public static void AddCommand( string command, string description, Delegate method ) { AddCommand( command, description, method.Method, method.Target, null ); }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::AddCommand(System.String,System.String,System.Delegate,System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_AddCommand_m68F24524C503875268CF3475FFDECC1D96D6DEC4 (String_t* ___command0, String_t* ___description1, Delegate_t* ___method2, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___parameterNames3, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// public static void AddCommand( string command, string description, Delegate method, params string[] parameterNames ) { AddCommand( command, description, method.Method, method.Target, parameterNames ); }
|
|
String_t* L_0 = ___command0;
|
|
String_t* L_1 = ___description1;
|
|
Delegate_t* L_2 = ___method2;
|
|
MethodInfo_t* L_3;
|
|
L_3 = Delegate_get_Method_mB684A7525653DFE0EFC35E58449E1FC8E2A9F019(L_2, NULL);
|
|
Delegate_t* L_4 = ___method2;
|
|
RuntimeObject* L_5;
|
|
L_5 = Delegate_get_Target_m6E203F111C1548193A5AB7E616BD5834CD269753_inline(L_4, NULL);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = ___parameterNames3;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
DebugLogConsole_AddCommand_m3D56A91D2615526245C2996E0D97AE636B6EDFAB(L_0, L_1, L_3, L_5, L_6, NULL);
|
|
// public static void AddCommand( string command, string description, Delegate method, params string[] parameterNames ) { AddCommand( command, description, method.Method, method.Target, parameterNames ); }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::AddCommand(System.String,System.String,System.String,System.Type,System.Object,System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_AddCommand_m4BFF08D8BF1C63A4282EB1B5FFF95E695A0C4FD9 (String_t* ___command0, String_t* ___description1, String_t* ___methodName2, Type_t* ___ownerType3, RuntimeObject* ___instance4, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___parameterNames5, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF7DEEA4EA8EE7025215B653048871BCA345D3423);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
MethodInfo_t* V_0 = NULL;
|
|
int32_t G_B2_0 = 0;
|
|
String_t* G_B2_1 = NULL;
|
|
Type_t* G_B2_2 = NULL;
|
|
int32_t G_B1_0 = 0;
|
|
String_t* G_B1_1 = NULL;
|
|
Type_t* G_B1_2 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B3_1 = 0;
|
|
String_t* G_B3_2 = NULL;
|
|
Type_t* G_B3_3 = NULL;
|
|
Type_t* G_B6_0 = NULL;
|
|
String_t* G_B6_1 = NULL;
|
|
String_t* G_B6_2 = NULL;
|
|
Type_t* G_B5_0 = NULL;
|
|
String_t* G_B5_1 = NULL;
|
|
String_t* G_B5_2 = NULL;
|
|
String_t* G_B7_0 = NULL;
|
|
String_t* G_B7_1 = NULL;
|
|
String_t* G_B7_2 = NULL;
|
|
{
|
|
// MethodInfo method = ownerType.GetMethod( methodName, BindingFlags.Public | BindingFlags.NonPublic | ( instance != null ? BindingFlags.Instance : BindingFlags.Static ) );
|
|
Type_t* L_0 = ___ownerType3;
|
|
String_t* L_1 = ___methodName2;
|
|
RuntimeObject* L_2 = ___instance4;
|
|
G_B1_0 = ((int32_t)48);
|
|
G_B1_1 = L_1;
|
|
G_B1_2 = L_0;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = ((int32_t)48);
|
|
G_B2_1 = L_1;
|
|
G_B2_2 = L_0;
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = 8;
|
|
G_B3_1 = G_B1_0;
|
|
G_B3_2 = G_B1_1;
|
|
G_B3_3 = G_B1_2;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
G_B3_0 = 4;
|
|
G_B3_1 = G_B2_0;
|
|
G_B3_2 = G_B2_1;
|
|
G_B3_3 = G_B2_2;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
MethodInfo_t* L_3;
|
|
L_3 = Type_GetMethod_m9E66B5053F150537A74C490C1DA5174A7875189D(G_B3_3, G_B3_2, ((int32_t)(G_B3_1|G_B3_0)), NULL);
|
|
V_0 = L_3;
|
|
// if( method == null )
|
|
MethodInfo_t* L_4 = V_0;
|
|
bool L_5;
|
|
L_5 = MethodInfo_op_Equality_m1466AB76300C9F07856E706E7E914062175189D1(L_4, (MethodInfo_t*)NULL, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
// Debug.LogError( methodName + " does not exist in " + ownerType );
|
|
String_t* L_6 = ___methodName2;
|
|
Type_t* L_7 = ___ownerType3;
|
|
Type_t* L_8 = L_7;
|
|
G_B5_0 = L_8;
|
|
G_B5_1 = _stringLiteralF7DEEA4EA8EE7025215B653048871BCA345D3423;
|
|
G_B5_2 = L_6;
|
|
if (L_8)
|
|
{
|
|
G_B6_0 = L_8;
|
|
G_B6_1 = _stringLiteralF7DEEA4EA8EE7025215B653048871BCA345D3423;
|
|
G_B6_2 = L_6;
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
G_B7_0 = ((String_t*)(NULL));
|
|
G_B7_1 = G_B5_1;
|
|
G_B7_2 = G_B5_2;
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
String_t* L_9;
|
|
L_9 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B6_0);
|
|
G_B7_0 = L_9;
|
|
G_B7_1 = G_B6_1;
|
|
G_B7_2 = G_B6_2;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
String_t* L_10;
|
|
L_10 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(G_B7_2, G_B7_1, G_B7_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(L_10, NULL);
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
// AddCommand( command, description, method, instance, parameterNames );
|
|
String_t* L_11 = ___command0;
|
|
String_t* L_12 = ___description1;
|
|
MethodInfo_t* L_13 = V_0;
|
|
RuntimeObject* L_14 = ___instance4;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15 = ___parameterNames5;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
DebugLogConsole_AddCommand_m3D56A91D2615526245C2996E0D97AE636B6EDFAB(L_11, L_12, L_13, L_14, L_15, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::AddCommand(System.String,System.String,System.Reflection.MethodInfo,System.Object,System.String[])
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_AddCommand_m3D56A91D2615526245C2996E0D97AE636B6EDFAB (String_t* ___command0, String_t* ___description1, MethodInfo_t* ___method2, RuntimeObject* ___instance3, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___parameterNames4, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_mB328F3A2CA70097AB381986824251092440019DE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Insert_m0302A77BB0DBECAC73CA7E4FD3F1B75BD1FD83C6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m6AFCEA5AB2D9694CD3281747F3D850EC0AE03440_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1168E92C164109D6220480DEDA987085B2A21155);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1B13C5DF905C4A18BC783FF0CC55D190A55FDEEF);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2E26CE1BA5B498EB98B911034FE7BE0DBCF4E4E2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CBDA40613A4F3928C6449E5905E244B84102D23);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB5478C95274324097FA9241C396019384D456D6C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE10CE76A36830983737AFC7AB5662B41A8D7111B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB36FD690C32F382C0899D0B469BC014B3080EC1);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* V_0 = NULL;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
StringBuilder_t* V_3 = NULL;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
Type_t* V_6 = NULL;
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
int32_t V_9 = 0;
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
int32_t V_13 = 0;
|
|
StringBuilder_t* G_B43_0 = NULL;
|
|
StringBuilder_t* G_B41_0 = NULL;
|
|
StringBuilder_t* G_B42_0 = NULL;
|
|
StringBuilder_t* G_B44_0 = NULL;
|
|
String_t* G_B45_0 = NULL;
|
|
StringBuilder_t* G_B45_1 = NULL;
|
|
{
|
|
// if( string.IsNullOrEmpty( command ) )
|
|
String_t* L_0 = ___command0;
|
|
bool L_1;
|
|
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
// Debug.LogError( "Command name can't be empty!" );
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(_stringLiteral2E26CE1BA5B498EB98B911034FE7BE0DBCF4E4E2, NULL);
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
// command = command.Trim();
|
|
String_t* L_2 = ___command0;
|
|
String_t* L_3;
|
|
L_3 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_2, NULL);
|
|
___command0 = L_3;
|
|
// if( command.IndexOf( ' ' ) >= 0 )
|
|
String_t* L_4 = ___command0;
|
|
int32_t L_5;
|
|
L_5 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_4, ((int32_t)32), NULL);
|
|
if ((((int32_t)L_5) < ((int32_t)0)))
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
// Debug.LogError( "Command name can't contain whitespace: " + command );
|
|
String_t* L_6 = ___command0;
|
|
String_t* L_7;
|
|
L_7 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral9CBDA40613A4F3928C6449E5905E244B84102D23, L_6, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(L_7, NULL);
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
// ParameterInfo[] parameters = method.GetParameters();
|
|
MethodInfo_t* L_8 = ___method2;
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_9;
|
|
L_9 = VirtualFuncInvoker0< ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* >::Invoke(15 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_8);
|
|
V_0 = L_9;
|
|
// if( parameters == null )
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_10 = V_0;
|
|
if (L_10)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
// parameters = new ParameterInfo[0];
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_11 = (ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C*)(ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C*)SZArrayNew(ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C_il2cpp_TypeInfo_var, (uint32_t)0);
|
|
V_0 = L_11;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
// Type[] parameterTypes = new Type[parameters.Length];
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_12 = V_0;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_13 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)));
|
|
V_1 = L_13;
|
|
// for( int i = 0; i < parameters.Length; i++ )
|
|
V_5 = 0;
|
|
goto IL_00fa;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
// if( parameters[i].ParameterType.IsByRef )
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_14 = V_0;
|
|
int32_t L_15 = V_5;
|
|
int32_t L_16 = L_15;
|
|
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* L_17 = (L_14)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_16));
|
|
Type_t* L_18;
|
|
L_18 = VirtualFuncInvoker0< Type_t* >::Invoke(10 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_17);
|
|
bool L_19;
|
|
L_19 = Type_get_IsByRef_mA417B3C05E39BCF8F21A2B6437A1B41D3BE638A4(L_18, NULL);
|
|
if (!L_19)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
// Debug.LogError( "Command can't have 'out' or 'ref' parameters" );
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(_stringLiteralB5478C95274324097FA9241C396019384D456D6C, NULL);
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
// Type parameterType = parameters[i].ParameterType;
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_20 = V_0;
|
|
int32_t L_21 = V_5;
|
|
int32_t L_22 = L_21;
|
|
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* L_23 = (L_20)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_22));
|
|
Type_t* L_24;
|
|
L_24 = VirtualFuncInvoker0< Type_t* >::Invoke(10 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_23);
|
|
V_6 = L_24;
|
|
// if( parseFunctions.ContainsKey( parameterType ) || typeof( Component ).IsAssignableFrom( parameterType ) || parameterType.IsEnum || IsSupportedArrayType( parameterType ) )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_25 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___parseFunctions_2;
|
|
Type_t* L_26 = V_6;
|
|
bool L_27;
|
|
L_27 = Dictionary_2_ContainsKey_mB328F3A2CA70097AB381986824251092440019DE(L_25, L_26, Dictionary_2_ContainsKey_mB328F3A2CA70097AB381986824251092440019DE_RuntimeMethod_var);
|
|
if (L_27)
|
|
{
|
|
goto IL_00b2;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
Type_t* L_30 = V_6;
|
|
bool L_31;
|
|
L_31 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(21 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_29, L_30);
|
|
if (L_31)
|
|
{
|
|
goto IL_00b2;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_32 = V_6;
|
|
bool L_33;
|
|
L_33 = VirtualFuncInvoker0< bool >::Invoke(67 /* System.Boolean System.Type::get_IsEnum() */, L_32);
|
|
if (L_33)
|
|
{
|
|
goto IL_00b2;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_34 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_35;
|
|
L_35 = DebugLogConsole_IsSupportedArrayType_mCF63052024BD4D95564AD4E395C558E99092BB86(L_34, NULL);
|
|
if (!L_35)
|
|
{
|
|
goto IL_00ba;
|
|
}
|
|
}
|
|
|
|
IL_00b2:
|
|
{
|
|
// parameterTypes[i] = parameterType;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_36 = V_1;
|
|
int32_t L_37 = V_5;
|
|
Type_t* L_38 = V_6;
|
|
ArrayElementTypeCheck (L_36, L_38);
|
|
(L_36)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_37), (Type_t*)L_38);
|
|
goto IL_00f4;
|
|
}
|
|
|
|
IL_00ba:
|
|
{
|
|
// Debug.LogError( string.Concat( "Parameter ", parameters[i].Name, "'s Type ", parameterType, " isn't supported" ) );
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_39 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)5);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_40 = L_39;
|
|
ArrayElementTypeCheck (L_40, _stringLiteralE10CE76A36830983737AFC7AB5662B41A8D7111B);
|
|
(L_40)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)_stringLiteralE10CE76A36830983737AFC7AB5662B41A8D7111B);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_41 = L_40;
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_42 = V_0;
|
|
int32_t L_43 = V_5;
|
|
int32_t L_44 = L_43;
|
|
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* L_45 = (L_42)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_44));
|
|
String_t* L_46;
|
|
L_46 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.ParameterInfo::get_Name() */, L_45);
|
|
ArrayElementTypeCheck (L_41, L_46);
|
|
(L_41)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_46);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_47 = L_41;
|
|
ArrayElementTypeCheck (L_47, _stringLiteralEB36FD690C32F382C0899D0B469BC014B3080EC1);
|
|
(L_47)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)_stringLiteralEB36FD690C32F382C0899D0B469BC014B3080EC1);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_48 = L_47;
|
|
Type_t* L_49 = V_6;
|
|
ArrayElementTypeCheck (L_48, L_49);
|
|
(L_48)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(3), (RuntimeObject*)L_49);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_50 = L_48;
|
|
ArrayElementTypeCheck (L_50, _stringLiteral1B13C5DF905C4A18BC783FF0CC55D190A55FDEEF);
|
|
(L_50)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(4), (RuntimeObject*)_stringLiteral1B13C5DF905C4A18BC783FF0CC55D190A55FDEEF);
|
|
String_t* L_51;
|
|
L_51 = String_Concat_m9EB826D3BC0EF2322AA8E55DF0D20EE41B1E5A36(L_50, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(L_51, NULL);
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_00f4:
|
|
{
|
|
// for( int i = 0; i < parameters.Length; i++ )
|
|
int32_t L_52 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_52, 1));
|
|
}
|
|
|
|
IL_00fa:
|
|
{
|
|
// for( int i = 0; i < parameters.Length; i++ )
|
|
int32_t L_53 = V_5;
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_54 = V_0;
|
|
if ((((int32_t)L_53) < ((int32_t)((int32_t)(((RuntimeArray*)L_54)->max_length)))))
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
// int commandIndex = FindCommandIndex( command );
|
|
String_t* L_55 = ___command0;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
int32_t L_56;
|
|
L_56 = DebugLogConsole_FindCommandIndex_m937912A34A602748887E50AE2A6965A125E420A7(L_55, NULL);
|
|
V_2 = L_56;
|
|
// if( commandIndex < 0 )
|
|
int32_t L_57 = V_2;
|
|
if ((((int32_t)L_57) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0117;
|
|
}
|
|
}
|
|
{
|
|
// commandIndex = ~commandIndex;
|
|
int32_t L_58 = V_2;
|
|
V_2 = ((~L_58));
|
|
goto IL_0215;
|
|
}
|
|
|
|
IL_0117:
|
|
{
|
|
// int commandFirstIndex = commandIndex;
|
|
int32_t L_59 = V_2;
|
|
V_7 = L_59;
|
|
// int commandLastIndex = commandIndex;
|
|
int32_t L_60 = V_2;
|
|
V_8 = L_60;
|
|
goto IL_0125;
|
|
}
|
|
|
|
IL_011f:
|
|
{
|
|
// commandFirstIndex--;
|
|
int32_t L_61 = V_7;
|
|
V_7 = ((int32_t)il2cpp_codegen_subtract(L_61, 1));
|
|
}
|
|
|
|
IL_0125:
|
|
{
|
|
// while( commandFirstIndex > 0 && caseInsensitiveComparer.Compare( methods[commandFirstIndex - 1].command, command, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ) == 0 )
|
|
int32_t L_62 = V_7;
|
|
if ((((int32_t)L_62) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0153;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_63 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_64 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_65 = V_7;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_66;
|
|
L_66 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_64, ((int32_t)il2cpp_codegen_subtract(L_65, 1)), List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_67 = L_66->___command_3;
|
|
String_t* L_68 = ___command0;
|
|
int32_t L_69;
|
|
L_69 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_63, L_67, L_68, 3);
|
|
if (!L_69)
|
|
{
|
|
goto IL_011f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0153;
|
|
}
|
|
|
|
IL_014d:
|
|
{
|
|
// commandLastIndex++;
|
|
int32_t L_70 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_70, 1));
|
|
}
|
|
|
|
IL_0153:
|
|
{
|
|
// while( commandLastIndex < methods.Count - 1 && caseInsensitiveComparer.Compare( methods[commandLastIndex + 1].command, command, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ) == 0 )
|
|
int32_t L_71 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_72 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_73;
|
|
L_73 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_72, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_71) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_73, 1)))))
|
|
{
|
|
goto IL_0184;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_74 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_75 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_76 = V_8;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_77;
|
|
L_77 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_75, ((int32_t)il2cpp_codegen_add(L_76, 1)), List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_78 = L_77->___command_3;
|
|
String_t* L_79 = ___command0;
|
|
int32_t L_80;
|
|
L_80 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_74, L_78, L_79, 3);
|
|
if (!L_80)
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
}
|
|
|
|
IL_0184:
|
|
{
|
|
// commandIndex = commandFirstIndex;
|
|
int32_t L_81 = V_7;
|
|
V_2 = L_81;
|
|
// for( int i = commandFirstIndex; i <= commandLastIndex; i++ )
|
|
int32_t L_82 = V_7;
|
|
V_9 = L_82;
|
|
goto IL_020c;
|
|
}
|
|
|
|
IL_018d:
|
|
{
|
|
// int parameterCountDiff = methods[i].parameterTypes.Length - parameterTypes.Length;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_83 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_84 = V_9;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_85;
|
|
L_85 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_83, L_84, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_86 = L_85->___parameterTypes_1;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_87 = V_1;
|
|
V_10 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_86)->max_length)), ((int32_t)(((RuntimeArray*)L_87)->max_length))));
|
|
// if( parameterCountDiff <= 0 )
|
|
int32_t L_88 = V_10;
|
|
if ((((int32_t)L_88) > ((int32_t)0)))
|
|
{
|
|
goto IL_0206;
|
|
}
|
|
}
|
|
{
|
|
// commandIndex = i + 1;
|
|
int32_t L_89 = V_9;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_89, 1));
|
|
// if( parameterCountDiff == 0 )
|
|
int32_t L_90 = V_10;
|
|
if (L_90)
|
|
{
|
|
goto IL_0206;
|
|
}
|
|
}
|
|
{
|
|
// int j = 0;
|
|
V_11 = 0;
|
|
goto IL_01bf;
|
|
}
|
|
|
|
IL_01b9:
|
|
{
|
|
// j++;
|
|
int32_t L_91 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add(L_91, 1));
|
|
}
|
|
|
|
IL_01bf:
|
|
{
|
|
// while( j < parameterTypes.Length && parameterTypes[j] == methods[i].parameterTypes[j] )
|
|
int32_t L_92 = V_11;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_93 = V_1;
|
|
if ((((int32_t)L_92) >= ((int32_t)((int32_t)(((RuntimeArray*)L_93)->max_length)))))
|
|
{
|
|
goto IL_01e5;
|
|
}
|
|
}
|
|
{
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_94 = V_1;
|
|
int32_t L_95 = V_11;
|
|
int32_t L_96 = L_95;
|
|
Type_t* L_97 = (L_94)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_96));
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_98 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_99 = V_9;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_100;
|
|
L_100 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_98, L_99, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_101 = L_100->___parameterTypes_1;
|
|
int32_t L_102 = V_11;
|
|
int32_t L_103 = L_102;
|
|
Type_t* L_104 = (L_101)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_103));
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
bool L_105;
|
|
L_105 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_97, L_104, NULL);
|
|
if (L_105)
|
|
{
|
|
goto IL_01b9;
|
|
}
|
|
}
|
|
|
|
IL_01e5:
|
|
{
|
|
// if( j >= parameterTypes.Length )
|
|
int32_t L_106 = V_11;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_107 = V_1;
|
|
if ((((int32_t)L_106) < ((int32_t)((int32_t)(((RuntimeArray*)L_107)->max_length)))))
|
|
{
|
|
goto IL_0206;
|
|
}
|
|
}
|
|
{
|
|
// commandIndex = i;
|
|
int32_t L_108 = V_9;
|
|
V_2 = L_108;
|
|
// commandLastIndex--;
|
|
int32_t L_109 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_109, 1));
|
|
// methods.RemoveAt( i-- );
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_110 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_111 = V_9;
|
|
int32_t L_112 = L_111;
|
|
V_9 = ((int32_t)il2cpp_codegen_subtract(L_112, 1));
|
|
List_1_RemoveAt_m6AFCEA5AB2D9694CD3281747F3D850EC0AE03440(L_110, L_112, List_1_RemoveAt_m6AFCEA5AB2D9694CD3281747F3D850EC0AE03440_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0206:
|
|
{
|
|
// for( int i = commandFirstIndex; i <= commandLastIndex; i++ )
|
|
int32_t L_113 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add(L_113, 1));
|
|
}
|
|
|
|
IL_020c:
|
|
{
|
|
// for( int i = commandFirstIndex; i <= commandLastIndex; i++ )
|
|
int32_t L_114 = V_9;
|
|
int32_t L_115 = V_8;
|
|
if ((((int32_t)L_114) <= ((int32_t)L_115)))
|
|
{
|
|
goto IL_018d;
|
|
}
|
|
}
|
|
|
|
IL_0215:
|
|
{
|
|
// StringBuilder methodSignature = new StringBuilder( 256 );
|
|
StringBuilder_t* L_116 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_116, ((int32_t)256), NULL);
|
|
V_3 = L_116;
|
|
// string[] parameterSignatures = new string[parameterTypes.Length];
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_117 = V_1;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_118 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_117)->max_length)));
|
|
V_4 = L_118;
|
|
// methodSignature.Append( command );
|
|
StringBuilder_t* L_119 = V_3;
|
|
String_t* L_120 = ___command0;
|
|
StringBuilder_t* L_121;
|
|
L_121 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_119, L_120, NULL);
|
|
// if( parameterTypes.Length > 0 )
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_122 = V_1;
|
|
if (!(((RuntimeArray*)L_122)->max_length))
|
|
{
|
|
goto IL_02eb;
|
|
}
|
|
}
|
|
{
|
|
// methodSignature.Append( " " );
|
|
StringBuilder_t* L_123 = V_3;
|
|
StringBuilder_t* L_124;
|
|
L_124 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_123, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, NULL);
|
|
// for( int i = 0; i < parameterTypes.Length; i++ )
|
|
V_12 = 0;
|
|
goto IL_02e1;
|
|
}
|
|
|
|
IL_024d:
|
|
{
|
|
// int parameterSignatureStartIndex = methodSignature.Length;
|
|
StringBuilder_t* L_125 = V_3;
|
|
int32_t L_126;
|
|
L_126 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_125, NULL);
|
|
V_13 = L_126;
|
|
// methodSignature.Append( "[" ).Append( GetTypeReadableName( parameterTypes[i] ) ).Append( " " ).Append( ( parameterNames != null && i < parameterNames.Length && !string.IsNullOrEmpty( parameterNames[i] ) ) ? parameterNames[i] : parameters[i].Name ).Append( "]" );
|
|
StringBuilder_t* L_127 = V_3;
|
|
StringBuilder_t* L_128;
|
|
L_128 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_127, _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1, NULL);
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_129 = V_1;
|
|
int32_t L_130 = V_12;
|
|
int32_t L_131 = L_130;
|
|
Type_t* L_132 = (L_129)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_131));
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
String_t* L_133;
|
|
L_133 = DebugLogConsole_GetTypeReadableName_mD536CA0D3C2534C91B7BA1096C1F09B8D4E83934(L_132, NULL);
|
|
StringBuilder_t* L_134;
|
|
L_134 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_128, L_133, NULL);
|
|
StringBuilder_t* L_135;
|
|
L_135 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_134, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, NULL);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_136 = ___parameterNames4;
|
|
G_B41_0 = L_135;
|
|
if (!L_136)
|
|
{
|
|
G_B43_0 = L_135;
|
|
goto IL_0290;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_137 = V_12;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_138 = ___parameterNames4;
|
|
G_B42_0 = G_B41_0;
|
|
if ((((int32_t)L_137) >= ((int32_t)((int32_t)(((RuntimeArray*)L_138)->max_length)))))
|
|
{
|
|
G_B43_0 = G_B41_0;
|
|
goto IL_0290;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_139 = ___parameterNames4;
|
|
int32_t L_140 = V_12;
|
|
int32_t L_141 = L_140;
|
|
String_t* L_142 = (L_139)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_141));
|
|
bool L_143;
|
|
L_143 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_142, NULL);
|
|
G_B43_0 = G_B42_0;
|
|
if (!L_143)
|
|
{
|
|
G_B44_0 = G_B42_0;
|
|
goto IL_029b;
|
|
}
|
|
}
|
|
|
|
IL_0290:
|
|
{
|
|
ParameterInfoU5BU5D_t86995AB4A1693393FE29B058CC3FD727DF0B984C* L_144 = V_0;
|
|
int32_t L_145 = V_12;
|
|
int32_t L_146 = L_145;
|
|
ParameterInfo_tBC2D68304851A59EFB2EAE6B168714CD45445F2F* L_147 = (L_144)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_146));
|
|
String_t* L_148;
|
|
L_148 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.ParameterInfo::get_Name() */, L_147);
|
|
G_B45_0 = L_148;
|
|
G_B45_1 = G_B43_0;
|
|
goto IL_02a0;
|
|
}
|
|
|
|
IL_029b:
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_149 = ___parameterNames4;
|
|
int32_t L_150 = V_12;
|
|
int32_t L_151 = L_150;
|
|
String_t* L_152 = (L_149)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_151));
|
|
G_B45_0 = L_152;
|
|
G_B45_1 = G_B44_0;
|
|
}
|
|
|
|
IL_02a0:
|
|
{
|
|
StringBuilder_t* L_153;
|
|
L_153 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B45_1, G_B45_0, NULL);
|
|
StringBuilder_t* L_154;
|
|
L_154 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_153, _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC, NULL);
|
|
// if( i < parameterTypes.Length - 1 )
|
|
int32_t L_155 = V_12;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_156 = V_1;
|
|
if ((((int32_t)L_155) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_156)->max_length)), 1)))))
|
|
{
|
|
goto IL_02c5;
|
|
}
|
|
}
|
|
{
|
|
// methodSignature.Append( " " );
|
|
StringBuilder_t* L_157 = V_3;
|
|
StringBuilder_t* L_158;
|
|
L_158 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_157, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, NULL);
|
|
}
|
|
|
|
IL_02c5:
|
|
{
|
|
// parameterSignatures[i] = methodSignature.ToString( parameterSignatureStartIndex, methodSignature.Length - parameterSignatureStartIndex );
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_159 = V_4;
|
|
int32_t L_160 = V_12;
|
|
StringBuilder_t* L_161 = V_3;
|
|
int32_t L_162 = V_13;
|
|
StringBuilder_t* L_163 = V_3;
|
|
int32_t L_164;
|
|
L_164 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_163, NULL);
|
|
int32_t L_165 = V_13;
|
|
String_t* L_166;
|
|
L_166 = StringBuilder_ToString_m8A0AC56824DF98812AFBCD745AC6C911873CA8C0(L_161, L_162, ((int32_t)il2cpp_codegen_subtract(L_164, L_165)), NULL);
|
|
ArrayElementTypeCheck (L_159, L_166);
|
|
(L_159)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_160), (String_t*)L_166);
|
|
// for( int i = 0; i < parameterTypes.Length; i++ )
|
|
int32_t L_167 = V_12;
|
|
V_12 = ((int32_t)il2cpp_codegen_add(L_167, 1));
|
|
}
|
|
|
|
IL_02e1:
|
|
{
|
|
// for( int i = 0; i < parameterTypes.Length; i++ )
|
|
int32_t L_168 = V_12;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_169 = V_1;
|
|
if ((((int32_t)L_168) < ((int32_t)((int32_t)(((RuntimeArray*)L_169)->max_length)))))
|
|
{
|
|
goto IL_024d;
|
|
}
|
|
}
|
|
|
|
IL_02eb:
|
|
{
|
|
// if( !string.IsNullOrEmpty( description ) )
|
|
String_t* L_170 = ___description1;
|
|
bool L_171;
|
|
L_171 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_170, NULL);
|
|
if (L_171)
|
|
{
|
|
goto IL_0305;
|
|
}
|
|
}
|
|
{
|
|
// methodSignature.Append( ": " ).Append( description );
|
|
StringBuilder_t* L_172 = V_3;
|
|
StringBuilder_t* L_173;
|
|
L_173 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_172, _stringLiteral1168E92C164109D6220480DEDA987085B2A21155, NULL);
|
|
String_t* L_174 = ___description1;
|
|
StringBuilder_t* L_175;
|
|
L_175 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_173, L_174, NULL);
|
|
}
|
|
|
|
IL_0305:
|
|
{
|
|
// methods.Insert( commandIndex, new ConsoleMethodInfo( method, parameterTypes, instance, command, methodSignature.ToString(), parameterSignatures ) );
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_176 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_177 = V_2;
|
|
MethodInfo_t* L_178 = ___method2;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_179 = V_1;
|
|
RuntimeObject* L_180 = ___instance3;
|
|
String_t* L_181 = ___command0;
|
|
StringBuilder_t* L_182 = V_3;
|
|
String_t* L_183;
|
|
L_183 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_182);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_184 = V_4;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_185 = (ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79*)il2cpp_codegen_object_new(ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79_il2cpp_TypeInfo_var);
|
|
ConsoleMethodInfo__ctor_mD64937BD94F186B6418DEF8B8AF8D36AADD59175(L_185, L_178, L_179, L_180, L_181, L_183, L_184, NULL);
|
|
List_1_Insert_m0302A77BB0DBECAC73CA7E4FD3F1B75BD1FD83C6(L_176, L_177, L_185, List_1_Insert_m0302A77BB0DBECAC73CA7E4FD3F1B75BD1FD83C6_RuntimeMethod_var);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::RemoveCommand(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_RemoveCommand_m7E9D585B16ADA53505185CF20D433A02EE9670E8 (String_t* ___command0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m6AFCEA5AB2D9694CD3281747F3D850EC0AE03440_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
// if( !string.IsNullOrEmpty( command ) )
|
|
String_t* L_0 = ___command0;
|
|
bool L_1;
|
|
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
// for( int i = methods.Count - 1; i >= 0; i-- )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_2 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_3;
|
|
L_3 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_2, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_3, 1));
|
|
goto IL_0044;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
// if( caseInsensitiveComparer.Compare( methods[i].command, command, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ) == 0 )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_4 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_5 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_6 = V_0;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_7;
|
|
L_7 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_5, L_6, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_8 = L_7->___command_3;
|
|
String_t* L_9 = ___command0;
|
|
int32_t L_10;
|
|
L_10 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_4, L_8, L_9, 3);
|
|
if (L_10)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
// methods.RemoveAt( i );
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_11 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_12 = V_0;
|
|
List_1_RemoveAt_m6AFCEA5AB2D9694CD3281747F3D850EC0AE03440(L_11, L_12, List_1_RemoveAt_m6AFCEA5AB2D9694CD3281747F3D850EC0AE03440_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
// for( int i = methods.Count - 1; i >= 0; i-- )
|
|
int32_t L_13 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_13, 1));
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
// for( int i = methods.Count - 1; i >= 0; i-- )
|
|
int32_t L_14 = V_0;
|
|
if ((((int32_t)L_14) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::RemoveCommand(System.Action)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_RemoveCommand_m8FC42072669FFB7EF73C84595FAE4EBB94C2058F (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___method0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// public static void RemoveCommand( Action method ) { RemoveCommand( method.Method ); }
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = ___method0;
|
|
MethodInfo_t* L_1;
|
|
L_1 = Delegate_get_Method_mB684A7525653DFE0EFC35E58449E1FC8E2A9F019(L_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
DebugLogConsole_RemoveCommand_m5B5D9DBA606BD7CF700A12DCDEED6F3CA7ABC90A(L_1, NULL);
|
|
// public static void RemoveCommand( Action method ) { RemoveCommand( method.Method ); }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::RemoveCommand(System.Delegate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_RemoveCommand_mCB959C90BB894AC0413C56D67856B51D4B8FAC12 (Delegate_t* ___method0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// public static void RemoveCommand( Delegate method ) { RemoveCommand( method.Method ); }
|
|
Delegate_t* L_0 = ___method0;
|
|
MethodInfo_t* L_1;
|
|
L_1 = Delegate_get_Method_mB684A7525653DFE0EFC35E58449E1FC8E2A9F019(L_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
DebugLogConsole_RemoveCommand_m5B5D9DBA606BD7CF700A12DCDEED6F3CA7ABC90A(L_1, NULL);
|
|
// public static void RemoveCommand( Delegate method ) { RemoveCommand( method.Method ); }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::RemoveCommand(System.Reflection.MethodInfo)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_RemoveCommand_m5B5D9DBA606BD7CF700A12DCDEED6F3CA7ABC90A (MethodInfo_t* ___method0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m6AFCEA5AB2D9694CD3281747F3D850EC0AE03440_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
// if( method != null )
|
|
MethodInfo_t* L_0 = ___method0;
|
|
bool L_1;
|
|
L_1 = MethodInfo_op_Inequality_mB73597A1FCC2F906DBCADDEC68A1B7D5B7E89FA8(L_0, (MethodInfo_t*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
// for( int i = methods.Count - 1; i >= 0; i-- )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_2 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_3;
|
|
L_3 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_2, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_3, 1));
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
// if( methods[i].method == method )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_4 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_5 = V_0;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_6;
|
|
L_6 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_4, L_5, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
MethodInfo_t* L_7 = L_6->___method_0;
|
|
MethodInfo_t* L_8 = ___method0;
|
|
bool L_9;
|
|
L_9 = MethodInfo_op_Equality_m1466AB76300C9F07856E706E7E914062175189D1(L_7, L_8, NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
// methods.RemoveAt( i );
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_10 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_11 = V_0;
|
|
List_1_RemoveAt_m6AFCEA5AB2D9694CD3281747F3D850EC0AE03440(L_10, L_11, List_1_RemoveAt_m6AFCEA5AB2D9694CD3281747F3D850EC0AE03440_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
// for( int i = methods.Count - 1; i >= 0; i-- )
|
|
int32_t L_12 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_12, 1));
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
// for( int i = methods.Count - 1; i >= 0; i-- )
|
|
int32_t L_13 = V_0;
|
|
if ((((int32_t)L_13) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.String IngameDebugConsole.DebugLogConsole::GetAutoCompleteCommand(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DebugLogConsole_GetAutoCompleteCommand_m91ECE63056F5D4631D17288E6D2579602F717C49 (String_t* ___commandStart0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
String_t* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
// int commandIndex = FindCommandIndex( commandStart );
|
|
String_t* L_0 = ___commandStart0;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
int32_t L_1;
|
|
L_1 = DebugLogConsole_FindCommandIndex_m937912A34A602748887E50AE2A6965A125E420A7(L_0, NULL);
|
|
V_0 = L_1;
|
|
// if( commandIndex < 0 )
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
// commandIndex = ~commandIndex;
|
|
int32_t L_3 = V_0;
|
|
V_0 = ((~L_3));
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
// string result = null;
|
|
V_1 = (String_t*)NULL;
|
|
// for( int i = commandIndex; i >= 0 && caseInsensitiveComparer.IsPrefix( methods[i].command, commandStart, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ); i-- )
|
|
int32_t L_4 = V_0;
|
|
V_2 = L_4;
|
|
goto IL_0029;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
// result = methods[i].command;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_5 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_6 = V_2;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_7;
|
|
L_7 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_5, L_6, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_8 = L_7->___command_3;
|
|
V_1 = L_8;
|
|
// for( int i = commandIndex; i >= 0 && caseInsensitiveComparer.IsPrefix( methods[i].command, commandStart, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ); i-- )
|
|
int32_t L_9 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract(L_9, 1));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
// for( int i = commandIndex; i >= 0 && caseInsensitiveComparer.IsPrefix( methods[i].command, commandStart, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ); i-- )
|
|
int32_t L_10 = V_2;
|
|
if ((((int32_t)L_10) < ((int32_t)0)))
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_11 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_12 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_13 = V_2;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_14;
|
|
L_14 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_12, L_13, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_15 = L_14->___command_3;
|
|
String_t* L_16 = ___commandStart0;
|
|
bool L_17;
|
|
L_17 = VirtualFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(9 /* System.Boolean System.Globalization.CompareInfo::IsPrefix(System.String,System.String,System.Globalization.CompareOptions) */, L_11, L_15, L_16, 3);
|
|
if (L_17)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
// if( result == null )
|
|
String_t* L_18 = V_1;
|
|
if (L_18)
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
{
|
|
// for( int i = commandIndex + 1; i < methods.Count && caseInsensitiveComparer.IsPrefix( methods[i].command, commandStart, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ); i++ )
|
|
int32_t L_19 = V_0;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
goto IL_0069;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
// result = methods[i].command;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_20 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_21 = V_3;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_22;
|
|
L_22 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_20, L_21, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_23 = L_22->___command_3;
|
|
V_1 = L_23;
|
|
// for( int i = commandIndex + 1; i < methods.Count && caseInsensitiveComparer.IsPrefix( methods[i].command, commandStart, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ); i++ )
|
|
int32_t L_24 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_24, 1));
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
// for( int i = commandIndex + 1; i < methods.Count && caseInsensitiveComparer.IsPrefix( methods[i].command, commandStart, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ); i++ )
|
|
int32_t L_25 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_26 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_27;
|
|
L_27 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_26, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_25) >= ((int32_t)L_27)))
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_28 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_29 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_30 = V_3;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_31;
|
|
L_31 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_29, L_30, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_32 = L_31->___command_3;
|
|
String_t* L_33 = ___commandStart0;
|
|
bool L_34;
|
|
L_34 = VirtualFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(9 /* System.Boolean System.Globalization.CompareInfo::IsPrefix(System.String,System.String,System.Globalization.CompareOptions) */, L_28, L_32, L_33, 3);
|
|
if (L_34)
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
// return result;
|
|
String_t* L_35 = V_1;
|
|
return L_35;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::ExecuteCommand(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_ExecuteCommand_m09EFF4CAD43DDF1822589BCA5466F2BF3B02CD21 (String_t* ___command0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0FEDE06A2790398E6431E1A0B22E2B990AE52172_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m77380B71C791340B3330CF6AD09FE5256DA675CD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mC6C7AEBB0F980A717A87C0D12377984A464F0934_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m6AFCEA5AB2D9694CD3281747F3D850EC0AE03440_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Void_t4861ACF8F4594C3437BB48B6E56783494B843915_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B44FACB666ADB4330FE19222A5701DCCCFE66CC);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral313E0A856EB7575E1195D830714F903CCE78FE20);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3A4AC05C4F5818A6FE9A499AD41C9753D9935F72);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral52668B99A41E5E2F8CDE0E8B4D46D3AE5E91D339);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral644C842498F9CA135C43D97A58C8C3AA7FA31CE2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8239DDE7DBC91495DACC42B52FAF15E9C617D4D7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral866946C1436C46F37E58EA65BAEB1FBCD7EA9FA6);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral998D298BA7A34FAEDAF3D4DF744B85C69D48AB41);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB427CCF6254D0C0B128ABC4D756782736D6F11B3);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC12B937AA1BFC0EC393DC0DED57F5DE36A394386);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF64D2ED522CC8AA69BAF45AFAFC9A4B7B045672B);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* V_2 = NULL;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_3 = NULL;
|
|
String_t* V_4 = NULL;
|
|
String_t* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
String_t* V_7 = NULL;
|
|
int32_t V_8 = 0;
|
|
StringBuilder_t* V_9 = NULL;
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* V_13 = NULL;
|
|
bool V_14 = false;
|
|
int32_t V_15 = 0;
|
|
String_t* V_16 = NULL;
|
|
Type_t* V_17 = NULL;
|
|
RuntimeObject* V_18 = NULL;
|
|
Exception_t* V_19 = NULL;
|
|
RuntimeObject* V_20 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
String_t* G_B55_0 = NULL;
|
|
{
|
|
// if( command == null )
|
|
String_t* L_0 = ___command0;
|
|
if (L_0)
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
// command = command.Trim();
|
|
String_t* L_1 = ___command0;
|
|
String_t* L_2;
|
|
L_2 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_1, NULL);
|
|
___command0 = L_2;
|
|
// if( command.Length == 0 )
|
|
String_t* L_3 = ___command0;
|
|
int32_t L_4;
|
|
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
// commandArguments.Clear();
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_5 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___commandArguments_4;
|
|
List_1_Clear_mC6C7AEBB0F980A717A87C0D12377984A464F0934_inline(L_5, List_1_Clear_mC6C7AEBB0F980A717A87C0D12377984A464F0934_RuntimeMethod_var);
|
|
// FetchArgumentsFromCommand( command, commandArguments );
|
|
String_t* L_6 = ___command0;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_7 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___commandArguments_4;
|
|
DebugLogConsole_FetchArgumentsFromCommand_mC1BAA30A6C63276103CEE04B898336A8900FDCAF(L_6, L_7, NULL);
|
|
// matchingMethods.Clear();
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_8 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
List_1_Clear_m77380B71C791340B3330CF6AD09FE5256DA675CD_inline(L_8, List_1_Clear_m77380B71C791340B3330CF6AD09FE5256DA675CD_RuntimeMethod_var);
|
|
// bool parameterCountMismatch = false;
|
|
V_0 = (bool)0;
|
|
// int commandIndex = FindCommandIndex( commandArguments[0] );
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_9 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___commandArguments_4;
|
|
String_t* L_10;
|
|
L_10 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_9, 0, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
int32_t L_11;
|
|
L_11 = DebugLogConsole_FindCommandIndex_m937912A34A602748887E50AE2A6965A125E420A7(L_10, NULL);
|
|
V_1 = L_11;
|
|
// if( commandIndex >= 0 )
|
|
int32_t L_12 = V_1;
|
|
if ((((int32_t)L_12) < ((int32_t)0)))
|
|
{
|
|
goto IL_012f;
|
|
}
|
|
}
|
|
{
|
|
// string _command = commandArguments[0];
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_13 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___commandArguments_4;
|
|
String_t* L_14;
|
|
L_14 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_13, 0, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
V_5 = L_14;
|
|
// int commandLastIndex = commandIndex;
|
|
int32_t L_15 = V_1;
|
|
V_6 = L_15;
|
|
goto IL_0064;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
// commandIndex--;
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_16, 1));
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
// while( commandIndex > 0 && caseInsensitiveComparer.Compare( methods[commandIndex - 1].command, _command, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ) == 0 )
|
|
int32_t L_17 = V_1;
|
|
if ((((int32_t)L_17) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_18 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_19 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_20 = V_1;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_21;
|
|
L_21 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_19, ((int32_t)il2cpp_codegen_subtract(L_20, 1)), List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_22 = L_21->___command_3;
|
|
String_t* L_23 = V_5;
|
|
int32_t L_24;
|
|
L_24 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_18, L_22, L_23, 3);
|
|
if (!L_24)
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
|
|
IL_008b:
|
|
{
|
|
// commandLastIndex++;
|
|
int32_t L_25 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_25, 1));
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
// while( commandLastIndex < methods.Count - 1 && caseInsensitiveComparer.Compare( methods[commandLastIndex + 1].command, _command, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ) == 0 )
|
|
int32_t L_26 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_27 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_28;
|
|
L_28 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_27, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_26) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_28, 1)))))
|
|
{
|
|
goto IL_012a;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_29 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_30 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_31 = V_6;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_32;
|
|
L_32 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_30, ((int32_t)il2cpp_codegen_add(L_31, 1)), List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_33 = L_32->___command_3;
|
|
String_t* L_34 = V_5;
|
|
int32_t L_35;
|
|
L_35 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_29, L_33, L_34, 3);
|
|
if (!L_35)
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_012a;
|
|
}
|
|
|
|
IL_00c8:
|
|
{
|
|
// if( !methods[commandIndex].IsValid() )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_36 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_37 = V_1;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_38;
|
|
L_38 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_36, L_37, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
bool L_39;
|
|
L_39 = ConsoleMethodInfo_IsValid_m9F0346F09F2E31E1F774FC741BD75AEE58BF18D7(L_38, NULL);
|
|
if (L_39)
|
|
{
|
|
goto IL_00ed;
|
|
}
|
|
}
|
|
{
|
|
// methods.RemoveAt( commandIndex );
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_40 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_41 = V_1;
|
|
List_1_RemoveAt_m6AFCEA5AB2D9694CD3281747F3D850EC0AE03440(L_40, L_41, List_1_RemoveAt_m6AFCEA5AB2D9694CD3281747F3D850EC0AE03440_RuntimeMethod_var);
|
|
// commandLastIndex--;
|
|
int32_t L_42 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_subtract(L_42, 1));
|
|
goto IL_012a;
|
|
}
|
|
|
|
IL_00ed:
|
|
{
|
|
// if( methods[commandIndex].parameterTypes.Length == commandArguments.Count - 1 )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_43 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_44 = V_1;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_45;
|
|
L_45 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_43, L_44, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_46 = L_45->___parameterTypes_1;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_47 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___commandArguments_4;
|
|
int32_t L_48;
|
|
L_48 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_47, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
if ((!(((uint32_t)((int32_t)(((RuntimeArray*)L_46)->max_length))) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_48, 1))))))
|
|
{
|
|
goto IL_0124;
|
|
}
|
|
}
|
|
{
|
|
// matchingMethods.Add( methods[commandIndex] );
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_49 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_50 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_51 = V_1;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_52;
|
|
L_52 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_50, L_51, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
List_1_Add_m0FEDE06A2790398E6431E1A0B22E2B990AE52172_inline(L_49, L_52, List_1_Add_m0FEDE06A2790398E6431E1A0B22E2B990AE52172_RuntimeMethod_var);
|
|
goto IL_0126;
|
|
}
|
|
|
|
IL_0124:
|
|
{
|
|
// parameterCountMismatch = true;
|
|
V_0 = (bool)1;
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
// commandIndex++;
|
|
int32_t L_53 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_53, 1));
|
|
}
|
|
|
|
IL_012a:
|
|
{
|
|
// while( commandIndex <= commandLastIndex )
|
|
int32_t L_54 = V_1;
|
|
int32_t L_55 = V_6;
|
|
if ((((int32_t)L_54) <= ((int32_t)L_55)))
|
|
{
|
|
goto IL_00c8;
|
|
}
|
|
}
|
|
|
|
IL_012f:
|
|
{
|
|
// if( matchingMethods.Count == 0 )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_56 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
int32_t L_57;
|
|
L_57 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_56, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if (L_57)
|
|
{
|
|
goto IL_028e;
|
|
}
|
|
}
|
|
{
|
|
// string _command = commandArguments[0];
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_58 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___commandArguments_4;
|
|
String_t* L_59;
|
|
L_59 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_58, 0, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
V_7 = L_59;
|
|
// FindCommands( _command, !parameterCountMismatch, matchingMethods );
|
|
String_t* L_60 = V_7;
|
|
bool L_61 = V_0;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_62 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
DebugLogConsole_FindCommands_m33C4DDBF9B312C69EED77A268C8BBFB218F51146(L_60, (bool)((((int32_t)L_61) == ((int32_t)0))? 1 : 0), L_62, NULL);
|
|
// if( matchingMethods.Count == 0 )
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_63 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
int32_t L_64;
|
|
L_64 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_63, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if (L_64)
|
|
{
|
|
goto IL_017e;
|
|
}
|
|
}
|
|
{
|
|
// Debug.LogWarning( string.Concat( "ERROR: can't find command '", _command, "'" ) );
|
|
String_t* L_65 = V_7;
|
|
String_t* L_66;
|
|
L_66 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteralC12B937AA1BFC0EC393DC0DED57F5DE36A394386, L_65, _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(L_66, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_017e:
|
|
{
|
|
// int commandsLength = _command.Length + 75;
|
|
String_t* L_67 = V_7;
|
|
int32_t L_68;
|
|
L_68 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_67, NULL);
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_68, ((int32_t)75)));
|
|
// for( int i = 0; i < matchingMethods.Count; i++ )
|
|
V_10 = 0;
|
|
goto IL_01b2;
|
|
}
|
|
|
|
IL_018f:
|
|
{
|
|
// commandsLength += matchingMethods[i].signature.Length + 7;
|
|
int32_t L_69 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_70 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
int32_t L_71 = V_10;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_72;
|
|
L_72 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_70, L_71, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_73 = L_72->___signature_4;
|
|
int32_t L_74;
|
|
L_74 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_73, NULL);
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_69, ((int32_t)il2cpp_codegen_add(L_74, 7))));
|
|
// for( int i = 0; i < matchingMethods.Count; i++ )
|
|
int32_t L_75 = V_10;
|
|
V_10 = ((int32_t)il2cpp_codegen_add(L_75, 1));
|
|
}
|
|
|
|
IL_01b2:
|
|
{
|
|
// for( int i = 0; i < matchingMethods.Count; i++ )
|
|
int32_t L_76 = V_10;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_77 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
int32_t L_78;
|
|
L_78 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_77, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_76) < ((int32_t)L_78)))
|
|
{
|
|
goto IL_018f;
|
|
}
|
|
}
|
|
{
|
|
// StringBuilder stringBuilder = new StringBuilder( commandsLength );
|
|
int32_t L_79 = V_8;
|
|
StringBuilder_t* L_80 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_80, L_79, NULL);
|
|
V_9 = L_80;
|
|
// if( parameterCountMismatch )
|
|
bool L_81 = V_0;
|
|
if (!L_81)
|
|
{
|
|
goto IL_0207;
|
|
}
|
|
}
|
|
{
|
|
// stringBuilder.Append( "ERROR: '" ).Append( _command ).Append( "' doesn't take " ).Append( commandArguments.Count - 1 ).Append( " parameter(s). Available command(s):" );
|
|
StringBuilder_t* L_82 = V_9;
|
|
StringBuilder_t* L_83;
|
|
L_83 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_82, _stringLiteral644C842498F9CA135C43D97A58C8C3AA7FA31CE2, NULL);
|
|
String_t* L_84 = V_7;
|
|
StringBuilder_t* L_85;
|
|
L_85 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_83, L_84, NULL);
|
|
StringBuilder_t* L_86;
|
|
L_86 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_85, _stringLiteral866946C1436C46F37E58EA65BAEB1FBCD7EA9FA6, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_87 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___commandArguments_4;
|
|
int32_t L_88;
|
|
L_88 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_87, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
StringBuilder_t* L_89;
|
|
L_89 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_86, ((int32_t)il2cpp_codegen_subtract(L_88, 1)), NULL);
|
|
StringBuilder_t* L_90;
|
|
L_90 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_89, _stringLiteral998D298BA7A34FAEDAF3D4DF744B85C69D48AB41, NULL);
|
|
goto IL_0225;
|
|
}
|
|
|
|
IL_0207:
|
|
{
|
|
// stringBuilder.Append( "ERROR: can't find command '" ).Append( _command ).Append( "'. Did you mean:" );
|
|
StringBuilder_t* L_91 = V_9;
|
|
StringBuilder_t* L_92;
|
|
L_92 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_91, _stringLiteralC12B937AA1BFC0EC393DC0DED57F5DE36A394386, NULL);
|
|
String_t* L_93 = V_7;
|
|
StringBuilder_t* L_94;
|
|
L_94 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_92, L_93, NULL);
|
|
StringBuilder_t* L_95;
|
|
L_95 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_94, _stringLiteral52668B99A41E5E2F8CDE0E8B4D46D3AE5E91D339, NULL);
|
|
}
|
|
|
|
IL_0225:
|
|
{
|
|
// for( int i = 0; i < matchingMethods.Count; i++ )
|
|
V_11 = 0;
|
|
goto IL_0253;
|
|
}
|
|
|
|
IL_022a:
|
|
{
|
|
// stringBuilder.Append( "\n - " ).Append( matchingMethods[i].signature );
|
|
StringBuilder_t* L_96 = V_9;
|
|
StringBuilder_t* L_97;
|
|
L_97 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_96, _stringLiteral313E0A856EB7575E1195D830714F903CCE78FE20, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_98 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
int32_t L_99 = V_11;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_100;
|
|
L_100 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_98, L_99, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_101 = L_100->___signature_4;
|
|
StringBuilder_t* L_102;
|
|
L_102 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_97, L_101, NULL);
|
|
// for( int i = 0; i < matchingMethods.Count; i++ )
|
|
int32_t L_103 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add(L_103, 1));
|
|
}
|
|
|
|
IL_0253:
|
|
{
|
|
// for( int i = 0; i < matchingMethods.Count; i++ )
|
|
int32_t L_104 = V_11;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_105 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
int32_t L_106;
|
|
L_106 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_105, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_104) < ((int32_t)L_106)))
|
|
{
|
|
goto IL_022a;
|
|
}
|
|
}
|
|
{
|
|
// Debug.LogWarning( stringBuilder.ToString() );
|
|
StringBuilder_t* L_107 = V_9;
|
|
String_t* L_108;
|
|
L_108 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_107);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(L_108, NULL);
|
|
// if( DebugLogManager.Instance )
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_109;
|
|
L_109 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_110;
|
|
L_110 = Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A(L_109, NULL);
|
|
if (!L_110)
|
|
{
|
|
goto IL_028d;
|
|
}
|
|
}
|
|
{
|
|
// DebugLogManager.Instance.ExpandLatestPendingLog();
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_111;
|
|
L_111 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
DebugLogManager_ExpandLatestPendingLog_m3049C9438441A4BC6BBF827C416CD88D5D2D597E(L_111, NULL);
|
|
// DebugLogManager.Instance.StripStackTraceFromLatestPendingLog();
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_112;
|
|
L_112 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
DebugLogManager_StripStackTraceFromLatestPendingLog_m66AE6A25F37E381D549C2AD6372B2FDF871F2A67(L_112, NULL);
|
|
}
|
|
|
|
IL_028d:
|
|
{
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_028e:
|
|
{
|
|
// ConsoleMethodInfo methodToExecute = null;
|
|
V_2 = (ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79*)NULL;
|
|
// object[] parameters = new object[commandArguments.Count - 1];
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_113 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___commandArguments_4;
|
|
int32_t L_114;
|
|
L_114 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_113, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_115 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract(L_114, 1)));
|
|
V_3 = L_115;
|
|
// string errorMessage = null;
|
|
V_4 = (String_t*)NULL;
|
|
// for( int i = 0; i < matchingMethods.Count && methodToExecute == null; i++ )
|
|
V_12 = 0;
|
|
goto IL_0356;
|
|
}
|
|
|
|
IL_02ad:
|
|
{
|
|
// ConsoleMethodInfo methodInfo = matchingMethods[i];
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_116 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
int32_t L_117 = V_12;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_118;
|
|
L_118 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_116, L_117, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
V_13 = L_118;
|
|
// bool success = true;
|
|
V_14 = (bool)1;
|
|
// for( int j = 0; j < methodInfo.parameterTypes.Length && success; j++ )
|
|
V_15 = 0;
|
|
goto IL_0334;
|
|
}
|
|
|
|
IL_02c3:
|
|
{
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
// string argument = commandArguments[j + 1];
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_119 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___commandArguments_4;
|
|
int32_t L_120 = V_15;
|
|
String_t* L_121;
|
|
L_121 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_119, ((int32_t)il2cpp_codegen_add(L_120, 1)), List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
V_16 = L_121;
|
|
// Type parameterType = methodInfo.parameterTypes[j];
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_122 = V_13;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_123 = L_122->___parameterTypes_1;
|
|
int32_t L_124 = V_15;
|
|
int32_t L_125 = L_124;
|
|
Type_t* L_126 = (L_123)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_125));
|
|
V_17 = L_126;
|
|
// if( ParseArgument( argument, parameterType, out val ) )
|
|
String_t* L_127 = V_16;
|
|
Type_t* L_128 = V_17;
|
|
bool L_129;
|
|
L_129 = DebugLogConsole_ParseArgument_mD38752180CA3F7F281044CFAA47E4CD34597CC24(L_127, L_128, (&V_18), NULL);
|
|
if (!L_129)
|
|
{
|
|
goto IL_02f5_1;
|
|
}
|
|
}
|
|
{
|
|
// parameters[j] = val;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_130 = V_3;
|
|
int32_t L_131 = V_15;
|
|
RuntimeObject* L_132 = V_18;
|
|
ArrayElementTypeCheck (L_130, L_132);
|
|
(L_130)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_131), (RuntimeObject*)L_132);
|
|
goto IL_0312_1;
|
|
}
|
|
|
|
IL_02f5_1:
|
|
{
|
|
// success = false;
|
|
V_14 = (bool)0;
|
|
// errorMessage = string.Concat( "ERROR: couldn't parse ", argument, " to ", GetTypeReadableName( parameterType ) );
|
|
String_t* L_133 = V_16;
|
|
Type_t* L_134 = V_17;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
String_t* L_135;
|
|
L_135 = DebugLogConsole_GetTypeReadableName_mD536CA0D3C2534C91B7BA1096C1F09B8D4E83934(L_134, NULL);
|
|
String_t* L_136;
|
|
L_136 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(_stringLiteral0B44FACB666ADB4330FE19222A5701DCCCFE66CC, L_133, _stringLiteral8239DDE7DBC91495DACC42B52FAF15E9C617D4D7, L_135, NULL);
|
|
V_4 = L_136;
|
|
}
|
|
|
|
IL_0312_1:
|
|
{
|
|
// }
|
|
goto IL_032e;
|
|
}
|
|
}// end try (depth: 1)
|
|
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_0314;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0314:
|
|
{// begin catch(System.Exception)
|
|
// catch( Exception e )
|
|
V_19 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
|
|
// success = false;
|
|
V_14 = (bool)0;
|
|
// errorMessage = "ERROR: " + e.ToString();
|
|
Exception_t* L_137 = V_19;
|
|
String_t* L_138;
|
|
L_138 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_137);
|
|
String_t* L_139;
|
|
L_139 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4D2A7DC38E3D06969C09083548DE5A6AC3F8CE8E)), L_138, NULL);
|
|
V_4 = L_139;
|
|
// }
|
|
IL2CPP_POP_ACTIVE_EXCEPTION();
|
|
goto IL_032e;
|
|
}// end catch (depth: 1)
|
|
|
|
IL_032e:
|
|
{
|
|
// for( int j = 0; j < methodInfo.parameterTypes.Length && success; j++ )
|
|
int32_t L_140 = V_15;
|
|
V_15 = ((int32_t)il2cpp_codegen_add(L_140, 1));
|
|
}
|
|
|
|
IL_0334:
|
|
{
|
|
// for( int j = 0; j < methodInfo.parameterTypes.Length && success; j++ )
|
|
int32_t L_141 = V_15;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_142 = V_13;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_143 = L_142->___parameterTypes_1;
|
|
bool L_144 = V_14;
|
|
if (((int32_t)(((((int32_t)L_141) < ((int32_t)((int32_t)(((RuntimeArray*)L_143)->max_length))))? 1 : 0)&(int32_t)L_144)))
|
|
{
|
|
goto IL_02c3;
|
|
}
|
|
}
|
|
{
|
|
// if( success )
|
|
bool L_145 = V_14;
|
|
if (!L_145)
|
|
{
|
|
goto IL_0350;
|
|
}
|
|
}
|
|
{
|
|
// methodToExecute = methodInfo;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_146 = V_13;
|
|
V_2 = L_146;
|
|
}
|
|
|
|
IL_0350:
|
|
{
|
|
// for( int i = 0; i < matchingMethods.Count && methodToExecute == null; i++ )
|
|
int32_t L_147 = V_12;
|
|
V_12 = ((int32_t)il2cpp_codegen_add(L_147, 1));
|
|
}
|
|
|
|
IL_0356:
|
|
{
|
|
// for( int i = 0; i < matchingMethods.Count && methodToExecute == null; i++ )
|
|
int32_t L_148 = V_12;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_149 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___matchingMethods_1;
|
|
int32_t L_150;
|
|
L_150 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_149, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_148) >= ((int32_t)L_150)))
|
|
{
|
|
goto IL_036a;
|
|
}
|
|
}
|
|
{
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_151 = V_2;
|
|
if (!L_151)
|
|
{
|
|
goto IL_02ad;
|
|
}
|
|
}
|
|
|
|
IL_036a:
|
|
{
|
|
// if( methodToExecute == null )
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_152 = V_2;
|
|
if (L_152)
|
|
{
|
|
goto IL_0385;
|
|
}
|
|
}
|
|
{
|
|
// Debug.LogWarning( !string.IsNullOrEmpty( errorMessage ) ? errorMessage : "ERROR: something went wrong" );
|
|
String_t* L_153 = V_4;
|
|
bool L_154;
|
|
L_154 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_153, NULL);
|
|
if (!L_154)
|
|
{
|
|
goto IL_037d;
|
|
}
|
|
}
|
|
{
|
|
G_B55_0 = _stringLiteral3A4AC05C4F5818A6FE9A499AD41C9753D9935F72;
|
|
goto IL_037f;
|
|
}
|
|
|
|
IL_037d:
|
|
{
|
|
String_t* L_155 = V_4;
|
|
G_B55_0 = L_155;
|
|
}
|
|
|
|
IL_037f:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(G_B55_0, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0385:
|
|
{
|
|
// object result = methodToExecute.method.Invoke( methodToExecute.instance, parameters );
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_156 = V_2;
|
|
MethodInfo_t* L_157 = L_156->___method_0;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_158 = V_2;
|
|
RuntimeObject* L_159 = L_158->___instance_2;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_160 = V_3;
|
|
RuntimeObject* L_161;
|
|
L_161 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_157, L_159, L_160, NULL);
|
|
V_20 = L_161;
|
|
// if( methodToExecute.method.ReturnType != typeof( void ) )
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_162 = V_2;
|
|
MethodInfo_t* L_163 = L_162->___method_0;
|
|
Type_t* L_164;
|
|
L_164 = VirtualFuncInvoker0< Type_t* >::Invoke(38 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_163);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_165 = { reinterpret_cast<intptr_t> (Void_t4861ACF8F4594C3437BB48B6E56783494B843915_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_166;
|
|
L_166 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_165, NULL);
|
|
bool L_167;
|
|
L_167 = Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172(L_164, L_166, NULL);
|
|
if (!L_167)
|
|
{
|
|
goto IL_03e4;
|
|
}
|
|
}
|
|
{
|
|
// if( result == null || result.Equals( null ) )
|
|
RuntimeObject* L_168 = V_20;
|
|
if (!L_168)
|
|
{
|
|
goto IL_03c3;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_169 = V_20;
|
|
bool L_170;
|
|
L_170 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_169, NULL);
|
|
if (!L_170)
|
|
{
|
|
goto IL_03ce;
|
|
}
|
|
}
|
|
|
|
IL_03c3:
|
|
{
|
|
// Debug.Log( "Returned: null" );
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Log_m87A9A3C761FF5C43ED8A53B16190A53D08F818BB(_stringLiteralF64D2ED522CC8AA69BAF45AFAFC9A4B7B045672B, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_03ce:
|
|
{
|
|
// Debug.Log( "Returned: " + result.ToString() );
|
|
RuntimeObject* L_171 = V_20;
|
|
String_t* L_172;
|
|
L_172 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_171);
|
|
String_t* L_173;
|
|
L_173 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralB427CCF6254D0C0B128ABC4D756782736D6F11B3, L_172, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Log_m87A9A3C761FF5C43ED8A53B16190A53D08F818BB(L_173, NULL);
|
|
}
|
|
|
|
IL_03e4:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::FetchArgumentsFromCommand(System.String,System.Collections.Generic.List`1<System.String>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_FetchArgumentsFromCommand_mC1BAA30A6C63276103CEE04B898336A8900FDCAF (String_t* ___command0, List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___commandArguments1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_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;
|
|
int32_t G_B7_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
String_t* G_B10_1 = NULL;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* G_B10_2 = NULL;
|
|
int32_t G_B9_0 = 0;
|
|
String_t* G_B9_1 = NULL;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* G_B9_2 = NULL;
|
|
int32_t G_B11_0 = 0;
|
|
int32_t G_B11_1 = 0;
|
|
String_t* G_B11_2 = NULL;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* G_B11_3 = NULL;
|
|
{
|
|
// for( int i = 0; i < command.Length; i++ )
|
|
V_0 = 0;
|
|
goto IL_009f;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
// if( char.IsWhiteSpace( command[i] ) )
|
|
String_t* L_0 = ___command0;
|
|
int32_t L_1 = V_0;
|
|
Il2CppChar L_2;
|
|
L_2 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, L_1, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
}
|
|
{
|
|
// int delimiterIndex = IndexOfDelimiterGroup( command[i] );
|
|
String_t* L_4 = ___command0;
|
|
int32_t L_5 = V_0;
|
|
Il2CppChar L_6;
|
|
L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, L_5, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
int32_t L_7;
|
|
L_7 = DebugLogConsole_IndexOfDelimiterGroup_m0CC9FFF8192FA903465847E9B51D5D7B6A826F29(L_6, NULL);
|
|
V_1 = L_7;
|
|
// if( delimiterIndex >= 0 )
|
|
int32_t L_8 = V_1;
|
|
if ((((int32_t)L_8) < ((int32_t)0)))
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
// int endIndex = IndexOfDelimiterGroupEnd( command, delimiterIndex, i + 1 );
|
|
String_t* L_9 = ___command0;
|
|
int32_t L_10 = V_1;
|
|
int32_t L_11 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
int32_t L_12;
|
|
L_12 = DebugLogConsole_IndexOfDelimiterGroupEnd_mA3CF7EEF7D82521E9173011822619D159E404C72(L_9, L_10, ((int32_t)il2cpp_codegen_add(L_11, 1)), NULL);
|
|
V_2 = L_12;
|
|
// commandArguments.Add( command.Substring( i + 1, endIndex - i - 1 ) );
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_13 = ___commandArguments1;
|
|
String_t* L_14 = ___command0;
|
|
int32_t L_15 = V_0;
|
|
int32_t L_16 = V_2;
|
|
int32_t L_17 = V_0;
|
|
String_t* L_18;
|
|
L_18 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_14, ((int32_t)il2cpp_codegen_add(L_15, 1)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_16, L_17)), 1)), NULL);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_13, L_18, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
// i = ( endIndex < command.Length - 1 && command[endIndex + 1] == ',' ) ? endIndex + 1 : endIndex;
|
|
int32_t L_19 = V_2;
|
|
String_t* L_20 = ___command0;
|
|
int32_t L_21;
|
|
L_21 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_20, NULL);
|
|
if ((((int32_t)L_19) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_21, 1)))))
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_22 = ___command0;
|
|
int32_t L_23 = V_2;
|
|
Il2CppChar L_24;
|
|
L_24 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_22, ((int32_t)il2cpp_codegen_add(L_23, 1)), NULL);
|
|
if ((((int32_t)L_24) == ((int32_t)((int32_t)44))))
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
int32_t L_25 = V_2;
|
|
G_B7_0 = L_25;
|
|
goto IL_0066;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
int32_t L_26 = V_2;
|
|
G_B7_0 = ((int32_t)il2cpp_codegen_add(L_26, 1));
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
V_0 = G_B7_0;
|
|
goto IL_009b;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
// int endIndex = IndexOfChar( command, ' ', i + 1 );
|
|
String_t* L_27 = ___command0;
|
|
int32_t L_28 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
int32_t L_29;
|
|
L_29 = DebugLogConsole_IndexOfChar_m4C1A446342AA125173F57AAED37E9445C8C9CD37(L_27, ((int32_t)32), ((int32_t)il2cpp_codegen_add(L_28, 1)), NULL);
|
|
V_3 = L_29;
|
|
// commandArguments.Add( command.Substring( i, command[endIndex - 1] == ',' ? endIndex - 1 - i : endIndex - i ) );
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_30 = ___commandArguments1;
|
|
String_t* L_31 = ___command0;
|
|
int32_t L_32 = V_0;
|
|
String_t* L_33 = ___command0;
|
|
int32_t L_34 = V_3;
|
|
Il2CppChar L_35;
|
|
L_35 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_33, ((int32_t)il2cpp_codegen_subtract(L_34, 1)), NULL);
|
|
G_B9_0 = L_32;
|
|
G_B9_1 = L_31;
|
|
G_B9_2 = L_30;
|
|
if ((((int32_t)L_35) == ((int32_t)((int32_t)44))))
|
|
{
|
|
G_B10_0 = L_32;
|
|
G_B10_1 = L_31;
|
|
G_B10_2 = L_30;
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_36 = V_3;
|
|
int32_t L_37 = V_0;
|
|
G_B11_0 = ((int32_t)il2cpp_codegen_subtract(L_36, L_37));
|
|
G_B11_1 = G_B9_0;
|
|
G_B11_2 = G_B9_1;
|
|
G_B11_3 = G_B9_2;
|
|
goto IL_008f;
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
int32_t L_38 = V_3;
|
|
int32_t L_39 = V_0;
|
|
G_B11_0 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_38, 1)), L_39));
|
|
G_B11_1 = G_B10_0;
|
|
G_B11_2 = G_B10_1;
|
|
G_B11_3 = G_B10_2;
|
|
}
|
|
|
|
IL_008f:
|
|
{
|
|
String_t* L_40;
|
|
L_40 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(G_B11_2, G_B11_1, G_B11_0, NULL);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(G_B11_3, L_40, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
// i = endIndex;
|
|
int32_t L_41 = V_3;
|
|
V_0 = L_41;
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
// for( int i = 0; i < command.Length; i++ )
|
|
int32_t L_42 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_42, 1));
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
// for( int i = 0; i < command.Length; i++ )
|
|
int32_t L_43 = V_0;
|
|
String_t* L_44 = ___command0;
|
|
int32_t L_45;
|
|
L_45 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_44, NULL);
|
|
if ((((int32_t)L_43) < ((int32_t)L_45)))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::FindCommands(System.String,System.Boolean,System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_FindCommands_m33C4DDBF9B312C69EED77A268C8BBFB218F51146 (String_t* ___commandName0, bool ___allowSubstringMatching1, List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* ___matchingCommands2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0FEDE06A2790398E6431E1A0B22E2B990AE52172_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
// if( allowSubstringMatching )
|
|
bool L_0 = ___allowSubstringMatching1;
|
|
if (!L_0)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
// for( int i = 0; i < methods.Count; i++ )
|
|
V_0 = 0;
|
|
goto IL_004d;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
// if( methods[i].IsValid() && caseInsensitiveComparer.IndexOf( methods[i].command, commandName, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ) >= 0 )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_1 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_2 = V_0;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_3;
|
|
L_3 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_1, L_2, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
bool L_4;
|
|
L_4 = ConsoleMethodInfo_IsValid_m9F0346F09F2E31E1F774FC741BD75AEE58BF18D7(L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_5 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_6 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_7 = V_0;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_8;
|
|
L_8 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_6, L_7, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_9 = L_8->___command_3;
|
|
String_t* L_10 = ___commandName0;
|
|
int32_t L_11;
|
|
L_11 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(11 /* System.Int32 System.Globalization.CompareInfo::IndexOf(System.String,System.String,System.Globalization.CompareOptions) */, L_5, L_9, L_10, 3);
|
|
if ((((int32_t)L_11) < ((int32_t)0)))
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
// matchingCommands.Add( methods[i] );
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_12 = ___matchingCommands2;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_13 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_14 = V_0;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_15;
|
|
L_15 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_13, L_14, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
List_1_Add_m0FEDE06A2790398E6431E1A0B22E2B990AE52172_inline(L_12, L_15, List_1_Add_m0FEDE06A2790398E6431E1A0B22E2B990AE52172_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
// for( int i = 0; i < methods.Count; i++ )
|
|
int32_t L_16 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
// for( int i = 0; i < methods.Count; i++ )
|
|
int32_t L_17 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_18 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_19;
|
|
L_19 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_18, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_17) < ((int32_t)L_19)))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
// for( int i = 0; i < methods.Count; i++ )
|
|
V_1 = 0;
|
|
goto IL_00a4;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
// if( methods[i].IsValid() && caseInsensitiveComparer.Compare( methods[i].command, commandName, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ) == 0 )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_20 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_21 = V_1;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_22;
|
|
L_22 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_20, L_21, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
bool L_23;
|
|
L_23 = ConsoleMethodInfo_IsValid_m9F0346F09F2E31E1F774FC741BD75AEE58BF18D7(L_22, NULL);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_24 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_25 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_26 = V_1;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_27;
|
|
L_27 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_25, L_26, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_28 = L_27->___command_3;
|
|
String_t* L_29 = ___commandName0;
|
|
int32_t L_30;
|
|
L_30 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_24, L_28, L_29, 3);
|
|
if (L_30)
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
// matchingCommands.Add( methods[i] );
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_31 = ___matchingCommands2;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_32 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_33 = V_1;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_34;
|
|
L_34 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_32, L_33, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
List_1_Add_m0FEDE06A2790398E6431E1A0B22E2B990AE52172_inline(L_31, L_34, List_1_Add_m0FEDE06A2790398E6431E1A0B22E2B990AE52172_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
// for( int i = 0; i < methods.Count; i++ )
|
|
int32_t L_35 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_35, 1));
|
|
}
|
|
|
|
IL_00a4:
|
|
{
|
|
// for( int i = 0; i < methods.Count; i++ )
|
|
int32_t L_36 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_37 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_38;
|
|
L_38 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_37, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_36) < ((int32_t)L_38)))
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole::GetCommandSuggestions(System.String,System.Collections.Generic.List`1<IngameDebugConsole.ConsoleMethodInfo>,System.Collections.Generic.List`1<System.Int32>,System.String&,System.Int32&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogConsole_GetCommandSuggestions_mD9A1F9ECB81527BDD14183214F668B8C6AA0DCBF (String_t* ___command0, List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* ___matchingCommands1, List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* ___caretIndexIncrements2, String_t** ___commandName3, int32_t* ___numberOfParameters4, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m0FEDE06A2790398E6431E1A0B22E2B990AE52172_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
int32_t V_9 = 0;
|
|
int32_t G_B13_0 = 0;
|
|
int32_t G_B18_0 = 0;
|
|
{
|
|
// bool commandNameCalculated = false;
|
|
V_0 = (bool)0;
|
|
// bool commandNameFullyTyped = false;
|
|
V_1 = (bool)0;
|
|
// numberOfParameters = -1;
|
|
int32_t* L_0 = ___numberOfParameters4;
|
|
*((int32_t*)L_0) = (int32_t)(-1);
|
|
// for( int i = 0; i < command.Length; i++ )
|
|
V_2 = 0;
|
|
goto IL_013f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
// if( char.IsWhiteSpace( command[i] ) )
|
|
String_t* L_1 = ___command0;
|
|
int32_t L_2 = V_2;
|
|
Il2CppChar L_3;
|
|
L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_1, L_2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = Char_IsWhiteSpace_m02AEC6EA19513CAFC6882CFCA54C45794D2B5924(L_3, NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_013b;
|
|
}
|
|
}
|
|
{
|
|
// int delimiterIndex = IndexOfDelimiterGroup( command[i] );
|
|
String_t* L_5 = ___command0;
|
|
int32_t L_6 = V_2;
|
|
Il2CppChar L_7;
|
|
L_7 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, L_6, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
int32_t L_8;
|
|
L_8 = DebugLogConsole_IndexOfDelimiterGroup_m0CC9FFF8192FA903465847E9B51D5D7B6A826F29(L_7, NULL);
|
|
V_3 = L_8;
|
|
// if( delimiterIndex >= 0 )
|
|
int32_t L_9 = V_3;
|
|
if ((((int32_t)L_9) < ((int32_t)0)))
|
|
{
|
|
goto IL_00be;
|
|
}
|
|
}
|
|
{
|
|
// int endIndex = IndexOfDelimiterGroupEnd( command, delimiterIndex, i + 1 );
|
|
String_t* L_10 = ___command0;
|
|
int32_t L_11 = V_3;
|
|
int32_t L_12 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
int32_t L_13;
|
|
L_13 = DebugLogConsole_IndexOfDelimiterGroupEnd_mA3CF7EEF7D82521E9173011822619D159E404C72(L_10, L_11, ((int32_t)il2cpp_codegen_add(L_12, 1)), NULL);
|
|
V_4 = L_13;
|
|
// if( !commandNameCalculated )
|
|
bool L_14 = V_0;
|
|
if (L_14)
|
|
{
|
|
goto IL_0090;
|
|
}
|
|
}
|
|
{
|
|
// commandNameCalculated = true;
|
|
V_0 = (bool)1;
|
|
// commandNameFullyTyped = command.Length > endIndex;
|
|
String_t* L_15 = ___command0;
|
|
int32_t L_16;
|
|
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
|
|
int32_t L_17 = V_4;
|
|
V_1 = (bool)((((int32_t)L_16) > ((int32_t)L_17))? 1 : 0);
|
|
// int commandNameLength = endIndex - i - 1;
|
|
int32_t L_18 = V_4;
|
|
int32_t L_19 = V_2;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_18, L_19)), 1));
|
|
// if( commandName == null || commandNameLength == 0 || commandName.Length != commandNameLength || caseInsensitiveComparer.IndexOf( command, commandName, i + 1, commandNameLength, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ) != i + 1 )
|
|
String_t** L_20 = ___commandName3;
|
|
String_t* L_21 = *((String_t**)L_20);
|
|
if (!L_21)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_22 = V_5;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_23 = ___commandName3;
|
|
String_t* L_24 = *((String_t**)L_23);
|
|
int32_t L_25;
|
|
L_25 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_24, NULL);
|
|
int32_t L_26 = V_5;
|
|
if ((!(((uint32_t)L_25) == ((uint32_t)L_26))))
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_27 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
String_t* L_28 = ___command0;
|
|
String_t** L_29 = ___commandName3;
|
|
String_t* L_30 = *((String_t**)L_29);
|
|
int32_t L_31 = V_2;
|
|
int32_t L_32 = V_5;
|
|
int32_t L_33;
|
|
L_33 = VirtualFuncInvoker5< int32_t, String_t*, String_t*, int32_t, int32_t, int32_t >::Invoke(12 /* System.Int32 System.Globalization.CompareInfo::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, L_27, L_28, L_30, ((int32_t)il2cpp_codegen_add(L_31, 1)), L_32, 3);
|
|
int32_t L_34 = V_2;
|
|
if ((((int32_t)L_33) == ((int32_t)((int32_t)il2cpp_codegen_add(L_34, 1)))))
|
|
{
|
|
goto IL_0090;
|
|
}
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
// commandName = command.Substring( i + 1, commandNameLength );
|
|
String_t** L_35 = ___commandName3;
|
|
String_t* L_36 = ___command0;
|
|
int32_t L_37 = V_2;
|
|
int32_t L_38 = V_5;
|
|
String_t* L_39;
|
|
L_39 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_36, ((int32_t)il2cpp_codegen_add(L_37, 1)), L_38, NULL);
|
|
*((RuntimeObject**)L_35) = (RuntimeObject*)L_39;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_35, (void*)(RuntimeObject*)L_39);
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
// i = ( endIndex < command.Length - 1 && command[endIndex + 1] == ',' ) ? endIndex + 1 : endIndex;
|
|
int32_t L_40 = V_4;
|
|
String_t* L_41 = ___command0;
|
|
int32_t L_42;
|
|
L_42 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_41, NULL);
|
|
if ((((int32_t)L_40) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_42, 1)))))
|
|
{
|
|
goto IL_00aa;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_43 = ___command0;
|
|
int32_t L_44 = V_4;
|
|
Il2CppChar L_45;
|
|
L_45 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_43, ((int32_t)il2cpp_codegen_add(L_44, 1)), NULL);
|
|
if ((((int32_t)L_45) == ((int32_t)((int32_t)44))))
|
|
{
|
|
goto IL_00ae;
|
|
}
|
|
}
|
|
|
|
IL_00aa:
|
|
{
|
|
int32_t L_46 = V_4;
|
|
G_B13_0 = L_46;
|
|
goto IL_00b2;
|
|
}
|
|
|
|
IL_00ae:
|
|
{
|
|
int32_t L_47 = V_4;
|
|
G_B13_0 = ((int32_t)il2cpp_codegen_add(L_47, 1));
|
|
}
|
|
|
|
IL_00b2:
|
|
{
|
|
V_2 = G_B13_0;
|
|
// caretIndexIncrements.Add( i + 1 );
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_48 = ___caretIndexIncrements2;
|
|
int32_t L_49 = V_2;
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_48, ((int32_t)il2cpp_codegen_add(L_49, 1)), List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_00be:
|
|
{
|
|
// int endIndex = IndexOfChar( command, ' ', i + 1 );
|
|
String_t* L_50 = ___command0;
|
|
int32_t L_51 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
int32_t L_52;
|
|
L_52 = DebugLogConsole_IndexOfChar_m4C1A446342AA125173F57AAED37E9445C8C9CD37(L_50, ((int32_t)32), ((int32_t)il2cpp_codegen_add(L_51, 1)), NULL);
|
|
V_6 = L_52;
|
|
// if( !commandNameCalculated )
|
|
bool L_53 = V_0;
|
|
if (L_53)
|
|
{
|
|
goto IL_0129;
|
|
}
|
|
}
|
|
{
|
|
// commandNameCalculated = true;
|
|
V_0 = (bool)1;
|
|
// commandNameFullyTyped = command.Length > endIndex;
|
|
String_t* L_54 = ___command0;
|
|
int32_t L_55;
|
|
L_55 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_54, NULL);
|
|
int32_t L_56 = V_6;
|
|
V_1 = (bool)((((int32_t)L_55) > ((int32_t)L_56))? 1 : 0);
|
|
// int commandNameLength = command[endIndex - 1] == ',' ? endIndex - 1 - i : endIndex - i;
|
|
String_t* L_57 = ___command0;
|
|
int32_t L_58 = V_6;
|
|
Il2CppChar L_59;
|
|
L_59 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_57, ((int32_t)il2cpp_codegen_subtract(L_58, 1)), NULL);
|
|
if ((((int32_t)L_59) == ((int32_t)((int32_t)44))))
|
|
{
|
|
goto IL_00ef;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_60 = V_6;
|
|
int32_t L_61 = V_2;
|
|
G_B18_0 = ((int32_t)il2cpp_codegen_subtract(L_60, L_61));
|
|
goto IL_00f5;
|
|
}
|
|
|
|
IL_00ef:
|
|
{
|
|
int32_t L_62 = V_6;
|
|
int32_t L_63 = V_2;
|
|
G_B18_0 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_62, 1)), L_63));
|
|
}
|
|
|
|
IL_00f5:
|
|
{
|
|
V_7 = G_B18_0;
|
|
// if( commandName == null || commandNameLength == 0 || commandName.Length != commandNameLength || caseInsensitiveComparer.IndexOf( command, commandName, i, commandNameLength, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ) != i )
|
|
String_t** L_64 = ___commandName3;
|
|
String_t* L_65 = *((String_t**)L_64);
|
|
if (!L_65)
|
|
{
|
|
goto IL_011e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_66 = V_7;
|
|
if (!L_66)
|
|
{
|
|
goto IL_011e;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_67 = ___commandName3;
|
|
String_t* L_68 = *((String_t**)L_67);
|
|
int32_t L_69;
|
|
L_69 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_68, NULL);
|
|
int32_t L_70 = V_7;
|
|
if ((!(((uint32_t)L_69) == ((uint32_t)L_70))))
|
|
{
|
|
goto IL_011e;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_71 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
String_t* L_72 = ___command0;
|
|
String_t** L_73 = ___commandName3;
|
|
String_t* L_74 = *((String_t**)L_73);
|
|
int32_t L_75 = V_2;
|
|
int32_t L_76 = V_7;
|
|
int32_t L_77;
|
|
L_77 = VirtualFuncInvoker5< int32_t, String_t*, String_t*, int32_t, int32_t, int32_t >::Invoke(12 /* System.Int32 System.Globalization.CompareInfo::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, L_71, L_72, L_74, L_75, L_76, 3);
|
|
int32_t L_78 = V_2;
|
|
if ((((int32_t)L_77) == ((int32_t)L_78)))
|
|
{
|
|
goto IL_0129;
|
|
}
|
|
}
|
|
|
|
IL_011e:
|
|
{
|
|
// commandName = command.Substring( i, commandNameLength );
|
|
String_t** L_79 = ___commandName3;
|
|
String_t* L_80 = ___command0;
|
|
int32_t L_81 = V_2;
|
|
int32_t L_82 = V_7;
|
|
String_t* L_83;
|
|
L_83 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_80, L_81, L_82, NULL);
|
|
*((RuntimeObject**)L_79) = (RuntimeObject*)L_83;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_79, (void*)(RuntimeObject*)L_83);
|
|
}
|
|
|
|
IL_0129:
|
|
{
|
|
// i = endIndex;
|
|
int32_t L_84 = V_6;
|
|
V_2 = L_84;
|
|
// caretIndexIncrements.Add( i );
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_85 = ___caretIndexIncrements2;
|
|
int32_t L_86 = V_2;
|
|
List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_inline(L_85, L_86, List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0133:
|
|
{
|
|
// numberOfParameters++;
|
|
int32_t* L_87 = ___numberOfParameters4;
|
|
int32_t* L_88 = ___numberOfParameters4;
|
|
int32_t L_89 = *((int32_t*)L_88);
|
|
*((int32_t*)L_87) = (int32_t)((int32_t)il2cpp_codegen_add(L_89, 1));
|
|
}
|
|
|
|
IL_013b:
|
|
{
|
|
// for( int i = 0; i < command.Length; i++ )
|
|
int32_t L_90 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_90, 1));
|
|
}
|
|
|
|
IL_013f:
|
|
{
|
|
// for( int i = 0; i < command.Length; i++ )
|
|
int32_t L_91 = V_2;
|
|
String_t* L_92 = ___command0;
|
|
int32_t L_93;
|
|
L_93 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_92, NULL);
|
|
if ((((int32_t)L_91) < ((int32_t)L_93)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
// if( !commandNameCalculated )
|
|
bool L_94 = V_0;
|
|
if (L_94)
|
|
{
|
|
goto IL_0155;
|
|
}
|
|
}
|
|
{
|
|
// commandName = string.Empty;
|
|
String_t** L_95 = ___commandName3;
|
|
String_t* L_96 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
*((RuntimeObject**)L_95) = (RuntimeObject*)L_96;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_95, (void*)(RuntimeObject*)L_96);
|
|
}
|
|
|
|
IL_0155:
|
|
{
|
|
// if( !string.IsNullOrEmpty( commandName ) )
|
|
String_t** L_97 = ___commandName3;
|
|
String_t* L_98 = *((String_t**)L_97);
|
|
bool L_99;
|
|
L_99 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_98, NULL);
|
|
if (L_99)
|
|
{
|
|
goto IL_02ff;
|
|
}
|
|
}
|
|
{
|
|
// int commandIndex = FindCommandIndex( commandName );
|
|
String_t** L_100 = ___commandName3;
|
|
String_t* L_101 = *((String_t**)L_100);
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
int32_t L_102;
|
|
L_102 = DebugLogConsole_FindCommandIndex_m937912A34A602748887E50AE2A6965A125E420A7(L_101, NULL);
|
|
V_8 = L_102;
|
|
// if( commandIndex < 0 )
|
|
int32_t L_103 = V_8;
|
|
if ((((int32_t)L_103) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0174;
|
|
}
|
|
}
|
|
{
|
|
// commandIndex = ~commandIndex;
|
|
int32_t L_104 = V_8;
|
|
V_8 = ((~L_104));
|
|
}
|
|
|
|
IL_0174:
|
|
{
|
|
// int commandLastIndex = commandIndex;
|
|
int32_t L_105 = V_8;
|
|
V_9 = L_105;
|
|
// if( !commandNameFullyTyped )
|
|
bool L_106 = V_1;
|
|
if (L_106)
|
|
{
|
|
goto IL_0228;
|
|
}
|
|
}
|
|
{
|
|
// if( commandIndex < methods.Count && caseInsensitiveComparer.IsPrefix( methods[commandIndex].command, commandName, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ) )
|
|
int32_t L_107 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_108 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_109;
|
|
L_109 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_108, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_107) >= ((int32_t)L_109)))
|
|
{
|
|
goto IL_0220;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_110 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_111 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_112 = V_8;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_113;
|
|
L_113 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_111, L_112, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_114 = L_113->___command_3;
|
|
String_t** L_115 = ___commandName3;
|
|
String_t* L_116 = *((String_t**)L_115);
|
|
bool L_117;
|
|
L_117 = VirtualFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(9 /* System.Boolean System.Globalization.CompareInfo::IsPrefix(System.String,System.String,System.Globalization.CompareOptions) */, L_110, L_114, L_116, 3);
|
|
if (!L_117)
|
|
{
|
|
goto IL_0220;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01b7;
|
|
}
|
|
|
|
IL_01b1:
|
|
{
|
|
// commandIndex--;
|
|
int32_t L_118 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_118, 1));
|
|
}
|
|
|
|
IL_01b7:
|
|
{
|
|
// while( commandIndex > 0 && caseInsensitiveComparer.IsPrefix( methods[commandIndex - 1].command, commandName, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ) )
|
|
int32_t L_119 = V_8;
|
|
if ((((int32_t)L_119) <= ((int32_t)0)))
|
|
{
|
|
goto IL_01e6;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_120 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_121 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_122 = V_8;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_123;
|
|
L_123 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_121, ((int32_t)il2cpp_codegen_subtract(L_122, 1)), List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_124 = L_123->___command_3;
|
|
String_t** L_125 = ___commandName3;
|
|
String_t* L_126 = *((String_t**)L_125);
|
|
bool L_127;
|
|
L_127 = VirtualFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(9 /* System.Boolean System.Globalization.CompareInfo::IsPrefix(System.String,System.String,System.Globalization.CompareOptions) */, L_120, L_124, L_126, 3);
|
|
if (L_127)
|
|
{
|
|
goto IL_01b1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01e6;
|
|
}
|
|
|
|
IL_01e0:
|
|
{
|
|
// commandLastIndex++;
|
|
int32_t L_128 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add(L_128, 1));
|
|
}
|
|
|
|
IL_01e6:
|
|
{
|
|
// while( commandLastIndex < methods.Count - 1 && caseInsensitiveComparer.IsPrefix( methods[commandLastIndex + 1].command, commandName, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ) )
|
|
int32_t L_129 = V_9;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_130 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_131;
|
|
L_131 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_130, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_129) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_131, 1)))))
|
|
{
|
|
goto IL_02f9;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_132 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_133 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_134 = V_9;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_135;
|
|
L_135 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_133, ((int32_t)il2cpp_codegen_add(L_134, 1)), List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_136 = L_135->___command_3;
|
|
String_t** L_137 = ___commandName3;
|
|
String_t* L_138 = *((String_t**)L_137);
|
|
bool L_139;
|
|
L_139 = VirtualFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(9 /* System.Boolean System.Globalization.CompareInfo::IsPrefix(System.String,System.String,System.Globalization.CompareOptions) */, L_132, L_136, L_138, 3);
|
|
if (L_139)
|
|
{
|
|
goto IL_01e0;
|
|
}
|
|
}
|
|
{
|
|
goto IL_02f9;
|
|
}
|
|
|
|
IL_0220:
|
|
{
|
|
// commandLastIndex = -1;
|
|
V_9 = (-1);
|
|
goto IL_02f9;
|
|
}
|
|
|
|
IL_0228:
|
|
{
|
|
// if( commandIndex < methods.Count && caseInsensitiveComparer.Compare( methods[commandIndex].command, commandName, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ) == 0 )
|
|
int32_t L_140 = V_8;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_141 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_142;
|
|
L_142 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_141, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_140) >= ((int32_t)L_142)))
|
|
{
|
|
goto IL_02c4;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_143 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_144 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_145 = V_8;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_146;
|
|
L_146 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_144, L_145, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_147 = L_146->___command_3;
|
|
String_t** L_148 = ___commandName3;
|
|
String_t* L_149 = *((String_t**)L_148);
|
|
int32_t L_150;
|
|
L_150 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_143, L_147, L_149, 3);
|
|
if (L_150)
|
|
{
|
|
goto IL_02c4;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0261;
|
|
}
|
|
|
|
IL_025b:
|
|
{
|
|
// commandIndex--;
|
|
int32_t L_151 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_151, 1));
|
|
}
|
|
|
|
IL_0261:
|
|
{
|
|
// while( commandIndex > 0 && caseInsensitiveComparer.Compare( methods[commandIndex - 1].command, commandName, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ) == 0 )
|
|
int32_t L_152 = V_8;
|
|
if ((((int32_t)L_152) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0290;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_153 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_154 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_155 = V_8;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_156;
|
|
L_156 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_154, ((int32_t)il2cpp_codegen_subtract(L_155, 1)), List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_157 = L_156->___command_3;
|
|
String_t** L_158 = ___commandName3;
|
|
String_t* L_159 = *((String_t**)L_158);
|
|
int32_t L_160;
|
|
L_160 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_153, L_157, L_159, 3);
|
|
if (!L_160)
|
|
{
|
|
goto IL_025b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0290;
|
|
}
|
|
|
|
IL_028a:
|
|
{
|
|
// commandLastIndex++;
|
|
int32_t L_161 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add(L_161, 1));
|
|
}
|
|
|
|
IL_0290:
|
|
{
|
|
// while( commandLastIndex < methods.Count - 1 && caseInsensitiveComparer.Compare( methods[commandLastIndex + 1].command, commandName, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace ) == 0 )
|
|
int32_t L_162 = V_9;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_163 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_164;
|
|
L_164 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_163, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if ((((int32_t)L_162) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_164, 1)))))
|
|
{
|
|
goto IL_02f9;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_165 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_166 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_167 = V_9;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_168;
|
|
L_168 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_166, ((int32_t)il2cpp_codegen_add(L_167, 1)), List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_169 = L_168->___command_3;
|
|
String_t** L_170 = ___commandName3;
|
|
String_t* L_171 = *((String_t**)L_170);
|
|
int32_t L_172;
|
|
L_172 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_165, L_169, L_171, 3);
|
|
if (!L_172)
|
|
{
|
|
goto IL_028a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_02f9;
|
|
}
|
|
|
|
IL_02c4:
|
|
{
|
|
// commandLastIndex = -1;
|
|
V_9 = (-1);
|
|
goto IL_02f9;
|
|
}
|
|
|
|
IL_02c9:
|
|
{
|
|
// if( methods[commandIndex].parameterTypes.Length >= numberOfParameters )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_173 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_174 = V_8;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_175;
|
|
L_175 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_173, L_174, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_176 = L_175->___parameterTypes_1;
|
|
int32_t* L_177 = ___numberOfParameters4;
|
|
int32_t L_178 = *((int32_t*)L_177);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_176)->max_length))) < ((int32_t)L_178)))
|
|
{
|
|
goto IL_02f3;
|
|
}
|
|
}
|
|
{
|
|
// matchingCommands.Add( methods[commandIndex] );
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_179 = ___matchingCommands1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_180 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_181 = V_8;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_182;
|
|
L_182 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_180, L_181, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
List_1_Add_m0FEDE06A2790398E6431E1A0B22E2B990AE52172_inline(L_179, L_182, List_1_Add_m0FEDE06A2790398E6431E1A0B22E2B990AE52172_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_02f3:
|
|
{
|
|
// for( ; commandIndex <= commandLastIndex; commandIndex++ )
|
|
int32_t L_183 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_183, 1));
|
|
}
|
|
|
|
IL_02f9:
|
|
{
|
|
// for( ; commandIndex <= commandLastIndex; commandIndex++ )
|
|
int32_t L_184 = V_8;
|
|
int32_t L_185 = V_9;
|
|
if ((((int32_t)L_184) <= ((int32_t)L_185)))
|
|
{
|
|
goto IL_02c9;
|
|
}
|
|
}
|
|
|
|
IL_02ff:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 IngameDebugConsole.DebugLogConsole::IndexOfDelimiterGroup(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DebugLogConsole_IndexOfDelimiterGroup_m0CC9FFF8192FA903465847E9B51D5D7B6A826F29 (Il2CppChar ___c0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
// for( int i = 0; i < inputDelimiters.Length; i++ )
|
|
V_0 = 0;
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
// if( c == inputDelimiters[i][0] )
|
|
Il2CppChar L_0 = ___c0;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___inputDelimiters_5;
|
|
int32_t L_2 = V_0;
|
|
int32_t L_3 = L_2;
|
|
String_t* L_4 = (L_1)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_3));
|
|
Il2CppChar L_5;
|
|
L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, 0, NULL);
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)L_5))))
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
// return i;
|
|
int32_t L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
// for( int i = 0; i < inputDelimiters.Length; i++ )
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
// for( int i = 0; i < inputDelimiters.Length; i++ )
|
|
int32_t L_8 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_9 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___inputDelimiters_5;
|
|
if ((((int32_t)L_8) < ((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
// return -1;
|
|
return (-1);
|
|
}
|
|
}
|
|
// System.Int32 IngameDebugConsole.DebugLogConsole::IndexOfDelimiterGroupEnd(System.String,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DebugLogConsole_IndexOfDelimiterGroupEnd_mA3CF7EEF7D82521E9173011822619D159E404C72 (String_t* ___command0, int32_t ___delimiterIndex1, int32_t ___startIndex2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
Il2CppChar V_1 = 0x0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
Il2CppChar V_4 = 0x0;
|
|
{
|
|
// char startChar = inputDelimiters[delimiterIndex][0];
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___inputDelimiters_5;
|
|
int32_t L_1 = ___delimiterIndex1;
|
|
int32_t L_2 = L_1;
|
|
String_t* L_3 = (L_0)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_2));
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, 0, NULL);
|
|
V_0 = L_4;
|
|
// char endChar = inputDelimiters[delimiterIndex][1];
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___inputDelimiters_5;
|
|
int32_t L_6 = ___delimiterIndex1;
|
|
int32_t L_7 = L_6;
|
|
String_t* L_8 = (L_5)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_7));
|
|
Il2CppChar L_9;
|
|
L_9 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_8, 1, NULL);
|
|
V_1 = L_9;
|
|
// int depth = 1;
|
|
V_2 = 1;
|
|
// for( int i = startIndex; i < command.Length; i++ )
|
|
int32_t L_10 = ___startIndex2;
|
|
V_3 = L_10;
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
// char c = command[i];
|
|
String_t* L_11 = ___command0;
|
|
int32_t L_12 = V_3;
|
|
Il2CppChar L_13;
|
|
L_13 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_11, L_12, NULL);
|
|
V_4 = L_13;
|
|
// if( c == endChar && --depth <= 0 )
|
|
Il2CppChar L_14 = V_4;
|
|
Il2CppChar L_15 = V_1;
|
|
if ((!(((uint32_t)L_14) == ((uint32_t)L_15))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_2;
|
|
int32_t L_17 = ((int32_t)il2cpp_codegen_subtract(L_16, 1));
|
|
V_2 = L_17;
|
|
if ((((int32_t)L_17) > ((int32_t)0)))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
// return i;
|
|
int32_t L_18 = V_3;
|
|
return L_18;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
// else if( c == startChar )
|
|
Il2CppChar L_19 = V_4;
|
|
Il2CppChar L_20 = V_0;
|
|
if ((!(((uint32_t)L_19) == ((uint32_t)L_20))))
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
// depth++;
|
|
int32_t L_21 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_21, 1));
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
// for( int i = startIndex; i < command.Length; i++ )
|
|
int32_t L_22 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
// for( int i = startIndex; i < command.Length; i++ )
|
|
int32_t L_23 = V_3;
|
|
String_t* L_24 = ___command0;
|
|
int32_t L_25;
|
|
L_25 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_24, NULL);
|
|
if ((((int32_t)L_23) < ((int32_t)L_25)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
// return command.Length;
|
|
String_t* L_26 = ___command0;
|
|
int32_t L_27;
|
|
L_27 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_26, NULL);
|
|
return L_27;
|
|
}
|
|
}
|
|
// System.Int32 IngameDebugConsole.DebugLogConsole::IndexOfChar(System.String,System.Char,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DebugLogConsole_IndexOfChar_m4C1A446342AA125173F57AAED37E9445C8C9CD37 (String_t* ___command0, Il2CppChar ___c1, int32_t ___startIndex2, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
// int result = command.IndexOf( c, startIndex );
|
|
String_t* L_0 = ___command0;
|
|
Il2CppChar L_1 = ___c1;
|
|
int32_t L_2 = ___startIndex2;
|
|
int32_t L_3;
|
|
L_3 = String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4(L_0, L_1, L_2, NULL);
|
|
V_0 = L_3;
|
|
// if( result < 0 )
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
// result = command.Length;
|
|
String_t* L_5 = ___command0;
|
|
int32_t L_6;
|
|
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL);
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
// return result;
|
|
int32_t L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Int32 IngameDebugConsole.DebugLogConsole::FindCommandIndex(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DebugLogConsole_FindCommandIndex_m937912A34A602748887E50AE2A6965A125E420A7 (String_t* ___command0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_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;
|
|
{
|
|
// int min = 0;
|
|
V_0 = 0;
|
|
// int max = methods.Count - 1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_0 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_0, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_1, 1));
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
// int mid = ( min + max ) / 2;
|
|
int32_t L_2 = V_0;
|
|
int32_t L_3 = V_1;
|
|
V_2 = ((int32_t)(((int32_t)il2cpp_codegen_add(L_2, L_3))/2));
|
|
// int comparison = caseInsensitiveComparer.Compare( command, methods[mid].command, CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace );
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* L_4 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___caseInsensitiveComparer_6;
|
|
String_t* L_5 = ___command0;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_6 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___methods_0;
|
|
int32_t L_7 = V_2;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_8;
|
|
L_8 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_6, L_7, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_9 = L_8->___command_3;
|
|
int32_t L_10;
|
|
L_10 = VirtualFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_4, L_5, L_9, 3);
|
|
V_3 = L_10;
|
|
// if( comparison == 0 )
|
|
int32_t L_11 = V_3;
|
|
if (L_11)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
// return mid;
|
|
int32_t L_12 = V_2;
|
|
return L_12;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
// else if( comparison < 0 )
|
|
int32_t L_13 = V_3;
|
|
if ((((int32_t)L_13) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
// max = mid - 1;
|
|
int32_t L_14 = V_2;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_14, 1));
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
// min = mid + 1;
|
|
int32_t L_15 = V_2;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_15, 1));
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
// while( min <= max )
|
|
int32_t L_16 = V_0;
|
|
int32_t L_17 = V_1;
|
|
if ((((int32_t)L_16) <= ((int32_t)L_17)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
// return ~min;
|
|
int32_t L_18 = V_0;
|
|
return ((~L_18));
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::IsSupportedArrayType(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_IsSupportedArrayType_mCF63052024BD4D95564AD4E395C558E99092BB86 (Type_t* ___type0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_mB328F3A2CA70097AB381986824251092440019DE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tA989C33995B015444AE843B573C94F683039E41F_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// if( type.IsArray )
|
|
Type_t* L_0 = ___type0;
|
|
bool L_1;
|
|
L_1 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
// if( type.GetArrayRank() != 1 )
|
|
Type_t* L_2 = ___type0;
|
|
int32_t L_3;
|
|
L_3 = VirtualFuncInvoker0< int32_t >::Invoke(46 /* System.Int32 System.Type::GetArrayRank() */, L_2);
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
// return false;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
// type = type.GetElementType();
|
|
Type_t* L_4 = ___type0;
|
|
Type_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< Type_t* >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_4);
|
|
___type0 = L_5;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
// else if( type.IsGenericType )
|
|
Type_t* L_6 = ___type0;
|
|
bool L_7;
|
|
L_7 = VirtualFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Type::get_IsGenericType() */, L_6);
|
|
if (!L_7)
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
{
|
|
// if( type.GetGenericTypeDefinition() != typeof( List<> ) )
|
|
Type_t* L_8 = ___type0;
|
|
Type_t* L_9;
|
|
L_9 = VirtualFuncInvoker0< Type_t* >::Invoke(47 /* System.Type System.Type::GetGenericTypeDefinition() */, L_8);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_10 = { reinterpret_cast<intptr_t> (List_1_tA989C33995B015444AE843B573C94F683039E41F_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_11;
|
|
L_11 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_10, NULL);
|
|
bool L_12;
|
|
L_12 = Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172(L_9, L_11, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
// return false;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
// type = type.GetGenericArguments()[0];
|
|
Type_t* L_13 = ___type0;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_14;
|
|
L_14 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(49 /* System.Type[] System.Type::GetGenericArguments() */, L_13);
|
|
int32_t L_15 = 0;
|
|
Type_t* L_16 = (L_14)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_15));
|
|
___type0 = L_16;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
// return false;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
// return parseFunctions.ContainsKey( type ) || typeof( Component ).IsAssignableFrom( type ) || type.IsEnum;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_17 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___parseFunctions_2;
|
|
Type_t* L_18 = ___type0;
|
|
bool L_19;
|
|
L_19 = Dictionary_2_ContainsKey_mB328F3A2CA70097AB381986824251092440019DE(L_17, L_18, Dictionary_2_ContainsKey_mB328F3A2CA70097AB381986824251092440019DE_RuntimeMethod_var);
|
|
if (L_19)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_20 = { reinterpret_cast<intptr_t> (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_21;
|
|
L_21 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_20, NULL);
|
|
Type_t* L_22 = ___type0;
|
|
bool L_23;
|
|
L_23 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(21 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_21, L_22);
|
|
if (L_23)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_24 = ___type0;
|
|
bool L_25;
|
|
L_25 = VirtualFuncInvoker0< bool >::Invoke(67 /* System.Boolean System.Type::get_IsEnum() */, L_24);
|
|
return L_25;
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.String IngameDebugConsole.DebugLogConsole::GetTypeReadableName(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DebugLogConsole_GetTypeReadableName_mD536CA0D3C2534C91B7BA1096C1F09B8D4E83934 (Type_t* ___type0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mABC63A9E661076B85F0C38BD3A8A40AAEA175816_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
Type_t* V_1 = NULL;
|
|
Type_t* G_B6_0 = NULL;
|
|
{
|
|
// if( typeReadableNames.TryGetValue( type, out result ) )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_0 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___typeReadableNames_3;
|
|
Type_t* L_1 = ___type0;
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_mABC63A9E661076B85F0C38BD3A8A40AAEA175816(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_mABC63A9E661076B85F0C38BD3A8A40AAEA175816_RuntimeMethod_var);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
// return result;
|
|
String_t* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
// if( IsSupportedArrayType( type ) )
|
|
Type_t* L_4 = ___type0;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = DebugLogConsole_IsSupportedArrayType_mCF63052024BD4D95564AD4E395C558E99092BB86(L_4, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
// Type elementType = type.IsArray ? type.GetElementType() : type.GetGenericArguments()[0];
|
|
Type_t* L_6 = ___type0;
|
|
bool L_7;
|
|
L_7 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_6, NULL);
|
|
if (L_7)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_8 = ___type0;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_9;
|
|
L_9 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(49 /* System.Type[] System.Type::GetGenericArguments() */, L_8);
|
|
int32_t L_10 = 0;
|
|
Type_t* L_11 = (L_9)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_10));
|
|
G_B6_0 = L_11;
|
|
goto IL_0031;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
Type_t* L_12 = ___type0;
|
|
Type_t* L_13;
|
|
L_13 = VirtualFuncInvoker0< Type_t* >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_12);
|
|
G_B6_0 = L_13;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
V_1 = G_B6_0;
|
|
// if( typeReadableNames.TryGetValue( elementType, out result ) )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
Dictionary_2_tCAAF57FF731CF7E9CEC738A6E8400D208C1066EE* L_14 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___typeReadableNames_3;
|
|
Type_t* L_15 = V_1;
|
|
bool L_16;
|
|
L_16 = Dictionary_2_TryGetValue_mABC63A9E661076B85F0C38BD3A8A40AAEA175816(L_14, L_15, (&V_0), Dictionary_2_TryGetValue_mABC63A9E661076B85F0C38BD3A8A40AAEA175816_RuntimeMethod_var);
|
|
if (!L_16)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
// return result + "[]";
|
|
String_t* L_17 = V_0;
|
|
String_t* L_18;
|
|
L_18 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_17, _stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6, NULL);
|
|
return L_18;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
// return elementType.Name + "[]";
|
|
Type_t* L_19 = V_1;
|
|
String_t* L_20;
|
|
L_20 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_19);
|
|
String_t* L_21;
|
|
L_21 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_20, _stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6, NULL);
|
|
return L_21;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
// return type.Name;
|
|
Type_t* L_22 = ___type0;
|
|
String_t* L_23;
|
|
L_23 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_22);
|
|
return L_23;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseArgument(System.String,System.Type,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseArgument_mD38752180CA3F7F281044CFAA47E4CD34597CC24 (String_t* ___input0, Type_t* ___argumentType1, RuntimeObject** ___output2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m8DE42FF542A875B33731BDA6DD7348A642758F26_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* V_0 = NULL;
|
|
{
|
|
// if( parseFunctions.TryGetValue( argumentType, out parseFunction ) )
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
Dictionary_2_t87CB3911F2BD1536D523BC31EE84C6EE308F5B5A* L_0 = ((DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var))->___parseFunctions_2;
|
|
Type_t* L_1 = ___argumentType1;
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_m8DE42FF542A875B33731BDA6DD7348A642758F26(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_m8DE42FF542A875B33731BDA6DD7348A642758F26_RuntimeMethod_var);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
// return parseFunction( input, out output );
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* L_3 = V_0;
|
|
String_t* L_4 = ___input0;
|
|
RuntimeObject** L_5 = ___output2;
|
|
bool L_6;
|
|
L_6 = ParseFunction_Invoke_m6559BD38F8E131515CE959A7FC6D7EDE407794C1_inline(L_3, L_4, L_5, NULL);
|
|
return L_6;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
// else if( typeof( Component ).IsAssignableFrom( argumentType ) )
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
Type_t* L_9 = ___argumentType1;
|
|
bool L_10;
|
|
L_10 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(21 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_8, L_9);
|
|
if (!L_10)
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
}
|
|
{
|
|
// return ParseComponent( input, argumentType, out output );
|
|
String_t* L_11 = ___input0;
|
|
Type_t* L_12 = ___argumentType1;
|
|
RuntimeObject** L_13 = ___output2;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_14;
|
|
L_14 = DebugLogConsole_ParseComponent_m9D6051721A1FB1D1A1AAC2F28E029003B0807833(L_11, L_12, L_13, NULL);
|
|
return L_14;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
// else if( argumentType.IsEnum )
|
|
Type_t* L_15 = ___argumentType1;
|
|
bool L_16;
|
|
L_16 = VirtualFuncInvoker0< bool >::Invoke(67 /* System.Boolean System.Type::get_IsEnum() */, L_15);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
// return ParseEnum( input, argumentType, out output );
|
|
String_t* L_17 = ___input0;
|
|
Type_t* L_18 = ___argumentType1;
|
|
RuntimeObject** L_19 = ___output2;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_20;
|
|
L_20 = DebugLogConsole_ParseEnum_m3E539F2030843B5E70454E1DE9EA3EFFDA570CAE(L_17, L_18, L_19, NULL);
|
|
return L_20;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
// else if( IsSupportedArrayType( argumentType ) )
|
|
Type_t* L_21 = ___argumentType1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_22;
|
|
L_22 = DebugLogConsole_IsSupportedArrayType_mCF63052024BD4D95564AD4E395C558E99092BB86(L_21, NULL);
|
|
if (!L_22)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
// return ParseArray( input, argumentType, out output );
|
|
String_t* L_23 = ___input0;
|
|
Type_t* L_24 = ___argumentType1;
|
|
RuntimeObject** L_25 = ___output2;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_26;
|
|
L_26 = DebugLogConsole_ParseArray_m447E48C65E5900282AC24CA15886EB383929E04F(L_23, L_24, L_25, NULL);
|
|
return L_26;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
// output = null;
|
|
RuntimeObject** L_27 = ___output2;
|
|
*((RuntimeObject**)L_27) = (RuntimeObject*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_27, (void*)(RuntimeObject*)NULL);
|
|
// return false;
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseString(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseString_mC6A889D46770639BE9916E34C01111BDA20B4195 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// output = input;
|
|
RuntimeObject** L_0 = ___output1;
|
|
String_t* L_1 = ___input0;
|
|
*((RuntimeObject**)L_0) = (RuntimeObject*)L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)L_1);
|
|
// return true;
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseBool(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseBool_mEF25361C5A16EA42E637C9A5C4CAAA9B69FE6C93 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// if( input == "1" || input.ToLowerInvariant() == "true" )
|
|
String_t* L_0 = ___input0;
|
|
bool L_1;
|
|
L_1 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_0, _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ___input0;
|
|
String_t* L_3;
|
|
L_3 = String_ToLowerInvariant_mBE32C93DE27C5353FEA3FA654FC1DDBE3D0EB0F2(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_3, _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
// output = true;
|
|
RuntimeObject** L_5 = ___output1;
|
|
bool L_6 = ((bool)1);
|
|
RuntimeObject* L_7 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_6);
|
|
*((RuntimeObject**)L_5) = (RuntimeObject*)L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_5, (void*)(RuntimeObject*)L_7);
|
|
// return true;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
// if( input == "0" || input.ToLowerInvariant() == "false" )
|
|
String_t* L_8 = ___input0;
|
|
bool L_9;
|
|
L_9 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_8, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024, NULL);
|
|
if (L_9)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_10 = ___input0;
|
|
String_t* L_11;
|
|
L_11 = String_ToLowerInvariant_mBE32C93DE27C5353FEA3FA654FC1DDBE3D0EB0F2(L_10, NULL);
|
|
bool L_12;
|
|
L_12 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_11, _stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
// output = false;
|
|
RuntimeObject** L_13 = ___output1;
|
|
bool L_14 = ((bool)0);
|
|
RuntimeObject* L_15 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_14);
|
|
*((RuntimeObject**)L_13) = (RuntimeObject*)L_15;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_13, (void*)(RuntimeObject*)L_15);
|
|
// return true;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
// output = false;
|
|
RuntimeObject** L_16 = ___output1;
|
|
bool L_17 = ((bool)0);
|
|
RuntimeObject* L_18 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_17);
|
|
*((RuntimeObject**)L_16) = (RuntimeObject*)L_18;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_16, (void*)(RuntimeObject*)L_18);
|
|
// return false;
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseInt(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseInt_m89E83041C6A5BBE5D15158F8463E7791967D99DA (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
// bool result = int.TryParse( input, out value );
|
|
String_t* L_0 = ___input0;
|
|
bool L_1;
|
|
L_1 = Int32_TryParse_mC928DE2FEC1C35ED5298BDDCA9868076E94B8A21(L_0, (&V_0), NULL);
|
|
// output = value;
|
|
RuntimeObject** L_2 = ___output1;
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_4);
|
|
*((RuntimeObject**)L_2) = (RuntimeObject*)L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)L_5);
|
|
// return result;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseUInt(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseUInt_m1DC3574D7B9A04530134BFFBDBAC11F4638F5C04 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint32_t V_0 = 0;
|
|
{
|
|
// bool result = uint.TryParse( input, out value );
|
|
String_t* L_0 = ___input0;
|
|
bool L_1;
|
|
L_1 = UInt32_TryParse_mD470E3BAC9F792AB0BC616510AE3FA78C3CCB1E9(L_0, (&V_0), NULL);
|
|
// output = value;
|
|
RuntimeObject** L_2 = ___output1;
|
|
uint32_t L_3 = V_0;
|
|
uint32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_4);
|
|
*((RuntimeObject**)L_2) = (RuntimeObject*)L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)L_5);
|
|
// return result;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseLong(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseLong_m931B8028A8F8FA1FB4DC8BDFFCE46D640329BCBA (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E70AF961A2F88ADB9DB7B9C3B5F25A532C1570A);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int64_t V_0 = 0;
|
|
String_t* G_B3_0 = NULL;
|
|
{
|
|
// bool result = long.TryParse( !input.EndsWith( "L", StringComparison.OrdinalIgnoreCase ) ? input : input.Substring( 0, input.Length - 1 ), out value );
|
|
String_t* L_0 = ___input0;
|
|
bool L_1;
|
|
L_1 = String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075(L_0, _stringLiteral7E70AF961A2F88ADB9DB7B9C3B5F25A532C1570A, 5, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ___input0;
|
|
String_t* L_3 = ___input0;
|
|
int32_t L_4;
|
|
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
|
|
String_t* L_5;
|
|
L_5 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_2, 0, ((int32_t)il2cpp_codegen_subtract(L_4, 1)), NULL);
|
|
G_B3_0 = L_5;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
String_t* L_6 = ___input0;
|
|
G_B3_0 = L_6;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
bool L_7;
|
|
L_7 = Int64_TryParse_m3FC0128C89CC2331239FC2A0A749BF33455F03D2(G_B3_0, (&V_0), NULL);
|
|
// output = value;
|
|
RuntimeObject** L_8 = ___output1;
|
|
int64_t L_9 = V_0;
|
|
int64_t L_10 = L_9;
|
|
RuntimeObject* L_11 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_10);
|
|
*((RuntimeObject**)L_8) = (RuntimeObject*)L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_8, (void*)(RuntimeObject*)L_11);
|
|
// return result;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseULong(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseULong_mE10F56112556D7CA1DDEA4AA6419A4D81DE2E5C9 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E70AF961A2F88ADB9DB7B9C3B5F25A532C1570A);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint64_t V_0 = 0;
|
|
String_t* G_B3_0 = NULL;
|
|
{
|
|
// bool result = ulong.TryParse( !input.EndsWith( "L", StringComparison.OrdinalIgnoreCase ) ? input : input.Substring( 0, input.Length - 1 ), out value );
|
|
String_t* L_0 = ___input0;
|
|
bool L_1;
|
|
L_1 = String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075(L_0, _stringLiteral7E70AF961A2F88ADB9DB7B9C3B5F25A532C1570A, 5, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ___input0;
|
|
String_t* L_3 = ___input0;
|
|
int32_t L_4;
|
|
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
|
|
String_t* L_5;
|
|
L_5 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_2, 0, ((int32_t)il2cpp_codegen_subtract(L_4, 1)), NULL);
|
|
G_B3_0 = L_5;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
String_t* L_6 = ___input0;
|
|
G_B3_0 = L_6;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
bool L_7;
|
|
L_7 = UInt64_TryParse_mF3AF0976C95B83F09039AA0205FCB76B1CFD6D84(G_B3_0, (&V_0), NULL);
|
|
// output = value;
|
|
RuntimeObject** L_8 = ___output1;
|
|
uint64_t L_9 = V_0;
|
|
uint64_t L_10 = L_9;
|
|
RuntimeObject* L_11 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_10);
|
|
*((RuntimeObject**)L_8) = (RuntimeObject*)L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_8, (void*)(RuntimeObject*)L_11);
|
|
// return result;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseByte(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseByte_mDCD41E40AF9A49B3000FB4F9CA3476AC28E4C172 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint8_t V_0 = 0x0;
|
|
{
|
|
// bool result = byte.TryParse( input, out value );
|
|
String_t* L_0 = ___input0;
|
|
bool L_1;
|
|
L_1 = Byte_TryParse_mB1716E3B6714F20DF6C1FEDDC4A76AA78D5EA87B(L_0, (&V_0), NULL);
|
|
// output = value;
|
|
RuntimeObject** L_2 = ___output1;
|
|
uint8_t L_3 = V_0;
|
|
uint8_t L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_4);
|
|
*((RuntimeObject**)L_2) = (RuntimeObject*)L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)L_5);
|
|
// return result;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseSByte(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseSByte_mB24E4FD123682684CED79E98F16BEC0C72575B10 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int8_t V_0 = 0x0;
|
|
{
|
|
// bool result = sbyte.TryParse( input, out value );
|
|
String_t* L_0 = ___input0;
|
|
bool L_1;
|
|
L_1 = SByte_TryParse_m9C205D94AB4FF1CA82EA082E38DD01A493A77ED6(L_0, (&V_0), NULL);
|
|
// output = value;
|
|
RuntimeObject** L_2 = ___output1;
|
|
int8_t L_3 = V_0;
|
|
int8_t L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var, &L_4);
|
|
*((RuntimeObject**)L_2) = (RuntimeObject*)L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)L_5);
|
|
// return result;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseShort(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseShort_m5F4567CA60623F25C9EB8470354C5C2844A715F1 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int16_t V_0 = 0;
|
|
{
|
|
// bool result = short.TryParse( input, out value );
|
|
String_t* L_0 = ___input0;
|
|
bool L_1;
|
|
L_1 = Int16_TryParse_m7190AF18437CE1B43990B99E5D992E31485E77AE(L_0, (&V_0), NULL);
|
|
// output = value;
|
|
RuntimeObject** L_2 = ___output1;
|
|
int16_t L_3 = V_0;
|
|
int16_t L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var, &L_4);
|
|
*((RuntimeObject**)L_2) = (RuntimeObject*)L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)L_5);
|
|
// return result;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseUShort(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseUShort_m5063AAAD632520CCAE05D2183F8C6EC36F5789DC (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint16_t V_0 = 0;
|
|
{
|
|
// bool result = ushort.TryParse( input, out value );
|
|
String_t* L_0 = ___input0;
|
|
bool L_1;
|
|
L_1 = UInt16_TryParse_m02DD9A625527B4019B32ACC9A5D3B09D72B2FBB6(L_0, (&V_0), NULL);
|
|
// output = value;
|
|
RuntimeObject** L_2 = ___output1;
|
|
uint16_t L_3 = V_0;
|
|
uint16_t L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var, &L_4);
|
|
*((RuntimeObject**)L_2) = (RuntimeObject*)L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)L_5);
|
|
// return result;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseChar(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseChar_mE26B50B4C917AC6EA436AE99B798EC443A3C61BC (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Il2CppChar V_0 = 0x0;
|
|
{
|
|
// bool result = char.TryParse( input, out value );
|
|
String_t* L_0 = ___input0;
|
|
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Char_TryParse_m7D4FA37A9A0C470380D7C0A8B81A55E91E67485C(L_0, (&V_0), NULL);
|
|
// output = value;
|
|
RuntimeObject** L_2 = ___output1;
|
|
Il2CppChar L_3 = V_0;
|
|
Il2CppChar L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_4);
|
|
*((RuntimeObject**)L_2) = (RuntimeObject*)L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)L_5);
|
|
// return result;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseFloat(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseFloat_m1D8D2B2D33A52F4564830459382BA43F178EFDD8 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C945D246C2B7897F000E1C591A686EB9EF010F0);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
String_t* G_B3_0 = NULL;
|
|
{
|
|
// bool result = float.TryParse( !input.EndsWith( "f", StringComparison.OrdinalIgnoreCase ) ? input : input.Substring( 0, input.Length - 1 ), out value );
|
|
String_t* L_0 = ___input0;
|
|
bool L_1;
|
|
L_1 = String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075(L_0, _stringLiteral2C945D246C2B7897F000E1C591A686EB9EF010F0, 5, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ___input0;
|
|
String_t* L_3 = ___input0;
|
|
int32_t L_4;
|
|
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
|
|
String_t* L_5;
|
|
L_5 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_2, 0, ((int32_t)il2cpp_codegen_subtract(L_4, 1)), NULL);
|
|
G_B3_0 = L_5;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
String_t* L_6 = ___input0;
|
|
G_B3_0 = L_6;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
bool L_7;
|
|
L_7 = Single_TryParse_mC39FC2D8F1F33DE64685F3A8CE6BDD2164FB9423(G_B3_0, (&V_0), NULL);
|
|
// output = value;
|
|
RuntimeObject** L_8 = ___output1;
|
|
float L_9 = V_0;
|
|
float L_10 = L_9;
|
|
RuntimeObject* L_11 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_10);
|
|
*((RuntimeObject**)L_8) = (RuntimeObject*)L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_8, (void*)(RuntimeObject*)L_11);
|
|
// return result;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseDouble(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseDouble_mE0E87D6FA7478B20157C50AB3CC6FA3B1D2AEA94 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C945D246C2B7897F000E1C591A686EB9EF010F0);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
double V_0 = 0.0;
|
|
String_t* G_B3_0 = NULL;
|
|
{
|
|
// bool result = double.TryParse( !input.EndsWith( "f", StringComparison.OrdinalIgnoreCase ) ? input : input.Substring( 0, input.Length - 1 ), out value );
|
|
String_t* L_0 = ___input0;
|
|
bool L_1;
|
|
L_1 = String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075(L_0, _stringLiteral2C945D246C2B7897F000E1C591A686EB9EF010F0, 5, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ___input0;
|
|
String_t* L_3 = ___input0;
|
|
int32_t L_4;
|
|
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
|
|
String_t* L_5;
|
|
L_5 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_2, 0, ((int32_t)il2cpp_codegen_subtract(L_4, 1)), NULL);
|
|
G_B3_0 = L_5;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
String_t* L_6 = ___input0;
|
|
G_B3_0 = L_6;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
bool L_7;
|
|
L_7 = Double_TryParse_m60AD55BC181D70F661BC2A2294E66B5466C3C018(G_B3_0, (&V_0), NULL);
|
|
// output = value;
|
|
RuntimeObject** L_8 = ___output1;
|
|
double L_9 = V_0;
|
|
double L_10 = L_9;
|
|
RuntimeObject* L_11 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_10);
|
|
*((RuntimeObject**)L_8) = (RuntimeObject*)L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_8, (void*)(RuntimeObject*)L_11);
|
|
// return result;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseDecimal(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseDecimal_m474453B063948DD000A23560EFFAC050937AF2AA (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C945D246C2B7897F000E1C591A686EB9EF010F0);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* G_B3_0 = NULL;
|
|
{
|
|
// bool result = decimal.TryParse( !input.EndsWith( "f", StringComparison.OrdinalIgnoreCase ) ? input : input.Substring( 0, input.Length - 1 ), out value );
|
|
String_t* L_0 = ___input0;
|
|
bool L_1;
|
|
L_1 = String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075(L_0, _stringLiteral2C945D246C2B7897F000E1C591A686EB9EF010F0, 5, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ___input0;
|
|
String_t* L_3 = ___input0;
|
|
int32_t L_4;
|
|
L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL);
|
|
String_t* L_5;
|
|
L_5 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_2, 0, ((int32_t)il2cpp_codegen_subtract(L_4, 1)), NULL);
|
|
G_B3_0 = L_5;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
String_t* L_6 = ___input0;
|
|
G_B3_0 = L_6;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
|
|
bool L_7;
|
|
L_7 = Decimal_TryParse_m7813DB99794E0AC1068BA2FF2F6BF9E998E2FB4B(G_B3_0, (&V_0), NULL);
|
|
// output = value;
|
|
RuntimeObject** L_8 = ___output1;
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_9 = V_0;
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_10 = L_9;
|
|
RuntimeObject* L_11 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_10);
|
|
*((RuntimeObject**)L_8) = (RuntimeObject*)L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_8, (void*)(RuntimeObject*)L_11);
|
|
// return result;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseVector2(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseVector2_m7C7FA8F64A90CC149A78E4F53E23101F4320EF17 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_0_0_0_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// return ParseVector( input, typeof( Vector2 ), out output );
|
|
String_t* L_0 = ___input0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeObject** L_3 = ___output1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DebugLogConsole_ParseVector_m02B35A42C6167A4F80F99869A134FAF667E90FFD(L_0, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseVector3(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseVector3_m1180FCC0F42A09E6A8436E2864EB376CE2317373 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_0_0_0_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// return ParseVector( input, typeof( Vector3 ), out output );
|
|
String_t* L_0 = ___input0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeObject** L_3 = ___output1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DebugLogConsole_ParseVector_m02B35A42C6167A4F80F99869A134FAF667E90FFD(L_0, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseVector4(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseVector4_mD631138EB5D4E11480D70BE1BC91E717E5E26CA6 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_0_0_0_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// return ParseVector( input, typeof( Vector4 ), out output );
|
|
String_t* L_0 = ___input0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeObject** L_3 = ___output1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DebugLogConsole_ParseVector_m02B35A42C6167A4F80F99869A134FAF667E90FFD(L_0, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseQuaternion(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseQuaternion_mD00B4033687BC4E5FB517201982EE7011CB5CED6 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// return ParseVector( input, typeof( Quaternion ), out output );
|
|
String_t* L_0 = ___input0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeObject** L_3 = ___output1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DebugLogConsole_ParseVector_m02B35A42C6167A4F80F99869A134FAF667E90FFD(L_0, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseColor(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseColor_m143BF87018F4A2B5D6F6E788457C66114F6B12EC (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Color_tD001788D726C3A7F1379BEED0260B9591F440C1F_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// return ParseVector( input, typeof( Color ), out output );
|
|
String_t* L_0 = ___input0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeObject** L_3 = ___output1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DebugLogConsole_ParseVector_m02B35A42C6167A4F80F99869A134FAF667E90FFD(L_0, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseColor32(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseColor32_mB7E40A40CF0B3BF6360DF08350938199400F71BF (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// return ParseVector( input, typeof( Color32 ), out output );
|
|
String_t* L_0 = ___input0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeObject** L_3 = ___output1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DebugLogConsole_ParseVector_m02B35A42C6167A4F80F99869A134FAF667E90FFD(L_0, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseRect(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseRect_m387D9CDCD3040CEB10B7C96FB7D5BE8EED3CA591 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// return ParseVector( input, typeof( Rect ), out output );
|
|
String_t* L_0 = ___input0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeObject** L_3 = ___output1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DebugLogConsole_ParseVector_m02B35A42C6167A4F80F99869A134FAF667E90FFD(L_0, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseRectOffset(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseRectOffset_m72AF3CF248A32FA772AB4D657C9A8A7A34E686CB (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// return ParseVector( input, typeof( RectOffset ), out output );
|
|
String_t* L_0 = ___input0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeObject** L_3 = ___output1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DebugLogConsole_ParseVector_m02B35A42C6167A4F80F99869A134FAF667E90FFD(L_0, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseBounds(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseBounds_mDCA2A9708F851390931A57FF8E5FB40A2AA627B9 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// return ParseVector( input, typeof( Bounds ), out output );
|
|
String_t* L_0 = ___input0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeObject** L_3 = ___output1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DebugLogConsole_ParseVector_m02B35A42C6167A4F80F99869A134FAF667E90FFD(L_0, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseVector2Int(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseVector2Int_m3649B9BC937B4664ACC7CA2F0200C63FBB25072E (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_0_0_0_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// return ParseVector( input, typeof( Vector2Int ), out output );
|
|
String_t* L_0 = ___input0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeObject** L_3 = ___output1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DebugLogConsole_ParseVector_m02B35A42C6167A4F80F99869A134FAF667E90FFD(L_0, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseVector3Int(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseVector3Int_mD25E0226F9D50907FA52B655D84A9BFE58F28304 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_0_0_0_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// return ParseVector( input, typeof( Vector3Int ), out output );
|
|
String_t* L_0 = ___input0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeObject** L_3 = ___output1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DebugLogConsole_ParseVector_m02B35A42C6167A4F80F99869A134FAF667E90FFD(L_0, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseRectInt(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseRectInt_m872D02399F3D0E1AB96EA4C5E7ECEC7A646AE975 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// return ParseVector( input, typeof( RectInt ), out output );
|
|
String_t* L_0 = ___input0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeObject** L_3 = ___output1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DebugLogConsole_ParseVector_m02B35A42C6167A4F80F99869A134FAF667E90FFD(L_0, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseBoundsInt(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseBoundsInt_m530D51F98125A1FBAA8A063D1A3085FDA6CF0F7C (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// return ParseVector( input, typeof( BoundsInt ), out output );
|
|
String_t* L_0 = ___input0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_1 = { reinterpret_cast<intptr_t> (BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_2;
|
|
L_2 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_1, NULL);
|
|
RuntimeObject** L_3 = ___output1;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = DebugLogConsole_ParseVector_m02B35A42C6167A4F80F99869A134FAF667E90FFD(L_0, L_2, L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseGameObject(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseGameObject_mF3CB80573688D1F357974DD9D979099F3FFF4466 (String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject** G_B2_0 = NULL;
|
|
RuntimeObject** G_B1_0 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B3_0 = NULL;
|
|
RuntimeObject** G_B3_1 = NULL;
|
|
{
|
|
// output = input == "null" ? null : GameObject.Find( input );
|
|
RuntimeObject** L_0 = ___output1;
|
|
String_t* L_1 = ___input0;
|
|
bool L_2;
|
|
L_2 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_1, _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174, NULL);
|
|
G_B1_0 = L_0;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_0;
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_3 = ___input0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4;
|
|
L_4 = GameObject_Find_m7A669B4EEC2617AB82F6E3FF007CDCD9F21DB300(L_3, NULL);
|
|
G_B3_0 = L_4;
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
G_B3_0 = ((GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)(NULL));
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
*((RuntimeObject**)G_B3_1) = (RuntimeObject*)G_B3_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)G_B3_1, (void*)(RuntimeObject*)G_B3_0);
|
|
// return true;
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseComponent(System.String,System.Type,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseComponent_m9D6051721A1FB1D1A1AAC2F28E029003B0807833 (String_t* ___input0, Type_t* ___componentType1, RuntimeObject** ___output2, 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*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_0 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B3_0 = NULL;
|
|
RuntimeObject** G_B5_0 = NULL;
|
|
RuntimeObject** G_B4_0 = NULL;
|
|
Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* G_B6_0 = NULL;
|
|
RuntimeObject** G_B6_1 = NULL;
|
|
{
|
|
// GameObject gameObject = input == "null" ? null : GameObject.Find( input );
|
|
String_t* L_0 = ___input0;
|
|
bool L_1;
|
|
L_1 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_0, _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ___input0;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3;
|
|
L_3 = GameObject_Find_m7A669B4EEC2617AB82F6E3FF007CDCD9F21DB300(L_2, NULL);
|
|
G_B3_0 = L_3;
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
G_B3_0 = ((GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)(NULL));
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
V_0 = G_B3_0;
|
|
// output = gameObject ? gameObject.GetComponent( componentType ) : null;
|
|
RuntimeObject** L_4 = ___output2;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_5 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A(L_5, NULL);
|
|
G_B4_0 = L_4;
|
|
if (L_6)
|
|
{
|
|
G_B5_0 = L_4;
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
G_B6_0 = ((Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*)(NULL));
|
|
G_B6_1 = G_B4_0;
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_7 = V_0;
|
|
Type_t* L_8 = ___componentType1;
|
|
Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* L_9;
|
|
L_9 = GameObject_GetComponent_m99E12753EA84947521DC711CA33F452B5E65B474(L_7, L_8, NULL);
|
|
G_B6_0 = L_9;
|
|
G_B6_1 = G_B5_0;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
*((RuntimeObject**)G_B6_1) = (RuntimeObject*)G_B6_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)G_B6_1, (void*)(RuntimeObject*)G_B6_0);
|
|
// return true;
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseEnum(System.String,System.Type,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseEnum_m3E539F2030843B5E70454E1DE9EA3EFFDA570CAE (String_t* ___input0, Type_t* ___enumType1, RuntimeObject** ___output2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
String_t* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
bool V_7 = false;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
int32_t G_B4_0 = 0;
|
|
String_t* G_B4_1 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
String_t* G_B3_1 = NULL;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B5_1 = 0;
|
|
String_t* G_B5_2 = NULL;
|
|
int32_t G_B8_0 = 0;
|
|
String_t* G_B8_1 = NULL;
|
|
int32_t G_B7_0 = 0;
|
|
String_t* G_B7_1 = NULL;
|
|
int32_t G_B9_0 = 0;
|
|
int32_t G_B9_1 = 0;
|
|
String_t* G_B9_2 = NULL;
|
|
{
|
|
// int outputInt = 0;
|
|
V_0 = 0;
|
|
// int operation = NONE; // 0: nothing, 1: OR with outputInt, 2: AND with outputInt
|
|
V_1 = 0;
|
|
// for( int i = 0; i < input.Length; i++ )
|
|
V_2 = 0;
|
|
goto IL_00d3;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
// int orIndex = input.IndexOf( '|', i );
|
|
String_t* L_0 = ___input0;
|
|
int32_t L_1 = V_2;
|
|
int32_t L_2;
|
|
L_2 = String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4(L_0, ((int32_t)124), L_1, NULL);
|
|
V_4 = L_2;
|
|
// int andIndex = input.IndexOf( '&', i );
|
|
String_t* L_3 = ___input0;
|
|
int32_t L_4 = V_2;
|
|
int32_t L_5;
|
|
L_5 = String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4(L_3, ((int32_t)38), L_4, NULL);
|
|
V_5 = L_5;
|
|
// if( orIndex < 0 )
|
|
int32_t L_6 = V_4;
|
|
if ((((int32_t)L_6) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
// enumStr = input.Substring( i, ( andIndex < 0 ? input.Length : andIndex ) - i ).Trim();
|
|
String_t* L_7 = ___input0;
|
|
int32_t L_8 = V_2;
|
|
int32_t L_9 = V_5;
|
|
G_B3_0 = L_8;
|
|
G_B3_1 = L_7;
|
|
if ((((int32_t)L_9) < ((int32_t)0)))
|
|
{
|
|
G_B4_0 = L_8;
|
|
G_B4_1 = L_7;
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10 = V_5;
|
|
G_B5_0 = L_10;
|
|
G_B5_1 = G_B3_0;
|
|
G_B5_2 = G_B3_1;
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
String_t* L_11 = ___input0;
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
G_B5_0 = L_12;
|
|
G_B5_1 = G_B4_0;
|
|
G_B5_2 = G_B4_1;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
int32_t L_13 = V_2;
|
|
String_t* L_14;
|
|
L_14 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(G_B5_2, G_B5_1, ((int32_t)il2cpp_codegen_subtract(G_B5_0, L_13)), NULL);
|
|
String_t* L_15;
|
|
L_15 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_14, NULL);
|
|
V_3 = L_15;
|
|
goto IL_0067;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
// enumStr = input.Substring( i, ( andIndex < 0 ? orIndex : Mathf.Min( andIndex, orIndex ) ) - i ).Trim();
|
|
String_t* L_16 = ___input0;
|
|
int32_t L_17 = V_2;
|
|
int32_t L_18 = V_5;
|
|
G_B7_0 = L_17;
|
|
G_B7_1 = L_16;
|
|
if ((((int32_t)L_18) < ((int32_t)0)))
|
|
{
|
|
G_B8_0 = L_17;
|
|
G_B8_1 = L_16;
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_5;
|
|
int32_t L_20 = V_4;
|
|
int32_t L_21;
|
|
L_21 = Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline(L_19, L_20, NULL);
|
|
G_B9_0 = L_21;
|
|
G_B9_1 = G_B7_0;
|
|
G_B9_2 = G_B7_1;
|
|
goto IL_005a;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
int32_t L_22 = V_4;
|
|
G_B9_0 = L_22;
|
|
G_B9_1 = G_B8_0;
|
|
G_B9_2 = G_B8_1;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
int32_t L_23 = V_2;
|
|
String_t* L_24;
|
|
L_24 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(G_B9_2, G_B9_1, ((int32_t)il2cpp_codegen_subtract(G_B9_0, L_23)), NULL);
|
|
String_t* L_25;
|
|
L_25 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_24, NULL);
|
|
V_3 = L_25;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
// if( !int.TryParse( enumStr, out value ) )
|
|
String_t* L_26 = V_3;
|
|
bool L_27;
|
|
L_27 = Int32_TryParse_mC928DE2FEC1C35ED5298BDDCA9868076E94B8A21(L_26, (&V_6), NULL);
|
|
if (L_27)
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
}
|
|
try
|
|
{// begin try (depth: 1)
|
|
// value = Convert.ToInt32( Enum.Parse( enumType, enumStr, true ) );
|
|
Type_t* L_28 = ___enumType1;
|
|
String_t* L_29 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_30;
|
|
L_30 = Enum_Parse_m0316ABE916ED60AA2257A464A33A33D544EDEE12(L_28, L_29, (bool)1, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
|
|
int32_t L_31;
|
|
L_31 = Convert_ToInt32_m9FEA65DB96264479B5268014F10754787382D297(L_30, NULL);
|
|
V_6 = L_31;
|
|
// }
|
|
goto IL_008b;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0082;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0082:
|
|
{// begin catch(System.Object)
|
|
// catch
|
|
// output = null;
|
|
RuntimeObject** L_32 = ___output2;
|
|
*((RuntimeObject**)L_32) = (RuntimeObject*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_32, (void*)(RuntimeObject*)NULL);
|
|
// return false;
|
|
V_7 = (bool)0;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION();
|
|
goto IL_00ea;
|
|
}// end catch (depth: 1)
|
|
|
|
IL_008b:
|
|
{
|
|
// if( operation == NONE )
|
|
int32_t L_33 = V_1;
|
|
if (L_33)
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
// outputInt = value;
|
|
int32_t L_34 = V_6;
|
|
V_0 = L_34;
|
|
goto IL_00a3;
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
// else if( operation == OR )
|
|
int32_t L_35 = V_1;
|
|
if ((!(((uint32_t)L_35) == ((uint32_t)1))))
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
// outputInt |= value;
|
|
int32_t L_36 = V_0;
|
|
int32_t L_37 = V_6;
|
|
V_0 = ((int32_t)(L_36|L_37));
|
|
goto IL_00a3;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
// outputInt &= value;
|
|
int32_t L_38 = V_0;
|
|
int32_t L_39 = V_6;
|
|
V_0 = ((int32_t)(L_38&L_39));
|
|
}
|
|
|
|
IL_00a3:
|
|
{
|
|
// if( orIndex >= 0 )
|
|
int32_t L_40 = V_4;
|
|
if ((((int32_t)L_40) < ((int32_t)0)))
|
|
{
|
|
goto IL_00bc;
|
|
}
|
|
}
|
|
{
|
|
// if( andIndex > orIndex )
|
|
int32_t L_41 = V_5;
|
|
int32_t L_42 = V_4;
|
|
if ((((int32_t)L_41) <= ((int32_t)L_42)))
|
|
{
|
|
goto IL_00b5;
|
|
}
|
|
}
|
|
{
|
|
// operation = AND;
|
|
V_1 = 2;
|
|
// i = andIndex;
|
|
int32_t L_43 = V_5;
|
|
V_2 = L_43;
|
|
goto IL_00cf;
|
|
}
|
|
|
|
IL_00b5:
|
|
{
|
|
// operation = OR;
|
|
V_1 = 1;
|
|
// i = orIndex;
|
|
int32_t L_44 = V_4;
|
|
V_2 = L_44;
|
|
goto IL_00cf;
|
|
}
|
|
|
|
IL_00bc:
|
|
{
|
|
// else if( andIndex >= 0 )
|
|
int32_t L_45 = V_5;
|
|
if ((((int32_t)L_45) < ((int32_t)0)))
|
|
{
|
|
goto IL_00c8;
|
|
}
|
|
}
|
|
{
|
|
// operation = AND;
|
|
V_1 = 2;
|
|
// i = andIndex;
|
|
int32_t L_46 = V_5;
|
|
V_2 = L_46;
|
|
goto IL_00cf;
|
|
}
|
|
|
|
IL_00c8:
|
|
{
|
|
// i = input.Length;
|
|
String_t* L_47 = ___input0;
|
|
int32_t L_48;
|
|
L_48 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_47, NULL);
|
|
V_2 = L_48;
|
|
}
|
|
|
|
IL_00cf:
|
|
{
|
|
// for( int i = 0; i < input.Length; i++ )
|
|
int32_t L_49 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_49, 1));
|
|
}
|
|
|
|
IL_00d3:
|
|
{
|
|
// for( int i = 0; i < input.Length; i++ )
|
|
int32_t L_50 = V_2;
|
|
String_t* L_51 = ___input0;
|
|
int32_t L_52;
|
|
L_52 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_51, NULL);
|
|
if ((((int32_t)L_50) < ((int32_t)L_52)))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
// output = Enum.ToObject( enumType, outputInt );
|
|
RuntimeObject** L_53 = ___output2;
|
|
Type_t* L_54 = ___enumType1;
|
|
int32_t L_55 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_56;
|
|
L_56 = Enum_ToObject_m7952B7BD43E48BBF79BB973BD31E7FF9E62B948E(L_54, L_55, NULL);
|
|
*((RuntimeObject**)L_53) = (RuntimeObject*)L_56;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_53, (void*)(RuntimeObject*)L_56);
|
|
// return true;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_00ea:
|
|
{
|
|
// }
|
|
bool L_57 = V_7;
|
|
return L_57;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseArray(System.String,System.Type,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseArray_m447E48C65E5900282AC24CA15886EB383929E04F (String_t* ___input0, Type_t* ___arrayType1, RuntimeObject** ___output2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1A062F45FE926079CE2D4FD38A3BF15F7AEB89AF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
Type_t* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
RuntimeObject* V_4 = NULL;
|
|
Type_t* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
RuntimeObject* V_7 = NULL;
|
|
{
|
|
// List<string> valuesToParse = new List<string>( 2 );
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_0 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m1A062F45FE926079CE2D4FD38A3BF15F7AEB89AF(L_0, 2, List_1__ctor_m1A062F45FE926079CE2D4FD38A3BF15F7AEB89AF_RuntimeMethod_var);
|
|
V_0 = L_0;
|
|
// FetchArgumentsFromCommand( input, valuesToParse );
|
|
String_t* L_1 = ___input0;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_2 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
DebugLogConsole_FetchArgumentsFromCommand_mC1BAA30A6C63276103CEE04B898336A8900FDCAF(L_1, L_2, NULL);
|
|
// IList result = (IList) Activator.CreateInstance( arrayType, new object[1] { valuesToParse.Count } );
|
|
Type_t* L_3 = ___arrayType1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_4;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_6, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
int32_t L_8 = L_7;
|
|
RuntimeObject* L_9 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_8);
|
|
ArrayElementTypeCheck (L_5, L_9);
|
|
(L_5)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_9);
|
|
RuntimeObject* L_10;
|
|
L_10 = Activator_CreateInstance_mDBC65647828F8A3D3E63807B5AEA4A4ECDE397E6(L_3, L_5, NULL);
|
|
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_10, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var));
|
|
// output = result;
|
|
RuntimeObject** L_11 = ___output2;
|
|
RuntimeObject* L_12 = V_1;
|
|
*((RuntimeObject**)L_11) = (RuntimeObject*)L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_11, (void*)(RuntimeObject*)L_12);
|
|
// if( arrayType.IsArray )
|
|
Type_t* L_13 = ___arrayType1;
|
|
bool L_14;
|
|
L_14 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_13, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
// Type elementType = arrayType.GetElementType();
|
|
Type_t* L_15 = ___arrayType1;
|
|
Type_t* L_16;
|
|
L_16 = VirtualFuncInvoker0< Type_t* >::Invoke(45 /* System.Type System.Type::GetElementType() */, L_15);
|
|
V_2 = L_16;
|
|
// for( int i = 0; i < valuesToParse.Count; i++ )
|
|
V_3 = 0;
|
|
goto IL_0064;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
// if( !ParseArgument( valuesToParse[i], elementType, out obj ) )
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_17 = V_0;
|
|
int32_t L_18 = V_3;
|
|
String_t* L_19;
|
|
L_19 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_17, L_18, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
Type_t* L_20 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_21;
|
|
L_21 = DebugLogConsole_ParseArgument_mD38752180CA3F7F281044CFAA47E4CD34597CC24(L_19, L_20, (&V_4), NULL);
|
|
if (L_21)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
// return false;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
// result[i] = obj;
|
|
RuntimeObject* L_22 = V_1;
|
|
int32_t L_23 = V_3;
|
|
RuntimeObject* L_24 = V_4;
|
|
InterfaceActionInvoker2< int32_t, RuntimeObject* >::Invoke(1 /* System.Void System.Collections.IList::set_Item(System.Int32,System.Object) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_22, L_23, L_24);
|
|
// for( int i = 0; i < valuesToParse.Count; i++ )
|
|
int32_t L_25 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_25, 1));
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
// for( int i = 0; i < valuesToParse.Count; i++ )
|
|
int32_t L_26 = V_3;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_27 = V_0;
|
|
int32_t L_28;
|
|
L_28 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_27, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
if ((((int32_t)L_26) < ((int32_t)L_28)))
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00ac;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
// Type elementType = arrayType.GetGenericArguments()[0];
|
|
Type_t* L_29 = ___arrayType1;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_30;
|
|
L_30 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(49 /* System.Type[] System.Type::GetGenericArguments() */, L_29);
|
|
int32_t L_31 = 0;
|
|
Type_t* L_32 = (L_30)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_31));
|
|
V_5 = L_32;
|
|
// for( int i = 0; i < valuesToParse.Count; i++ )
|
|
V_6 = 0;
|
|
goto IL_00a2;
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
// if( !ParseArgument( valuesToParse[i], elementType, out obj ) )
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_33 = V_0;
|
|
int32_t L_34 = V_6;
|
|
String_t* L_35;
|
|
L_35 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_33, L_34, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
Type_t* L_36 = V_5;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_37;
|
|
L_37 = DebugLogConsole_ParseArgument_mD38752180CA3F7F281044CFAA47E4CD34597CC24(L_35, L_36, (&V_7), NULL);
|
|
if (L_37)
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
// return false;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
// result.Add( obj );
|
|
RuntimeObject* L_38 = V_1;
|
|
RuntimeObject* L_39 = V_7;
|
|
int32_t L_40;
|
|
L_40 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_38, L_39);
|
|
// for( int i = 0; i < valuesToParse.Count; i++ )
|
|
int32_t L_41 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_41, 1));
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
// for( int i = 0; i < valuesToParse.Count; i++ )
|
|
int32_t L_42 = V_6;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_43 = V_0;
|
|
int32_t L_44;
|
|
L_44 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_43, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
if ((((int32_t)L_42) < ((int32_t)L_44)))
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
|
|
IL_00ac:
|
|
{
|
|
// return true;
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole::ParseVector(System.String,System.Type,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogConsole_ParseVector_m02B35A42C6167A4F80F99869A134FAF667E90FFD (String_t* ___input0, Type_t* ___vectorType1, RuntimeObject** ___output2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Color_tD001788D726C3A7F1379BEED0260B9591F440C1F_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Color_tD001788D726C3A7F1379BEED0260B9591F440C1F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m031D3A21689276A872FCA7566C8F2F79F9581F0D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m0BAB01B25B1D62E100CC97401B1A9972D6DEB6EC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m6A72B7648178616800F05C13DB492E4EDB866B7C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* V_0 = NULL;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
RuntimeObject* V_4 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
int32_t V_6 = 0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
int32_t V_8 = 0;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
int32_t V_12 = 0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B V_15;
|
|
memset((&V_15), 0, sizeof(V_15));
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* V_17 = NULL;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_18;
|
|
memset((&V_18), 0, sizeof(V_18));
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
int32_t V_20 = 0;
|
|
int32_t V_21 = 0;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 V_22;
|
|
memset((&V_22), 0, sizeof(V_22));
|
|
int32_t V_23 = 0;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A V_24;
|
|
memset((&V_24), 0, sizeof(V_24));
|
|
int32_t V_25 = 0;
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 V_26;
|
|
memset((&V_26), 0, sizeof(V_26));
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 V_27;
|
|
memset((&V_27), 0, sizeof(V_27));
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 V_28;
|
|
memset((&V_28), 0, sizeof(V_28));
|
|
int32_t V_29 = 0;
|
|
int32_t V_30 = 0;
|
|
{
|
|
// List<string> tokens = new List<string>( input.Replace( ',', ' ' ).Trim().Split( ' ' ) );
|
|
String_t* L_0 = ___input0;
|
|
String_t* L_1;
|
|
L_1 = String_Replace_m86403DC5F422D8D5E1CFAAF255B103CB807EDAAF(L_0, ((int32_t)44), ((int32_t)32), NULL);
|
|
String_t* L_2;
|
|
L_2 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_1, NULL);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3;
|
|
L_3 = String_Split_m9530B73D02054692283BF35C3A27C8F2230946F4(L_2, ((int32_t)32), 0, NULL);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_4 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m0BAB01B25B1D62E100CC97401B1A9972D6DEB6EC(L_4, (RuntimeObject*)L_3, List_1__ctor_m0BAB01B25B1D62E100CC97401B1A9972D6DEB6EC_RuntimeMethod_var);
|
|
V_0 = L_4;
|
|
// for( int i = tokens.Count - 1; i >= 0; i-- )
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_5 = V_0;
|
|
int32_t L_6;
|
|
L_6 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_5, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract(L_6, 1));
|
|
goto IL_0054;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
// tokens[i] = tokens[i].Trim();
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_7 = V_0;
|
|
int32_t L_8 = V_2;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_9 = V_0;
|
|
int32_t L_10 = V_2;
|
|
String_t* L_11;
|
|
L_11 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_9, L_10, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
String_t* L_12;
|
|
L_12 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_11, NULL);
|
|
List_1_set_Item_m6A72B7648178616800F05C13DB492E4EDB866B7C(L_7, L_8, L_12, List_1_set_Item_m6A72B7648178616800F05C13DB492E4EDB866B7C_RuntimeMethod_var);
|
|
// if( tokens[i].Length == 0 )
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_13 = V_0;
|
|
int32_t L_14 = V_2;
|
|
String_t* L_15;
|
|
L_15 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_13, L_14, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
int32_t L_16;
|
|
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
|
|
if (L_16)
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
// tokens.RemoveAt( i );
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_17 = V_0;
|
|
int32_t L_18 = V_2;
|
|
List_1_RemoveAt_m031D3A21689276A872FCA7566C8F2F79F9581F0D(L_17, L_18, List_1_RemoveAt_m031D3A21689276A872FCA7566C8F2F79F9581F0D_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
// for( int i = tokens.Count - 1; i >= 0; i-- )
|
|
int32_t L_19 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract(L_19, 1));
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
// for( int i = tokens.Count - 1; i >= 0; i-- )
|
|
int32_t L_20 = V_2;
|
|
if ((((int32_t)L_20) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
// float[] tokenValues = new float[tokens.Count];
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_21 = V_0;
|
|
int32_t L_22;
|
|
L_22 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_21, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_23 = (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)(SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)SZArrayNew(SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C_il2cpp_TypeInfo_var, (uint32_t)L_22);
|
|
V_1 = L_23;
|
|
// for( int i = 0; i < tokens.Count; i++ )
|
|
V_3 = 0;
|
|
goto IL_00d4;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
// if( !ParseFloat( tokens[i], out val ) )
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_24 = V_0;
|
|
int32_t L_25 = V_3;
|
|
String_t* L_26;
|
|
L_26 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_24, L_25, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
bool L_27;
|
|
L_27 = DebugLogConsole_ParseFloat_m1D8D2B2D33A52F4564830459382BA43F178EFDD8(L_26, (&V_4), NULL);
|
|
if (L_27)
|
|
{
|
|
goto IL_00c6;
|
|
}
|
|
}
|
|
{
|
|
// if( vectorType == typeof( Vector3 ) )
|
|
Type_t* L_28 = ___vectorType1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_29 = { reinterpret_cast<intptr_t> (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_30;
|
|
L_30 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_29, NULL);
|
|
bool L_31;
|
|
L_31 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_28, L_30, NULL);
|
|
if (!L_31)
|
|
{
|
|
goto IL_0098;
|
|
}
|
|
}
|
|
{
|
|
// output = Vector3.zero;
|
|
RuntimeObject** L_32 = ___output2;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_33;
|
|
L_33 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_34 = L_33;
|
|
RuntimeObject* L_35 = Box(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var, &L_34);
|
|
*((RuntimeObject**)L_32) = (RuntimeObject*)L_35;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_32, (void*)(RuntimeObject*)L_35);
|
|
goto IL_00c4;
|
|
}
|
|
|
|
IL_0098:
|
|
{
|
|
// else if( vectorType == typeof( Vector2 ) )
|
|
Type_t* L_36 = ___vectorType1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_37 = { reinterpret_cast<intptr_t> (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_38;
|
|
L_38 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_37, NULL);
|
|
bool L_39;
|
|
L_39 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_36, L_38, NULL);
|
|
if (!L_39)
|
|
{
|
|
goto IL_00b8;
|
|
}
|
|
}
|
|
{
|
|
// output = Vector2.zero;
|
|
RuntimeObject** L_40 = ___output2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_41;
|
|
L_41 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_42 = L_41;
|
|
RuntimeObject* L_43 = Box(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var, &L_42);
|
|
*((RuntimeObject**)L_40) = (RuntimeObject*)L_43;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_40, (void*)(RuntimeObject*)L_43);
|
|
goto IL_00c4;
|
|
}
|
|
|
|
IL_00b8:
|
|
{
|
|
// output = Vector4.zero;
|
|
RuntimeObject** L_44 = ___output2;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_45;
|
|
L_45 = Vector4_get_zero_m3D61F5FA9483CD9C08977D9D8852FB448B4CE6D1_inline(NULL);
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_46 = L_45;
|
|
RuntimeObject* L_47 = Box(Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_il2cpp_TypeInfo_var, &L_46);
|
|
*((RuntimeObject**)L_44) = (RuntimeObject*)L_47;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_44, (void*)(RuntimeObject*)L_47);
|
|
}
|
|
|
|
IL_00c4:
|
|
{
|
|
// return false;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00c6:
|
|
{
|
|
// tokenValues[i] = (float) val;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_48 = V_1;
|
|
int32_t L_49 = V_3;
|
|
RuntimeObject* L_50 = V_4;
|
|
(L_48)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_49), (float)((*(float*)((float*)(float*)UnBox(L_50, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var)))));
|
|
// for( int i = 0; i < tokens.Count; i++ )
|
|
int32_t L_51 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_51, 1));
|
|
}
|
|
|
|
IL_00d4:
|
|
{
|
|
// for( int i = 0; i < tokens.Count; i++ )
|
|
int32_t L_52 = V_3;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_53 = V_0;
|
|
int32_t L_54;
|
|
L_54 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_53, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
if ((((int32_t)L_52) < ((int32_t)L_54)))
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
// if( vectorType == typeof( Vector3 ) )
|
|
Type_t* L_55 = ___vectorType1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
bool L_58;
|
|
L_58 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_55, L_57, NULL);
|
|
if (!L_58)
|
|
{
|
|
goto IL_0128;
|
|
}
|
|
}
|
|
{
|
|
// Vector3 result = Vector3.zero;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_59;
|
|
L_59 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
V_5 = L_59;
|
|
// for( int i = 0; i < tokenValues.Length && i < 3; i++ )
|
|
V_6 = 0;
|
|
goto IL_010e;
|
|
}
|
|
|
|
IL_00fb:
|
|
{
|
|
// result[i] = tokenValues[i];
|
|
int32_t L_60 = V_6;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_61 = V_1;
|
|
int32_t L_62 = V_6;
|
|
int32_t L_63 = L_62;
|
|
float L_64 = (L_61)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_63));
|
|
Vector3_set_Item_m79136861DEC5862CE7EC20AB3B0EF10A3957CEC3_inline((&V_5), L_60, L_64, NULL);
|
|
// for( int i = 0; i < tokenValues.Length && i < 3; i++ )
|
|
int32_t L_65 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_65, 1));
|
|
}
|
|
|
|
IL_010e:
|
|
{
|
|
// for( int i = 0; i < tokenValues.Length && i < 3; i++ )
|
|
int32_t L_66 = V_6;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_67 = V_1;
|
|
if ((((int32_t)L_66) >= ((int32_t)((int32_t)(((RuntimeArray*)L_67)->max_length)))))
|
|
{
|
|
goto IL_011a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_68 = V_6;
|
|
if ((((int32_t)L_68) < ((int32_t)3)))
|
|
{
|
|
goto IL_00fb;
|
|
}
|
|
}
|
|
|
|
IL_011a:
|
|
{
|
|
// output = result;
|
|
RuntimeObject** L_69 = ___output2;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_70 = V_5;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_71 = L_70;
|
|
RuntimeObject* L_72 = Box(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var, &L_71);
|
|
*((RuntimeObject**)L_69) = (RuntimeObject*)L_72;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_69, (void*)(RuntimeObject*)L_72);
|
|
goto IL_05d6;
|
|
}
|
|
|
|
IL_0128:
|
|
{
|
|
// else if( vectorType == typeof( Vector2 ) )
|
|
Type_t* L_73 = ___vectorType1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_74 = { reinterpret_cast<intptr_t> (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_75;
|
|
L_75 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_74, NULL);
|
|
bool L_76;
|
|
L_76 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_73, L_75, NULL);
|
|
if (!L_76)
|
|
{
|
|
goto IL_0173;
|
|
}
|
|
}
|
|
{
|
|
// Vector2 result = Vector2.zero;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_77;
|
|
L_77 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
V_7 = L_77;
|
|
// for( int i = 0; i < tokenValues.Length && i < 2; i++ )
|
|
V_8 = 0;
|
|
goto IL_0159;
|
|
}
|
|
|
|
IL_0146:
|
|
{
|
|
// result[i] = tokenValues[i];
|
|
int32_t L_78 = V_8;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_79 = V_1;
|
|
int32_t L_80 = V_8;
|
|
int32_t L_81 = L_80;
|
|
float L_82 = (L_79)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_81));
|
|
Vector2_set_Item_mEF309880B9B3B370B542AABEB32256EEC589DD03_inline((&V_7), L_78, L_82, NULL);
|
|
// for( int i = 0; i < tokenValues.Length && i < 2; i++ )
|
|
int32_t L_83 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_83, 1));
|
|
}
|
|
|
|
IL_0159:
|
|
{
|
|
// for( int i = 0; i < tokenValues.Length && i < 2; i++ )
|
|
int32_t L_84 = V_8;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_85 = V_1;
|
|
if ((((int32_t)L_84) >= ((int32_t)((int32_t)(((RuntimeArray*)L_85)->max_length)))))
|
|
{
|
|
goto IL_0165;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_86 = V_8;
|
|
if ((((int32_t)L_86) < ((int32_t)2)))
|
|
{
|
|
goto IL_0146;
|
|
}
|
|
}
|
|
|
|
IL_0165:
|
|
{
|
|
// output = result;
|
|
RuntimeObject** L_87 = ___output2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_88 = V_7;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_89 = L_88;
|
|
RuntimeObject* L_90 = Box(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var, &L_89);
|
|
*((RuntimeObject**)L_87) = (RuntimeObject*)L_90;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_87, (void*)(RuntimeObject*)L_90);
|
|
goto IL_05d6;
|
|
}
|
|
|
|
IL_0173:
|
|
{
|
|
// else if( vectorType == typeof( Vector4 ) )
|
|
Type_t* L_91 = ___vectorType1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_92 = { reinterpret_cast<intptr_t> (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_93;
|
|
L_93 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_92, NULL);
|
|
bool L_94;
|
|
L_94 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_91, L_93, NULL);
|
|
if (!L_94)
|
|
{
|
|
goto IL_01be;
|
|
}
|
|
}
|
|
{
|
|
// Vector4 result = Vector4.zero;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_95;
|
|
L_95 = Vector4_get_zero_m3D61F5FA9483CD9C08977D9D8852FB448B4CE6D1_inline(NULL);
|
|
V_9 = L_95;
|
|
// for( int i = 0; i < tokenValues.Length && i < 4; i++ )
|
|
V_10 = 0;
|
|
goto IL_01a4;
|
|
}
|
|
|
|
IL_0191:
|
|
{
|
|
// result[i] = tokenValues[i];
|
|
int32_t L_96 = V_10;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_97 = V_1;
|
|
int32_t L_98 = V_10;
|
|
int32_t L_99 = L_98;
|
|
float L_100 = (L_97)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_99));
|
|
Vector4_set_Item_mF24782F861A16BB0436C2262FA916B4EE69998A6_inline((&V_9), L_96, L_100, NULL);
|
|
// for( int i = 0; i < tokenValues.Length && i < 4; i++ )
|
|
int32_t L_101 = V_10;
|
|
V_10 = ((int32_t)il2cpp_codegen_add(L_101, 1));
|
|
}
|
|
|
|
IL_01a4:
|
|
{
|
|
// for( int i = 0; i < tokenValues.Length && i < 4; i++ )
|
|
int32_t L_102 = V_10;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_103 = V_1;
|
|
if ((((int32_t)L_102) >= ((int32_t)((int32_t)(((RuntimeArray*)L_103)->max_length)))))
|
|
{
|
|
goto IL_01b0;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_104 = V_10;
|
|
if ((((int32_t)L_104) < ((int32_t)4)))
|
|
{
|
|
goto IL_0191;
|
|
}
|
|
}
|
|
|
|
IL_01b0:
|
|
{
|
|
// output = result;
|
|
RuntimeObject** L_105 = ___output2;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_106 = V_9;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_107 = L_106;
|
|
RuntimeObject* L_108 = Box(Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_il2cpp_TypeInfo_var, &L_107);
|
|
*((RuntimeObject**)L_105) = (RuntimeObject*)L_108;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_105, (void*)(RuntimeObject*)L_108);
|
|
goto IL_05d6;
|
|
}
|
|
|
|
IL_01be:
|
|
{
|
|
// else if( vectorType == typeof( Quaternion ) )
|
|
Type_t* L_109 = ___vectorType1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_110 = { reinterpret_cast<intptr_t> (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_111;
|
|
L_111 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_110, NULL);
|
|
bool L_112;
|
|
L_112 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_109, L_111, NULL);
|
|
if (!L_112)
|
|
{
|
|
goto IL_0209;
|
|
}
|
|
}
|
|
{
|
|
// Quaternion result = Quaternion.identity;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_113;
|
|
L_113 = Quaternion_get_identity_m7E701AE095ED10FD5EA0B50ABCFDE2EEFF2173A5_inline(NULL);
|
|
V_11 = L_113;
|
|
// for( int i = 0; i < tokenValues.Length && i < 4; i++ )
|
|
V_12 = 0;
|
|
goto IL_01ef;
|
|
}
|
|
|
|
IL_01dc:
|
|
{
|
|
// result[i] = tokenValues[i];
|
|
int32_t L_114 = V_12;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_115 = V_1;
|
|
int32_t L_116 = V_12;
|
|
int32_t L_117 = L_116;
|
|
float L_118 = (L_115)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_117));
|
|
Quaternion_set_Item_mFEF628DD58AC71A1E712A6F3F9642D5DA00675CE_inline((&V_11), L_114, L_118, NULL);
|
|
// for( int i = 0; i < tokenValues.Length && i < 4; i++ )
|
|
int32_t L_119 = V_12;
|
|
V_12 = ((int32_t)il2cpp_codegen_add(L_119, 1));
|
|
}
|
|
|
|
IL_01ef:
|
|
{
|
|
// for( int i = 0; i < tokenValues.Length && i < 4; i++ )
|
|
int32_t L_120 = V_12;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_121 = V_1;
|
|
if ((((int32_t)L_120) >= ((int32_t)((int32_t)(((RuntimeArray*)L_121)->max_length)))))
|
|
{
|
|
goto IL_01fb;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_122 = V_12;
|
|
if ((((int32_t)L_122) < ((int32_t)4)))
|
|
{
|
|
goto IL_01dc;
|
|
}
|
|
}
|
|
|
|
IL_01fb:
|
|
{
|
|
// output = result;
|
|
RuntimeObject** L_123 = ___output2;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_124 = V_11;
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_125 = L_124;
|
|
RuntimeObject* L_126 = Box(Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_il2cpp_TypeInfo_var, &L_125);
|
|
*((RuntimeObject**)L_123) = (RuntimeObject*)L_126;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_123, (void*)(RuntimeObject*)L_126);
|
|
goto IL_05d6;
|
|
}
|
|
|
|
IL_0209:
|
|
{
|
|
// else if( vectorType == typeof( Color ) )
|
|
Type_t* L_127 = ___vectorType1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_128 = { reinterpret_cast<intptr_t> (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_129;
|
|
L_129 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_128, NULL);
|
|
bool L_130;
|
|
L_130 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_127, L_129, NULL);
|
|
if (!L_130)
|
|
{
|
|
goto IL_0254;
|
|
}
|
|
}
|
|
{
|
|
// Color result = Color.black;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_131;
|
|
L_131 = Color_get_black_mB50217951591A045844C61E7FF31EEE3FEF16737_inline(NULL);
|
|
V_13 = L_131;
|
|
// for( int i = 0; i < tokenValues.Length && i < 4; i++ )
|
|
V_14 = 0;
|
|
goto IL_023a;
|
|
}
|
|
|
|
IL_0227:
|
|
{
|
|
// result[i] = tokenValues[i];
|
|
int32_t L_132 = V_14;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_133 = V_1;
|
|
int32_t L_134 = V_14;
|
|
int32_t L_135 = L_134;
|
|
float L_136 = (L_133)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_135));
|
|
Color_set_Item_mB7A7D9F6632CDA2F9CE2E817776010653C2A20B2_inline((&V_13), L_132, L_136, NULL);
|
|
// for( int i = 0; i < tokenValues.Length && i < 4; i++ )
|
|
int32_t L_137 = V_14;
|
|
V_14 = ((int32_t)il2cpp_codegen_add(L_137, 1));
|
|
}
|
|
|
|
IL_023a:
|
|
{
|
|
// for( int i = 0; i < tokenValues.Length && i < 4; i++ )
|
|
int32_t L_138 = V_14;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_139 = V_1;
|
|
if ((((int32_t)L_138) >= ((int32_t)((int32_t)(((RuntimeArray*)L_139)->max_length)))))
|
|
{
|
|
goto IL_0246;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_140 = V_14;
|
|
if ((((int32_t)L_140) < ((int32_t)4)))
|
|
{
|
|
goto IL_0227;
|
|
}
|
|
}
|
|
|
|
IL_0246:
|
|
{
|
|
// output = result;
|
|
RuntimeObject** L_141 = ___output2;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_142 = V_13;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_143 = L_142;
|
|
RuntimeObject* L_144 = Box(Color_tD001788D726C3A7F1379BEED0260B9591F440C1F_il2cpp_TypeInfo_var, &L_143);
|
|
*((RuntimeObject**)L_141) = (RuntimeObject*)L_144;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_141, (void*)(RuntimeObject*)L_144);
|
|
goto IL_05d6;
|
|
}
|
|
|
|
IL_0254:
|
|
{
|
|
// else if( vectorType == typeof( Color32 ) )
|
|
Type_t* L_145 = ___vectorType1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_146 = { reinterpret_cast<intptr_t> (Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_147;
|
|
L_147 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_146, NULL);
|
|
bool L_148;
|
|
L_148 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_145, L_147, NULL);
|
|
if (!L_148)
|
|
{
|
|
goto IL_02d9;
|
|
}
|
|
}
|
|
{
|
|
// Color32 result = new Color32( 0, 0, 0, 255 );
|
|
Color32__ctor_mC9C6B443F0C7CA3F8B174158B2AF6F05E18EAC4E_inline((&V_15), (uint8_t)0, (uint8_t)0, (uint8_t)0, (uint8_t)((int32_t)255), NULL);
|
|
// if( tokenValues.Length > 0 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_149 = V_1;
|
|
if (!(((RuntimeArray*)L_149)->max_length))
|
|
{
|
|
goto IL_0289;
|
|
}
|
|
}
|
|
{
|
|
// result.r = (byte) Mathf.RoundToInt( tokenValues[0] );
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_150 = V_1;
|
|
int32_t L_151 = 0;
|
|
float L_152 = (L_150)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_151));
|
|
int32_t L_153;
|
|
L_153 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_152, NULL);
|
|
(&V_15)->___r_1 = (uint8_t)((int32_t)(uint8_t)L_153);
|
|
}
|
|
|
|
IL_0289:
|
|
{
|
|
// if( tokenValues.Length > 1 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_154 = V_1;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_154)->max_length))) <= ((int32_t)1)))
|
|
{
|
|
goto IL_029f;
|
|
}
|
|
}
|
|
{
|
|
// result.g = (byte) Mathf.RoundToInt( tokenValues[1] );
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_155 = V_1;
|
|
int32_t L_156 = 1;
|
|
float L_157 = (L_155)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_156));
|
|
int32_t L_158;
|
|
L_158 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_157, NULL);
|
|
(&V_15)->___g_2 = (uint8_t)((int32_t)(uint8_t)L_158);
|
|
}
|
|
|
|
IL_029f:
|
|
{
|
|
// if( tokenValues.Length > 2 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_159 = V_1;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_159)->max_length))) <= ((int32_t)2)))
|
|
{
|
|
goto IL_02b5;
|
|
}
|
|
}
|
|
{
|
|
// result.b = (byte) Mathf.RoundToInt( tokenValues[2] );
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_160 = V_1;
|
|
int32_t L_161 = 2;
|
|
float L_162 = (L_160)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_161));
|
|
int32_t L_163;
|
|
L_163 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_162, NULL);
|
|
(&V_15)->___b_3 = (uint8_t)((int32_t)(uint8_t)L_163);
|
|
}
|
|
|
|
IL_02b5:
|
|
{
|
|
// if( tokenValues.Length > 3 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_164 = V_1;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_164)->max_length))) <= ((int32_t)3)))
|
|
{
|
|
goto IL_02cb;
|
|
}
|
|
}
|
|
{
|
|
// result.a = (byte) Mathf.RoundToInt( tokenValues[3] );
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_165 = V_1;
|
|
int32_t L_166 = 3;
|
|
float L_167 = (L_165)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_166));
|
|
int32_t L_168;
|
|
L_168 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_167, NULL);
|
|
(&V_15)->___a_4 = (uint8_t)((int32_t)(uint8_t)L_168);
|
|
}
|
|
|
|
IL_02cb:
|
|
{
|
|
// output = result;
|
|
RuntimeObject** L_169 = ___output2;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_170 = V_15;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_171 = L_170;
|
|
RuntimeObject* L_172 = Box(Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_il2cpp_TypeInfo_var, &L_171);
|
|
*((RuntimeObject**)L_169) = (RuntimeObject*)L_172;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_169, (void*)(RuntimeObject*)L_172);
|
|
goto IL_05d6;
|
|
}
|
|
|
|
IL_02d9:
|
|
{
|
|
// else if( vectorType == typeof( Rect ) )
|
|
Type_t* L_173 = ___vectorType1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_174 = { reinterpret_cast<intptr_t> (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_175;
|
|
L_175 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_174, NULL);
|
|
bool L_176;
|
|
L_176 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_173, L_175, NULL);
|
|
if (!L_176)
|
|
{
|
|
goto IL_033e;
|
|
}
|
|
}
|
|
{
|
|
// Rect result = Rect.zero;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_177;
|
|
L_177 = Rect_get_zero_m5341D8B63DEF1F4C308A685EEC8CFEA12A396C8D(NULL);
|
|
V_16 = L_177;
|
|
// if( tokenValues.Length > 0 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_178 = V_1;
|
|
if (!(((RuntimeArray*)L_178)->max_length))
|
|
{
|
|
goto IL_0300;
|
|
}
|
|
}
|
|
{
|
|
// result.x = tokenValues[0];
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_179 = V_1;
|
|
int32_t L_180 = 0;
|
|
float L_181 = (L_179)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_180));
|
|
Rect_set_x_mAB91AB71898A20762BC66FD0723C4C739C4C3406((&V_16), L_181, NULL);
|
|
}
|
|
|
|
IL_0300:
|
|
{
|
|
// if( tokenValues.Length > 1 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_182 = V_1;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_182)->max_length))) <= ((int32_t)1)))
|
|
{
|
|
goto IL_0310;
|
|
}
|
|
}
|
|
{
|
|
// result.y = tokenValues[1];
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_183 = V_1;
|
|
int32_t L_184 = 1;
|
|
float L_185 = (L_183)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_184));
|
|
Rect_set_y_mDE91F4B98A6E8623EFB1250FF6526D5DB5855629((&V_16), L_185, NULL);
|
|
}
|
|
|
|
IL_0310:
|
|
{
|
|
// if( tokenValues.Length > 2 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_186 = V_1;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_186)->max_length))) <= ((int32_t)2)))
|
|
{
|
|
goto IL_0320;
|
|
}
|
|
}
|
|
{
|
|
// result.width = tokenValues[2];
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_187 = V_1;
|
|
int32_t L_188 = 2;
|
|
float L_189 = (L_187)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_188));
|
|
Rect_set_width_m93B6217CF3EFF89F9B0C81F34D7345DE90B93E5A((&V_16), L_189, NULL);
|
|
}
|
|
|
|
IL_0320:
|
|
{
|
|
// if( tokenValues.Length > 3 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_190 = V_1;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_190)->max_length))) <= ((int32_t)3)))
|
|
{
|
|
goto IL_0330;
|
|
}
|
|
}
|
|
{
|
|
// result.height = tokenValues[3];
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_191 = V_1;
|
|
int32_t L_192 = 3;
|
|
float L_193 = (L_191)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_192));
|
|
Rect_set_height_mD00038E6E06637137A5626CA8CD421924005BF03((&V_16), L_193, NULL);
|
|
}
|
|
|
|
IL_0330:
|
|
{
|
|
// output = result;
|
|
RuntimeObject** L_194 = ___output2;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_195 = V_16;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_196 = L_195;
|
|
RuntimeObject* L_197 = Box(Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D_il2cpp_TypeInfo_var, &L_196);
|
|
*((RuntimeObject**)L_194) = (RuntimeObject*)L_197;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_194, (void*)(RuntimeObject*)L_197);
|
|
goto IL_05d6;
|
|
}
|
|
|
|
IL_033e:
|
|
{
|
|
// else if( vectorType == typeof( RectOffset ) )
|
|
Type_t* L_198 = ___vectorType1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_199 = { reinterpret_cast<intptr_t> (RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_200;
|
|
L_200 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_199, NULL);
|
|
bool L_201;
|
|
L_201 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_198, L_200, NULL);
|
|
if (!L_201)
|
|
{
|
|
goto IL_03b2;
|
|
}
|
|
}
|
|
{
|
|
// RectOffset result = new RectOffset();
|
|
RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* L_202 = (RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5*)il2cpp_codegen_object_new(RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5_il2cpp_TypeInfo_var);
|
|
RectOffset__ctor_m7DB8E8EDDB814824299F9EF661DAFA32854F0CC9(L_202, NULL);
|
|
V_17 = L_202;
|
|
// if( tokenValues.Length > 0 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_203 = V_1;
|
|
if (!(((RuntimeArray*)L_203)->max_length))
|
|
{
|
|
goto IL_036a;
|
|
}
|
|
}
|
|
{
|
|
// result.left = Mathf.RoundToInt( tokenValues[0] );
|
|
RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* L_204 = V_17;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_205 = V_1;
|
|
int32_t L_206 = 0;
|
|
float L_207 = (L_205)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_206));
|
|
int32_t L_208;
|
|
L_208 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_207, NULL);
|
|
RectOffset_set_left_mEE36418FAC0A5C5AA4A1C886C7CFF5D35AFAD2C0(L_204, L_208, NULL);
|
|
}
|
|
|
|
IL_036a:
|
|
{
|
|
// if( tokenValues.Length > 1 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_209 = V_1;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_209)->max_length))) <= ((int32_t)1)))
|
|
{
|
|
goto IL_037f;
|
|
}
|
|
}
|
|
{
|
|
// result.right = Mathf.RoundToInt( tokenValues[1] );
|
|
RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* L_210 = V_17;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_211 = V_1;
|
|
int32_t L_212 = 1;
|
|
float L_213 = (L_211)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_212));
|
|
int32_t L_214;
|
|
L_214 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_213, NULL);
|
|
RectOffset_set_right_m6D3608E0973F68CC0D0A6A9863D31D70972A9588(L_210, L_214, NULL);
|
|
}
|
|
|
|
IL_037f:
|
|
{
|
|
// if( tokenValues.Length > 2 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_215 = V_1;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_215)->max_length))) <= ((int32_t)2)))
|
|
{
|
|
goto IL_0394;
|
|
}
|
|
}
|
|
{
|
|
// result.top = Mathf.RoundToInt( tokenValues[2] );
|
|
RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* L_216 = V_17;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_217 = V_1;
|
|
int32_t L_218 = 2;
|
|
float L_219 = (L_217)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_218));
|
|
int32_t L_220;
|
|
L_220 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_219, NULL);
|
|
RectOffset_set_top_mEF389A8923A33EC2927AD13ADE00D960D4593207(L_216, L_220, NULL);
|
|
}
|
|
|
|
IL_0394:
|
|
{
|
|
// if( tokenValues.Length > 3 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_221 = V_1;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_221)->max_length))) <= ((int32_t)3)))
|
|
{
|
|
goto IL_03a9;
|
|
}
|
|
}
|
|
{
|
|
// result.bottom = Mathf.RoundToInt( tokenValues[3] );
|
|
RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* L_222 = V_17;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_223 = V_1;
|
|
int32_t L_224 = 3;
|
|
float L_225 = (L_223)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_224));
|
|
int32_t L_226;
|
|
L_226 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_225, NULL);
|
|
RectOffset_set_bottom_mB303CE31F9932C3BE8A3FD48E5049D624F395C83(L_222, L_226, NULL);
|
|
}
|
|
|
|
IL_03a9:
|
|
{
|
|
// output = result;
|
|
RuntimeObject** L_227 = ___output2;
|
|
RectOffset_t6358774A0DEEABA4586840CB9BC7DC88B39660B5* L_228 = V_17;
|
|
*((RuntimeObject**)L_227) = (RuntimeObject*)L_228;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_227, (void*)(RuntimeObject*)L_228);
|
|
goto IL_05d6;
|
|
}
|
|
|
|
IL_03b2:
|
|
{
|
|
// else if( vectorType == typeof( Bounds ) )
|
|
Type_t* L_229 = ___vectorType1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_230 = { reinterpret_cast<intptr_t> (Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_231;
|
|
L_231 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_230, NULL);
|
|
bool L_232;
|
|
L_232 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_229, L_231, NULL);
|
|
if (!L_232)
|
|
{
|
|
goto IL_0431;
|
|
}
|
|
}
|
|
{
|
|
// Vector3 center = Vector3.zero;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_233;
|
|
L_233 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
V_18 = L_233;
|
|
// for( int i = 0; i < tokenValues.Length && i < 3; i++ )
|
|
V_20 = 0;
|
|
goto IL_03e3;
|
|
}
|
|
|
|
IL_03d0:
|
|
{
|
|
// center[i] = tokenValues[i];
|
|
int32_t L_234 = V_20;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_235 = V_1;
|
|
int32_t L_236 = V_20;
|
|
int32_t L_237 = L_236;
|
|
float L_238 = (L_235)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_237));
|
|
Vector3_set_Item_m79136861DEC5862CE7EC20AB3B0EF10A3957CEC3_inline((&V_18), L_234, L_238, NULL);
|
|
// for( int i = 0; i < tokenValues.Length && i < 3; i++ )
|
|
int32_t L_239 = V_20;
|
|
V_20 = ((int32_t)il2cpp_codegen_add(L_239, 1));
|
|
}
|
|
|
|
IL_03e3:
|
|
{
|
|
// for( int i = 0; i < tokenValues.Length && i < 3; i++ )
|
|
int32_t L_240 = V_20;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_241 = V_1;
|
|
if ((((int32_t)L_240) >= ((int32_t)((int32_t)(((RuntimeArray*)L_241)->max_length)))))
|
|
{
|
|
goto IL_03ef;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_242 = V_20;
|
|
if ((((int32_t)L_242) < ((int32_t)3)))
|
|
{
|
|
goto IL_03d0;
|
|
}
|
|
}
|
|
|
|
IL_03ef:
|
|
{
|
|
// Vector3 size = Vector3.zero;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_243;
|
|
L_243 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
V_19 = L_243;
|
|
// for( int i = 3; i < tokenValues.Length && i < 6; i++ )
|
|
V_21 = 3;
|
|
goto IL_0410;
|
|
}
|
|
|
|
IL_03fb:
|
|
{
|
|
// size[i - 3] = tokenValues[i];
|
|
int32_t L_244 = V_21;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_245 = V_1;
|
|
int32_t L_246 = V_21;
|
|
int32_t L_247 = L_246;
|
|
float L_248 = (L_245)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_247));
|
|
Vector3_set_Item_m79136861DEC5862CE7EC20AB3B0EF10A3957CEC3_inline((&V_19), ((int32_t)il2cpp_codegen_subtract(L_244, 3)), L_248, NULL);
|
|
// for( int i = 3; i < tokenValues.Length && i < 6; i++ )
|
|
int32_t L_249 = V_21;
|
|
V_21 = ((int32_t)il2cpp_codegen_add(L_249, 1));
|
|
}
|
|
|
|
IL_0410:
|
|
{
|
|
// for( int i = 3; i < tokenValues.Length && i < 6; i++ )
|
|
int32_t L_250 = V_21;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_251 = V_1;
|
|
if ((((int32_t)L_250) >= ((int32_t)((int32_t)(((RuntimeArray*)L_251)->max_length)))))
|
|
{
|
|
goto IL_041c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_252 = V_21;
|
|
if ((((int32_t)L_252) < ((int32_t)6)))
|
|
{
|
|
goto IL_03fb;
|
|
}
|
|
}
|
|
|
|
IL_041c:
|
|
{
|
|
// output = new Bounds( center, size );
|
|
RuntimeObject** L_253 = ___output2;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_254 = V_18;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_255 = V_19;
|
|
Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3 L_256;
|
|
memset((&L_256), 0, sizeof(L_256));
|
|
Bounds__ctor_mAF7B238B9FBF90C495E5D7951760085A93119C5A((&L_256), L_254, L_255, /*hidden argument*/NULL);
|
|
Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3 L_257 = L_256;
|
|
RuntimeObject* L_258 = Box(Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3_il2cpp_TypeInfo_var, &L_257);
|
|
*((RuntimeObject**)L_253) = (RuntimeObject*)L_258;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_253, (void*)(RuntimeObject*)L_258);
|
|
goto IL_05d6;
|
|
}
|
|
|
|
IL_0431:
|
|
{
|
|
// else if( vectorType == typeof( Vector3Int ) )
|
|
Type_t* L_259 = ___vectorType1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_260 = { reinterpret_cast<intptr_t> (Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_261;
|
|
L_261 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_260, NULL);
|
|
bool L_262;
|
|
L_262 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_259, L_261, NULL);
|
|
if (!L_262)
|
|
{
|
|
goto IL_0481;
|
|
}
|
|
}
|
|
{
|
|
// Vector3Int result = Vector3Int.zero;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 L_263;
|
|
L_263 = Vector3Int_get_zero_m0D0DA069A4982B8DB9F5EE1A26E4CAEEA454FEE2_inline(NULL);
|
|
V_22 = L_263;
|
|
// for( int i = 0; i < tokenValues.Length && i < 3; i++ )
|
|
V_23 = 0;
|
|
goto IL_0467;
|
|
}
|
|
|
|
IL_044f:
|
|
{
|
|
// result[i] = Mathf.RoundToInt( tokenValues[i] );
|
|
int32_t L_264 = V_23;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_265 = V_1;
|
|
int32_t L_266 = V_23;
|
|
int32_t L_267 = L_266;
|
|
float L_268 = (L_265)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_267));
|
|
int32_t L_269;
|
|
L_269 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_268, NULL);
|
|
Vector3Int_set_Item_m54C03389E56D4403F81C5560671011599599B67D_inline((&V_22), L_264, L_269, NULL);
|
|
// for( int i = 0; i < tokenValues.Length && i < 3; i++ )
|
|
int32_t L_270 = V_23;
|
|
V_23 = ((int32_t)il2cpp_codegen_add(L_270, 1));
|
|
}
|
|
|
|
IL_0467:
|
|
{
|
|
// for( int i = 0; i < tokenValues.Length && i < 3; i++ )
|
|
int32_t L_271 = V_23;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_272 = V_1;
|
|
if ((((int32_t)L_271) >= ((int32_t)((int32_t)(((RuntimeArray*)L_272)->max_length)))))
|
|
{
|
|
goto IL_0473;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_273 = V_23;
|
|
if ((((int32_t)L_273) < ((int32_t)3)))
|
|
{
|
|
goto IL_044f;
|
|
}
|
|
}
|
|
|
|
IL_0473:
|
|
{
|
|
// output = result;
|
|
RuntimeObject** L_274 = ___output2;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 L_275 = V_22;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 L_276 = L_275;
|
|
RuntimeObject* L_277 = Box(Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_il2cpp_TypeInfo_var, &L_276);
|
|
*((RuntimeObject**)L_274) = (RuntimeObject*)L_277;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_274, (void*)(RuntimeObject*)L_277);
|
|
goto IL_05d6;
|
|
}
|
|
|
|
IL_0481:
|
|
{
|
|
// else if( vectorType == typeof( Vector2Int ) )
|
|
Type_t* L_278 = ___vectorType1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_279 = { reinterpret_cast<intptr_t> (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_280;
|
|
L_280 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_279, NULL);
|
|
bool L_281;
|
|
L_281 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_278, L_280, NULL);
|
|
if (!L_281)
|
|
{
|
|
goto IL_04d1;
|
|
}
|
|
}
|
|
{
|
|
// Vector2Int result = Vector2Int.zero;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A L_282;
|
|
L_282 = Vector2Int_get_zero_mF92C338E9CB9434105090E675E04D20A29649553_inline(NULL);
|
|
V_24 = L_282;
|
|
// for( int i = 0; i < tokenValues.Length && i < 2; i++ )
|
|
V_25 = 0;
|
|
goto IL_04b7;
|
|
}
|
|
|
|
IL_049f:
|
|
{
|
|
// result[i] = Mathf.RoundToInt( tokenValues[i] );
|
|
int32_t L_283 = V_25;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_284 = V_1;
|
|
int32_t L_285 = V_25;
|
|
int32_t L_286 = L_285;
|
|
float L_287 = (L_284)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_286));
|
|
int32_t L_288;
|
|
L_288 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_287, NULL);
|
|
Vector2Int_set_Item_mDC8B5A6DBB600C2AEB15712F0D02A434E7831B5B_inline((&V_24), L_283, L_288, NULL);
|
|
// for( int i = 0; i < tokenValues.Length && i < 2; i++ )
|
|
int32_t L_289 = V_25;
|
|
V_25 = ((int32_t)il2cpp_codegen_add(L_289, 1));
|
|
}
|
|
|
|
IL_04b7:
|
|
{
|
|
// for( int i = 0; i < tokenValues.Length && i < 2; i++ )
|
|
int32_t L_290 = V_25;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_291 = V_1;
|
|
if ((((int32_t)L_290) >= ((int32_t)((int32_t)(((RuntimeArray*)L_291)->max_length)))))
|
|
{
|
|
goto IL_04c3;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_292 = V_25;
|
|
if ((((int32_t)L_292) < ((int32_t)2)))
|
|
{
|
|
goto IL_049f;
|
|
}
|
|
}
|
|
|
|
IL_04c3:
|
|
{
|
|
// output = result;
|
|
RuntimeObject** L_293 = ___output2;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A L_294 = V_24;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A L_295 = L_294;
|
|
RuntimeObject* L_296 = Box(Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_il2cpp_TypeInfo_var, &L_295);
|
|
*((RuntimeObject**)L_293) = (RuntimeObject*)L_296;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_293, (void*)(RuntimeObject*)L_296);
|
|
goto IL_05d6;
|
|
}
|
|
|
|
IL_04d1:
|
|
{
|
|
// else if( vectorType == typeof( RectInt ) )
|
|
Type_t* L_297 = ___vectorType1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_298 = { reinterpret_cast<intptr_t> (RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_299;
|
|
L_299 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_298, NULL);
|
|
bool L_300;
|
|
L_300 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_297, L_299, NULL);
|
|
if (!L_300)
|
|
{
|
|
goto IL_054b;
|
|
}
|
|
}
|
|
{
|
|
// RectInt result = new RectInt();
|
|
il2cpp_codegen_initobj((&V_26), sizeof(RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8));
|
|
// if( tokenValues.Length > 0 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_301 = V_1;
|
|
if (!(((RuntimeArray*)L_301)->max_length))
|
|
{
|
|
goto IL_04fe;
|
|
}
|
|
}
|
|
{
|
|
// result.x = Mathf.RoundToInt( tokenValues[0] );
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_302 = V_1;
|
|
int32_t L_303 = 0;
|
|
float L_304 = (L_302)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_303));
|
|
int32_t L_305;
|
|
L_305 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_304, NULL);
|
|
RectInt_set_x_m2D2F3A87E9899A29444DBDD0BB11CB19F13AA075((&V_26), L_305, NULL);
|
|
}
|
|
|
|
IL_04fe:
|
|
{
|
|
// if( tokenValues.Length > 1 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_306 = V_1;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_306)->max_length))) <= ((int32_t)1)))
|
|
{
|
|
goto IL_0513;
|
|
}
|
|
}
|
|
{
|
|
// result.y = Mathf.RoundToInt( tokenValues[1] );
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_307 = V_1;
|
|
int32_t L_308 = 1;
|
|
float L_309 = (L_307)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_308));
|
|
int32_t L_310;
|
|
L_310 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_309, NULL);
|
|
RectInt_set_y_m45D5C1D817698266BED66D41A705956A1571858D((&V_26), L_310, NULL);
|
|
}
|
|
|
|
IL_0513:
|
|
{
|
|
// if( tokenValues.Length > 2 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_311 = V_1;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_311)->max_length))) <= ((int32_t)2)))
|
|
{
|
|
goto IL_0528;
|
|
}
|
|
}
|
|
{
|
|
// result.width = Mathf.RoundToInt( tokenValues[2] );
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_312 = V_1;
|
|
int32_t L_313 = 2;
|
|
float L_314 = (L_312)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_313));
|
|
int32_t L_315;
|
|
L_315 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_314, NULL);
|
|
RectInt_set_width_mCD96AA9D096114147F8411A340CE4AD3476DCD4C((&V_26), L_315, NULL);
|
|
}
|
|
|
|
IL_0528:
|
|
{
|
|
// if( tokenValues.Length > 3 )
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_316 = V_1;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_316)->max_length))) <= ((int32_t)3)))
|
|
{
|
|
goto IL_053d;
|
|
}
|
|
}
|
|
{
|
|
// result.height = Mathf.RoundToInt( tokenValues[3] );
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_317 = V_1;
|
|
int32_t L_318 = 3;
|
|
float L_319 = (L_317)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_318));
|
|
int32_t L_320;
|
|
L_320 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_319, NULL);
|
|
RectInt_set_height_m823A353A80B8B5180AEDF968A6E85B9D9B75C1C6((&V_26), L_320, NULL);
|
|
}
|
|
|
|
IL_053d:
|
|
{
|
|
// output = result;
|
|
RuntimeObject** L_321 = ___output2;
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 L_322 = V_26;
|
|
RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8 L_323 = L_322;
|
|
RuntimeObject* L_324 = Box(RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8_il2cpp_TypeInfo_var, &L_323);
|
|
*((RuntimeObject**)L_321) = (RuntimeObject*)L_324;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_321, (void*)(RuntimeObject*)L_324);
|
|
goto IL_05d6;
|
|
}
|
|
|
|
IL_054b:
|
|
{
|
|
// else if( vectorType == typeof( BoundsInt ) )
|
|
Type_t* L_325 = ___vectorType1;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_326 = { reinterpret_cast<intptr_t> (BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_327;
|
|
L_327 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_326, NULL);
|
|
bool L_328;
|
|
L_328 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_325, L_327, NULL);
|
|
if (!L_328)
|
|
{
|
|
goto IL_05d1;
|
|
}
|
|
}
|
|
{
|
|
// Vector3Int center = Vector3Int.zero;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 L_329;
|
|
L_329 = Vector3Int_get_zero_m0D0DA069A4982B8DB9F5EE1A26E4CAEEA454FEE2_inline(NULL);
|
|
V_27 = L_329;
|
|
// for( int i = 0; i < tokenValues.Length && i < 3; i++ )
|
|
V_29 = 0;
|
|
goto IL_0581;
|
|
}
|
|
|
|
IL_0569:
|
|
{
|
|
// center[i] = Mathf.RoundToInt( tokenValues[i] );
|
|
int32_t L_330 = V_29;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_331 = V_1;
|
|
int32_t L_332 = V_29;
|
|
int32_t L_333 = L_332;
|
|
float L_334 = (L_331)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_333));
|
|
int32_t L_335;
|
|
L_335 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_334, NULL);
|
|
Vector3Int_set_Item_m54C03389E56D4403F81C5560671011599599B67D_inline((&V_27), L_330, L_335, NULL);
|
|
// for( int i = 0; i < tokenValues.Length && i < 3; i++ )
|
|
int32_t L_336 = V_29;
|
|
V_29 = ((int32_t)il2cpp_codegen_add(L_336, 1));
|
|
}
|
|
|
|
IL_0581:
|
|
{
|
|
// for( int i = 0; i < tokenValues.Length && i < 3; i++ )
|
|
int32_t L_337 = V_29;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_338 = V_1;
|
|
if ((((int32_t)L_337) >= ((int32_t)((int32_t)(((RuntimeArray*)L_338)->max_length)))))
|
|
{
|
|
goto IL_058d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_339 = V_29;
|
|
if ((((int32_t)L_339) < ((int32_t)3)))
|
|
{
|
|
goto IL_0569;
|
|
}
|
|
}
|
|
|
|
IL_058d:
|
|
{
|
|
// Vector3Int size = Vector3Int.zero;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 L_340;
|
|
L_340 = Vector3Int_get_zero_m0D0DA069A4982B8DB9F5EE1A26E4CAEEA454FEE2_inline(NULL);
|
|
V_28 = L_340;
|
|
// for( int i = 3; i < tokenValues.Length && i < 6; i++ )
|
|
V_30 = 3;
|
|
goto IL_05b3;
|
|
}
|
|
|
|
IL_0599:
|
|
{
|
|
// size[i - 3] = Mathf.RoundToInt( tokenValues[i] );
|
|
int32_t L_341 = V_30;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_342 = V_1;
|
|
int32_t L_343 = V_30;
|
|
int32_t L_344 = L_343;
|
|
float L_345 = (L_342)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_344));
|
|
int32_t L_346;
|
|
L_346 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_345, NULL);
|
|
Vector3Int_set_Item_m54C03389E56D4403F81C5560671011599599B67D_inline((&V_28), ((int32_t)il2cpp_codegen_subtract(L_341, 3)), L_346, NULL);
|
|
// for( int i = 3; i < tokenValues.Length && i < 6; i++ )
|
|
int32_t L_347 = V_30;
|
|
V_30 = ((int32_t)il2cpp_codegen_add(L_347, 1));
|
|
}
|
|
|
|
IL_05b3:
|
|
{
|
|
// for( int i = 3; i < tokenValues.Length && i < 6; i++ )
|
|
int32_t L_348 = V_30;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_349 = V_1;
|
|
if ((((int32_t)L_348) >= ((int32_t)((int32_t)(((RuntimeArray*)L_349)->max_length)))))
|
|
{
|
|
goto IL_05bf;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_350 = V_30;
|
|
if ((((int32_t)L_350) < ((int32_t)6)))
|
|
{
|
|
goto IL_0599;
|
|
}
|
|
}
|
|
|
|
IL_05bf:
|
|
{
|
|
// output = new BoundsInt( center, size );
|
|
RuntimeObject** L_351 = ___output2;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 L_352 = V_27;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 L_353 = V_28;
|
|
BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485 L_354;
|
|
memset((&L_354), 0, sizeof(L_354));
|
|
BoundsInt__ctor_m93F7EDF326B3BA01465FA229F6CEED0ED48D32FF((&L_354), L_352, L_353, /*hidden argument*/NULL);
|
|
BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485 L_355 = L_354;
|
|
RuntimeObject* L_356 = Box(BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485_il2cpp_TypeInfo_var, &L_355);
|
|
*((RuntimeObject**)L_351) = (RuntimeObject*)L_356;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_351, (void*)(RuntimeObject*)L_356);
|
|
goto IL_05d6;
|
|
}
|
|
|
|
IL_05d1:
|
|
{
|
|
// output = null;
|
|
RuntimeObject** L_357 = ___output2;
|
|
*((RuntimeObject**)L_357) = (RuntimeObject*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_357, (void*)(RuntimeObject*)NULL);
|
|
// return false;
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_05d6:
|
|
{
|
|
// return true;
|
|
return (bool)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
|
|
bool ParseFunction_Invoke_m6559BD38F8E131515CE959A7FC6D7EDE407794C1_Multicast(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* __this, String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_array_size_t length = __this->___delegates_13->max_length;
|
|
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
|
|
bool retVal = false;
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* currentDelegate = reinterpret_cast<ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C*>(delegatesToInvoke[i]);
|
|
typedef bool (*FunctionPointerType) (RuntimeObject*, String_t*, RuntimeObject**, const RuntimeMethod*);
|
|
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)((Il2CppObject*)currentDelegate->___method_code_6, ___input0, ___output1, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
|
|
}
|
|
return retVal;
|
|
}
|
|
bool ParseFunction_Invoke_m6559BD38F8E131515CE959A7FC6D7EDE407794C1_OpenInst(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* __this, String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (String_t*, RuntimeObject**, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___method_ptr_0)(___input0, ___output1, method);
|
|
}
|
|
bool ParseFunction_Invoke_m6559BD38F8E131515CE959A7FC6D7EDE407794C1_OpenStatic(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* __this, String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (String_t*, RuntimeObject**, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___method_ptr_0)(___input0, ___output1, method);
|
|
}
|
|
bool ParseFunction_Invoke_m6559BD38F8E131515CE959A7FC6D7EDE407794C1_OpenStaticInvoker(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* __this, String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
return InvokerFuncInvoker2< bool, String_t*, RuntimeObject** >::Invoke(__this->___method_ptr_0, method, NULL, ___input0, ___output1);
|
|
}
|
|
bool ParseFunction_Invoke_m6559BD38F8E131515CE959A7FC6D7EDE407794C1_ClosedStaticInvoker(ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* __this, String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
return InvokerFuncInvoker3< bool, RuntimeObject*, String_t*, RuntimeObject** >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___input0, ___output1);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogConsole/ParseFunction::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParseFunction__ctor_m6660320276B797D09EC7D69B6AB268429D3B4B25 (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
|
|
{
|
|
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
|
|
__this->___method_3 = ___method1;
|
|
__this->___m_target_2 = ___object0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
|
|
int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
|
|
__this->___method_code_6 = (intptr_t)__this;
|
|
if (MethodIsStatic((RuntimeMethod*)___method1))
|
|
{
|
|
bool isOpen = parameterCount == 2;
|
|
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
|
|
if (isOpen)
|
|
__this->___invoke_impl_1 = (intptr_t)&ParseFunction_Invoke_m6559BD38F8E131515CE959A7FC6D7EDE407794C1_OpenStaticInvoker;
|
|
else
|
|
__this->___invoke_impl_1 = (intptr_t)&ParseFunction_Invoke_m6559BD38F8E131515CE959A7FC6D7EDE407794C1_ClosedStaticInvoker;
|
|
else
|
|
if (isOpen)
|
|
__this->___invoke_impl_1 = (intptr_t)&ParseFunction_Invoke_m6559BD38F8E131515CE959A7FC6D7EDE407794C1_OpenStatic;
|
|
else
|
|
{
|
|
__this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0;
|
|
__this->___method_code_6 = (intptr_t)__this->___m_target_2;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool isOpen = parameterCount == 1;
|
|
if (isOpen)
|
|
{
|
|
__this->___invoke_impl_1 = (intptr_t)&ParseFunction_Invoke_m6559BD38F8E131515CE959A7FC6D7EDE407794C1_OpenInst;
|
|
}
|
|
else
|
|
{
|
|
if (___object0 == NULL)
|
|
il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
|
|
__this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0;
|
|
__this->___method_code_6 = (intptr_t)__this->___m_target_2;
|
|
}
|
|
}
|
|
__this->___extra_arg_5 = (intptr_t)&ParseFunction_Invoke_m6559BD38F8E131515CE959A7FC6D7EDE407794C1_Multicast;
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole/ParseFunction::Invoke(System.String,System.Object&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ParseFunction_Invoke_m6559BD38F8E131515CE959A7FC6D7EDE407794C1 (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* __this, String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (RuntimeObject*, String_t*, RuntimeObject**, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___input0, ___output1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
|
|
}
|
|
// System.IAsyncResult IngameDebugConsole.DebugLogConsole/ParseFunction::BeginInvoke(System.String,System.Object&,System.AsyncCallback,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ParseFunction_BeginInvoke_m39B29B3F54DD95ABB11FC726B6A4794D40D9252F (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* __this, String_t* ___input0, RuntimeObject** ___output1, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___callback2, RuntimeObject* ___object3, const RuntimeMethod* method)
|
|
{
|
|
void *__d_args[3] = {0};
|
|
__d_args[0] = ___input0;
|
|
__d_args[1] = *___output1;
|
|
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogConsole/ParseFunction::EndInvoke(System.Object&,System.IAsyncResult)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ParseFunction_EndInvoke_m5161D63D4573B7C0DEB736B7401F3EAC44F0A2BF (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* __this, RuntimeObject** ___output0, RuntimeObject* ___result1, const RuntimeMethod* method)
|
|
{
|
|
void* ___out_args[] = {
|
|
___output0,
|
|
};
|
|
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result1, ___out_args);
|
|
return *(bool*)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
|
|
// System.Void IngameDebugConsole.DebugLogEntry::Initialize(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogEntry_Initialize_m692E8607E734476B69652DF35B19E3456574A190 (DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* __this, String_t* ___logString0, String_t* ___stackTrace1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// this.logString = logString;
|
|
String_t* L_0 = ___logString0;
|
|
__this->___logString_1 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___logString_1), (void*)L_0);
|
|
// this.stackTrace = stackTrace;
|
|
String_t* L_1 = ___stackTrace1;
|
|
__this->___stackTrace_2 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___stackTrace_2), (void*)L_1);
|
|
// completeLog = null;
|
|
__this->___completeLog_3 = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___completeLog_3), (void*)(String_t*)NULL);
|
|
// count = 1;
|
|
__this->___count_5 = 1;
|
|
// hashValue = HASH_NOT_CALCULATED;
|
|
__this->___hashValue_6 = ((int32_t)-623218);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogEntry::Equals(IngameDebugConsole.DebugLogEntry)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogEntry_Equals_m021362E76D5E6FBA5FD55B99B3CFA0070E31A20E (DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* __this, DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* ___other0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// return this.logString == other.logString && this.stackTrace == other.stackTrace;
|
|
String_t* L_0 = __this->___logString_1;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_1 = ___other0;
|
|
String_t* L_2 = L_1->___logString_1;
|
|
bool L_3;
|
|
L_3 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_0, L_2, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4 = __this->___stackTrace_2;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_5 = ___other0;
|
|
String_t* L_6 = L_5->___stackTrace_2;
|
|
bool L_7;
|
|
L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_4, L_6, NULL);
|
|
return L_7;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogEntry::MatchesSearchTerm(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogEntry_MatchesSearchTerm_m2A8682D30E6BAA04DD077A48EB81D85287DC96A2 (DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* __this, String_t* ___searchTerm0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// return ( logString != null && logString.IndexOf( searchTerm, System.StringComparison.OrdinalIgnoreCase ) >= 0 ) ||
|
|
// ( stackTrace != null && stackTrace.IndexOf( searchTerm, System.StringComparison.OrdinalIgnoreCase ) >= 0 );
|
|
String_t* L_0 = __this->___logString_1;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = __this->___logString_1;
|
|
String_t* L_2 = ___searchTerm0;
|
|
int32_t L_3;
|
|
L_3 = String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55(L_1, L_2, 5, NULL);
|
|
if ((((int32_t)L_3) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
String_t* L_4 = __this->___stackTrace_2;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_5 = __this->___stackTrace_2;
|
|
String_t* L_6 = ___searchTerm0;
|
|
int32_t L_7;
|
|
L_7 = String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55(L_5, L_6, 5, NULL);
|
|
return (bool)((((int32_t)((((int32_t)L_7) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.String IngameDebugConsole.DebugLogEntry::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DebugLogEntry_ToString_m5F4E7E9132FF55B28AE199ADB3318A3A80F6C8B6 (DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// if( completeLog == null )
|
|
String_t* L_0 = __this->___completeLog_3;
|
|
if (L_0)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
// completeLog = string.Concat( logString, "\n", stackTrace );
|
|
String_t* L_1 = __this->___logString_1;
|
|
String_t* L_2 = __this->___stackTrace_2;
|
|
String_t* L_3;
|
|
L_3 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_1, _stringLiteral00B28FF06B788B9B67C6B259800F404F9F3761FD, L_2, NULL);
|
|
__this->___completeLog_3 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___completeLog_3), (void*)L_3);
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
// return completeLog;
|
|
String_t* L_4 = __this->___completeLog_3;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Int32 IngameDebugConsole.DebugLogEntry::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DebugLogEntry_GetHashCode_mCF335B183016B043E84E03ACDEF3A054BEE77E08 (DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t G_B3_0 = 0;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* G_B3_1 = NULL;
|
|
int32_t G_B2_0 = 0;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* G_B2_1 = NULL;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B4_1 = 0;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* G_B4_2 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* G_B6_1 = NULL;
|
|
int32_t G_B5_0 = 0;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* G_B5_1 = NULL;
|
|
int32_t G_B7_0 = 0;
|
|
int32_t G_B7_1 = 0;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* G_B7_2 = NULL;
|
|
{
|
|
// if( hashValue == HASH_NOT_CALCULATED )
|
|
int32_t L_0 = __this->___hashValue_6;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-623218)))))
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
// hashValue = 17;
|
|
__this->___hashValue_6 = ((int32_t)17);
|
|
// hashValue = hashValue * 23 + ( logString == null ? 0 : logString.GetHashCode() );
|
|
int32_t L_1 = __this->___hashValue_6;
|
|
String_t* L_2 = __this->___logString_1;
|
|
G_B2_0 = ((int32_t)il2cpp_codegen_multiply(L_1, ((int32_t)23)));
|
|
G_B2_1 = __this;
|
|
if (!L_2)
|
|
{
|
|
G_B3_0 = ((int32_t)il2cpp_codegen_multiply(L_1, ((int32_t)23)));
|
|
G_B3_1 = __this;
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_3 = __this->___logString_1;
|
|
int32_t L_4;
|
|
L_4 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_3);
|
|
G_B4_0 = L_4;
|
|
G_B4_1 = G_B2_0;
|
|
G_B4_2 = G_B2_1;
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
G_B4_0 = 0;
|
|
G_B4_1 = G_B3_0;
|
|
G_B4_2 = G_B3_1;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
G_B4_2->___hashValue_6 = ((int32_t)il2cpp_codegen_add(G_B4_1, G_B4_0));
|
|
// hashValue = hashValue * 23 + ( stackTrace == null ? 0 : stackTrace.GetHashCode() );
|
|
int32_t L_5 = __this->___hashValue_6;
|
|
String_t* L_6 = __this->___stackTrace_2;
|
|
G_B5_0 = ((int32_t)il2cpp_codegen_multiply(L_5, ((int32_t)23)));
|
|
G_B5_1 = __this;
|
|
if (!L_6)
|
|
{
|
|
G_B6_0 = ((int32_t)il2cpp_codegen_multiply(L_5, ((int32_t)23)));
|
|
G_B6_1 = __this;
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_7 = __this->___stackTrace_2;
|
|
int32_t L_8;
|
|
L_8 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_7);
|
|
G_B7_0 = L_8;
|
|
G_B7_1 = G_B5_0;
|
|
G_B7_2 = G_B5_1;
|
|
goto IL_005b;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
G_B7_0 = 0;
|
|
G_B7_1 = G_B6_0;
|
|
G_B7_2 = G_B6_1;
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
G_B7_2->___hashValue_6 = ((int32_t)il2cpp_codegen_add(G_B7_1, G_B7_0));
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
// return hashValue;
|
|
int32_t L_9 = __this->___hashValue_6;
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogEntry::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogEntry__ctor_mBE7464DD3CDAACF0FD7B0C097A1CEBEB436B774B (DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* __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
|
|
// Conversion methods for marshalling of: IngameDebugConsole.QueuedDebugLogEntry
|
|
IL2CPP_EXTERN_C void QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C_marshal_pinvoke(const QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C& unmarshaled, QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___logString_0 = il2cpp_codegen_marshal_string(unmarshaled.___logString_0);
|
|
marshaled.___stackTrace_1 = il2cpp_codegen_marshal_string(unmarshaled.___stackTrace_1);
|
|
marshaled.___logType_2 = unmarshaled.___logType_2;
|
|
}
|
|
IL2CPP_EXTERN_C void QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C_marshal_pinvoke_back(const QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C_marshaled_pinvoke& marshaled, QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C& unmarshaled)
|
|
{
|
|
unmarshaled.___logString_0 = il2cpp_codegen_marshal_string_result(marshaled.___logString_0);
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___logString_0), (void*)il2cpp_codegen_marshal_string_result(marshaled.___logString_0));
|
|
unmarshaled.___stackTrace_1 = il2cpp_codegen_marshal_string_result(marshaled.___stackTrace_1);
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___stackTrace_1), (void*)il2cpp_codegen_marshal_string_result(marshaled.___stackTrace_1));
|
|
int32_t unmarshaledlogType_temp_2 = 0;
|
|
unmarshaledlogType_temp_2 = marshaled.___logType_2;
|
|
unmarshaled.___logType_2 = unmarshaledlogType_temp_2;
|
|
}
|
|
// Conversion method for clean up from marshalling of: IngameDebugConsole.QueuedDebugLogEntry
|
|
IL2CPP_EXTERN_C void QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C_marshal_pinvoke_cleanup(QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C_marshaled_pinvoke& marshaled)
|
|
{
|
|
il2cpp_codegen_marshal_free(marshaled.___logString_0);
|
|
marshaled.___logString_0 = NULL;
|
|
il2cpp_codegen_marshal_free(marshaled.___stackTrace_1);
|
|
marshaled.___stackTrace_1 = NULL;
|
|
}
|
|
// Conversion methods for marshalling of: IngameDebugConsole.QueuedDebugLogEntry
|
|
IL2CPP_EXTERN_C void QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C_marshal_com(const QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C& unmarshaled, QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___logString_0 = il2cpp_codegen_marshal_bstring(unmarshaled.___logString_0);
|
|
marshaled.___stackTrace_1 = il2cpp_codegen_marshal_bstring(unmarshaled.___stackTrace_1);
|
|
marshaled.___logType_2 = unmarshaled.___logType_2;
|
|
}
|
|
IL2CPP_EXTERN_C void QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C_marshal_com_back(const QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C_marshaled_com& marshaled, QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C& unmarshaled)
|
|
{
|
|
unmarshaled.___logString_0 = il2cpp_codegen_marshal_bstring_result(marshaled.___logString_0);
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___logString_0), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___logString_0));
|
|
unmarshaled.___stackTrace_1 = il2cpp_codegen_marshal_bstring_result(marshaled.___stackTrace_1);
|
|
Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___stackTrace_1), (void*)il2cpp_codegen_marshal_bstring_result(marshaled.___stackTrace_1));
|
|
int32_t unmarshaledlogType_temp_2 = 0;
|
|
unmarshaledlogType_temp_2 = marshaled.___logType_2;
|
|
unmarshaled.___logType_2 = unmarshaledlogType_temp_2;
|
|
}
|
|
// Conversion method for clean up from marshalling of: IngameDebugConsole.QueuedDebugLogEntry
|
|
IL2CPP_EXTERN_C void QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C_marshal_com_cleanup(QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C_marshaled_com& marshaled)
|
|
{
|
|
il2cpp_codegen_marshal_free_bstring(marshaled.___logString_0);
|
|
marshaled.___logString_0 = NULL;
|
|
il2cpp_codegen_marshal_free_bstring(marshaled.___stackTrace_1);
|
|
marshaled.___stackTrace_1 = NULL;
|
|
}
|
|
// System.Void IngameDebugConsole.QueuedDebugLogEntry::.ctor(System.String,System.String,UnityEngine.LogType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueuedDebugLogEntry__ctor_m4C3374C16FCD4D5BB8A4224E360B018ACBBA4ACE (QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C* __this, String_t* ___logString0, String_t* ___stackTrace1, int32_t ___logType2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// this.logString = logString;
|
|
String_t* L_0 = ___logString0;
|
|
__this->___logString_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___logString_0), (void*)L_0);
|
|
// this.stackTrace = stackTrace;
|
|
String_t* L_1 = ___stackTrace1;
|
|
__this->___stackTrace_1 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___stackTrace_1), (void*)L_1);
|
|
// this.logType = logType;
|
|
int32_t L_2 = ___logType2;
|
|
__this->___logType_2 = L_2;
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void QueuedDebugLogEntry__ctor_m4C3374C16FCD4D5BB8A4224E360B018ACBBA4ACE_AdjustorThunk (RuntimeObject* __this, String_t* ___logString0, String_t* ___stackTrace1, int32_t ___logType2, const RuntimeMethod* method)
|
|
{
|
|
QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C*>(__this + _offset);
|
|
QueuedDebugLogEntry__ctor_m4C3374C16FCD4D5BB8A4224E360B018ACBBA4ACE(_thisAdjusted, ___logString0, ___stackTrace1, ___logType2, method);
|
|
}
|
|
// System.Boolean IngameDebugConsole.QueuedDebugLogEntry::MatchesSearchTerm(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QueuedDebugLogEntry_MatchesSearchTerm_m4958263BE056CF58058C82981011F727EEDAE747 (QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C* __this, String_t* ___searchTerm0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// return ( logString != null && logString.IndexOf( searchTerm, System.StringComparison.OrdinalIgnoreCase ) >= 0 ) ||
|
|
// ( stackTrace != null && stackTrace.IndexOf( searchTerm, System.StringComparison.OrdinalIgnoreCase ) >= 0 );
|
|
String_t* L_0 = __this->___logString_0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = __this->___logString_0;
|
|
String_t* L_2 = ___searchTerm0;
|
|
int32_t L_3;
|
|
L_3 = String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55(L_1, L_2, 5, NULL);
|
|
if ((((int32_t)L_3) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
String_t* L_4 = __this->___stackTrace_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_5 = __this->___stackTrace_1;
|
|
String_t* L_6 = ___searchTerm0;
|
|
int32_t L_7;
|
|
L_7 = String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55(L_5, L_6, 5, NULL);
|
|
return (bool)((((int32_t)((((int32_t)L_7) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool QueuedDebugLogEntry_MatchesSearchTerm_m4958263BE056CF58058C82981011F727EEDAE747_AdjustorThunk (RuntimeObject* __this, String_t* ___searchTerm0, const RuntimeMethod* method)
|
|
{
|
|
QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = QueuedDebugLogEntry_MatchesSearchTerm_m4958263BE056CF58058C82981011F727EEDAE747(_thisAdjusted, ___searchTerm0, 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
|
|
// Conversion methods for marshalling of: IngameDebugConsole.DebugLogEntryTimestamp
|
|
IL2CPP_EXTERN_C void DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97_marshal_pinvoke(const DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97& unmarshaled, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___dateTime_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'dateTime' of type 'DebugLogEntryTimestamp'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___dateTime_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97_marshal_pinvoke_back(const DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97_marshaled_pinvoke& marshaled, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97& unmarshaled)
|
|
{
|
|
Exception_t* ___dateTime_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'dateTime' of type 'DebugLogEntryTimestamp'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___dateTime_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: IngameDebugConsole.DebugLogEntryTimestamp
|
|
IL2CPP_EXTERN_C void DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97_marshal_pinvoke_cleanup(DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: IngameDebugConsole.DebugLogEntryTimestamp
|
|
IL2CPP_EXTERN_C void DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97_marshal_com(const DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97& unmarshaled, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___dateTime_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'dateTime' of type 'DebugLogEntryTimestamp'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___dateTime_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97_marshal_com_back(const DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97_marshaled_com& marshaled, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97& unmarshaled)
|
|
{
|
|
Exception_t* ___dateTime_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'dateTime' of type 'DebugLogEntryTimestamp'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___dateTime_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: IngameDebugConsole.DebugLogEntryTimestamp
|
|
IL2CPP_EXTERN_C void DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97_marshal_com_cleanup(DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogEntryTimestamp::.ctor(System.TimeSpan)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogEntryTimestamp__ctor_m4078075799D0C3846D64F2E8800CB70B69ED53ED (DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___localTimeUtcOffset0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// dateTime = System.DateTime.UtcNow + localTimeUtcOffset;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0;
|
|
L_0 = DateTime_get_UtcNow_m06B6E9995FE16846A0F71EC9DB23E90BE2C5F9FA(NULL);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___localTimeUtcOffset0;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_2;
|
|
L_2 = DateTime_op_Addition_m652BE1306897DBE4CDF3ADA99FFFE2E70BFE3865(L_0, L_1, NULL);
|
|
__this->___dateTime_0 = L_2;
|
|
// elapsedSeconds = Time.realtimeSinceStartup;
|
|
float L_3;
|
|
L_3 = Time_get_realtimeSinceStartup_m73B3CB73175D79A44333D59BB70F9EDE55EC9510(NULL);
|
|
__this->___elapsedSeconds_1 = L_3;
|
|
// frameCount = Time.frameCount;
|
|
int32_t L_4;
|
|
L_4 = Time_get_frameCount_m4A42E558A71301A216BDC49EC402D62F19C79667(NULL);
|
|
__this->___frameCount_2 = L_4;
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DebugLogEntryTimestamp__ctor_m4078075799D0C3846D64F2E8800CB70B69ED53ED_AdjustorThunk (RuntimeObject* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___localTimeUtcOffset0, const RuntimeMethod* method)
|
|
{
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97*>(__this + _offset);
|
|
DebugLogEntryTimestamp__ctor_m4078075799D0C3846D64F2E8800CB70B69ED53ED(_thisAdjusted, ___localTimeUtcOffset0, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogEntryTimestamp::AppendTime(System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogEntryTimestamp_AppendTime_m1613293116BEC3BBEB7E957432B2FDF34B0E593C (DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
// sb.Append( "[" );
|
|
StringBuilder_t* L_0 = ___sb0;
|
|
StringBuilder_t* L_1;
|
|
L_1 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1, NULL);
|
|
// int hour = dateTime.Hour;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_2 = (&__this->___dateTime_0);
|
|
int32_t L_3;
|
|
L_3 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3(L_2, NULL);
|
|
V_0 = L_3;
|
|
// if( hour >= 10 )
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) < ((int32_t)((int32_t)10))))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
// sb.Append( hour );
|
|
StringBuilder_t* L_5 = ___sb0;
|
|
int32_t L_6 = V_0;
|
|
StringBuilder_t* L_7;
|
|
L_7 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_5, L_6, NULL);
|
|
goto IL_0039;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
// sb.Append( "0" ).Append( hour );
|
|
StringBuilder_t* L_8 = ___sb0;
|
|
StringBuilder_t* L_9;
|
|
L_9 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_8, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024, NULL);
|
|
int32_t L_10 = V_0;
|
|
StringBuilder_t* L_11;
|
|
L_11 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_9, L_10, NULL);
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
// sb.Append( ":" );
|
|
StringBuilder_t* L_12 = ___sb0;
|
|
StringBuilder_t* L_13;
|
|
L_13 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_12, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, NULL);
|
|
// int minute = dateTime.Minute;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_14 = (&__this->___dateTime_0);
|
|
int32_t L_15;
|
|
L_15 = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973(L_14, NULL);
|
|
V_1 = L_15;
|
|
// if( minute >= 10 )
|
|
int32_t L_16 = V_1;
|
|
if ((((int32_t)L_16) < ((int32_t)((int32_t)10))))
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
// sb.Append( minute );
|
|
StringBuilder_t* L_17 = ___sb0;
|
|
int32_t L_18 = V_1;
|
|
StringBuilder_t* L_19;
|
|
L_19 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_17, L_18, NULL);
|
|
goto IL_0072;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
// sb.Append( "0" ).Append( minute );
|
|
StringBuilder_t* L_20 = ___sb0;
|
|
StringBuilder_t* L_21;
|
|
L_21 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_20, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024, NULL);
|
|
int32_t L_22 = V_1;
|
|
StringBuilder_t* L_23;
|
|
L_23 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_21, L_22, NULL);
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
// sb.Append( ":" );
|
|
StringBuilder_t* L_24 = ___sb0;
|
|
StringBuilder_t* L_25;
|
|
L_25 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_24, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, NULL);
|
|
// int second = dateTime.Second;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_26 = (&__this->___dateTime_0);
|
|
int32_t L_27;
|
|
L_27 = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA(L_26, NULL);
|
|
V_2 = L_27;
|
|
// if( second >= 10 )
|
|
int32_t L_28 = V_2;
|
|
if ((((int32_t)L_28) < ((int32_t)((int32_t)10))))
|
|
{
|
|
goto IL_0099;
|
|
}
|
|
}
|
|
{
|
|
// sb.Append( second );
|
|
StringBuilder_t* L_29 = ___sb0;
|
|
int32_t L_30 = V_2;
|
|
StringBuilder_t* L_31;
|
|
L_31 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_29, L_30, NULL);
|
|
goto IL_00ab;
|
|
}
|
|
|
|
IL_0099:
|
|
{
|
|
// sb.Append( "0" ).Append( second );
|
|
StringBuilder_t* L_32 = ___sb0;
|
|
StringBuilder_t* L_33;
|
|
L_33 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_32, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024, NULL);
|
|
int32_t L_34 = V_2;
|
|
StringBuilder_t* L_35;
|
|
L_35 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_33, L_34, NULL);
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
// sb.Append( "]" );
|
|
StringBuilder_t* L_36 = ___sb0;
|
|
StringBuilder_t* L_37;
|
|
L_37 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_36, _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DebugLogEntryTimestamp_AppendTime_m1613293116BEC3BBEB7E957432B2FDF34B0E593C_AdjustorThunk (RuntimeObject* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
|
|
{
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97*>(__this + _offset);
|
|
DebugLogEntryTimestamp_AppendTime_m1613293116BEC3BBEB7E957432B2FDF34B0E593C(_thisAdjusted, ___sb0, method);
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogEntryTimestamp::AppendFullTimestamp(System.Text.StringBuilder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogEntryTimestamp_AppendFullTimestamp_m4C6F17EF93FD1009A0EF3263DCE82792F86403CB (DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6AE0AF42824DD8FA6E3D57D5E89CF59753268DBD);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC613D4D2FE3F5D74727D376F793286A2BCBB1391);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// AppendTime( sb );
|
|
StringBuilder_t* L_0 = ___sb0;
|
|
DebugLogEntryTimestamp_AppendTime_m1613293116BEC3BBEB7E957432B2FDF34B0E593C(__this, L_0, NULL);
|
|
// sb.Append( "[" ).Append( elapsedSeconds.ToString( "F1" ) ).Append( "s at " ).Append( "#" ).Append( frameCount ).Append( "]" );
|
|
StringBuilder_t* L_1 = ___sb0;
|
|
StringBuilder_t* L_2;
|
|
L_2 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_1, _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1, NULL);
|
|
float* L_3 = (&__this->___elapsedSeconds_1);
|
|
String_t* L_4;
|
|
L_4 = Single_ToString_m3F2C4433B6ADFA5ED8E3F14ED19CD23014E5179D(L_3, _stringLiteralC613D4D2FE3F5D74727D376F793286A2BCBB1391, NULL);
|
|
StringBuilder_t* L_5;
|
|
L_5 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_2, L_4, NULL);
|
|
StringBuilder_t* L_6;
|
|
L_6 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_5, _stringLiteral6AE0AF42824DD8FA6E3D57D5E89CF59753268DBD, NULL);
|
|
StringBuilder_t* L_7;
|
|
L_7 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_6, _stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3, NULL);
|
|
int32_t L_8 = __this->___frameCount_2;
|
|
StringBuilder_t* L_9;
|
|
L_9 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_7, L_8, NULL);
|
|
StringBuilder_t* L_10;
|
|
L_10 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_9, _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void DebugLogEntryTimestamp_AppendFullTimestamp_m4C6F17EF93FD1009A0EF3263DCE82792F86403CB_AdjustorThunk (RuntimeObject* __this, StringBuilder_t* ___sb0, const RuntimeMethod* method)
|
|
{
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97*>(__this + _offset);
|
|
DebugLogEntryTimestamp_AppendFullTimestamp_m4C6F17EF93FD1009A0EF3263DCE82792F86403CB(_thisAdjusted, ___sb0, 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
|
|
// UnityEngine.RectTransform IngameDebugConsole.DebugLogItem::get_Transform()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* DebugLogItem_get_Transform_mBAA5D6E01F83683FF29CE440C3D2F4D5616E6466 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public RectTransform Transform { get { return transformComponent; } }
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_0 = __this->___transformComponent_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
// UnityEngine.UI.Image IngameDebugConsole.DebugLogItem::get_Image()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* DebugLogItem_get_Image_m19E45CDC961A393E891617E0AE8196EEC60827E2 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public Image Image { get { return imageComponent; } }
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_0 = __this->___imageComponent_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
// UnityEngine.CanvasGroup IngameDebugConsole.DebugLogItem::get_CanvasGroup()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* DebugLogItem_get_CanvasGroup_m54F87E5DE59659B77527BE8B0163A02963A1C0DB (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public CanvasGroup CanvasGroup { get { return canvasGroupComponent; } }
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_0 = __this->___canvasGroupComponent_6;
|
|
return L_0;
|
|
}
|
|
}
|
|
// IngameDebugConsole.DebugLogEntry IngameDebugConsole.DebugLogItem::get_Entry()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* DebugLogItem_get_Entry_mA632E3B925BF0ED661A1FC9BE52E87AE1ADC30D1 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public DebugLogEntry Entry { get { return logEntry; } }
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_0 = __this->___logEntry_12;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Nullable`1<IngameDebugConsole.DebugLogEntryTimestamp> IngameDebugConsole.DebugLogItem::get_Timestamp()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 DebugLogItem_get_Timestamp_m61F5317F300884C00C9DF7292825AABC36770EAF (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public DebugLogEntryTimestamp? Timestamp { get { return logEntryTimestamp; } }
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 L_0 = __this->___logEntryTimestamp_13;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Int32 IngameDebugConsole.DebugLogItem::get_Index()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DebugLogItem_get_Index_mAE7C163DD212089A2276418AC74D1F118C4AE0E1 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public int Index { get { return entryIndex; } }
|
|
int32_t L_0 = __this->___entryIndex_14;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogItem::get_Expanded()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogItem_get_Expanded_mEBEC5F0C2D9702532EE062F84140FAFC6B28131A (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public bool Expanded { get { return isExpanded; } }
|
|
bool L_0 = __this->___isExpanded_15;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItem::Initialize(IngameDebugConsole.DebugLogRecycledListView)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItem_Initialize_m97E3F360DFD58E5E911D99472A70BB4DE3B00B64 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* ___listView0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_AddComponent_TisDebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3_m299610713BC44A89D57A385F30CFC991B7E884BE_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// this.listView = listView;
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_0 = ___listView0;
|
|
__this->___listView_19 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___listView_19), (void*)L_0);
|
|
// logTextOriginalPosition = logText.rectTransform.anchoredPosition;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_1 = __this->___logText_7;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_2;
|
|
L_2 = Graphic_get_rectTransform_mF4752E8934267D630810E84CE02CDFB81EB1FD6D(L_1, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
|
|
L_3 = RectTransform_get_anchoredPosition_m38F25A4253B0905BB058BE73DBF43C7172CE0680(L_2, NULL);
|
|
__this->___logTextOriginalPosition_16 = L_3;
|
|
// logTextOriginalSize = logText.rectTransform.sizeDelta;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_4 = __this->___logText_7;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_5;
|
|
L_5 = Graphic_get_rectTransform_mF4752E8934267D630810E84CE02CDFB81EB1FD6D(L_4, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB(L_5, NULL);
|
|
__this->___logTextOriginalSize_17 = L_6;
|
|
// copyLogButtonHeight = copyLogButton.anchoredPosition.y + copyLogButton.sizeDelta.y + 2f; // 2f: space between text and button
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_7 = __this->___copyLogButton_11;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
|
|
L_8 = RectTransform_get_anchoredPosition_m38F25A4253B0905BB058BE73DBF43C7172CE0680(L_7, NULL);
|
|
float L_9 = L_8.___y_1;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_10 = __this->___copyLogButton_11;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
|
|
L_11 = RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB(L_10, NULL);
|
|
float L_12 = L_11.___y_1;
|
|
__this->___copyLogButtonHeight_18 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(L_9, L_12)), (2.0f)));
|
|
// copyLogButton.gameObject.AddComponent<DebugLogItemCopyWebGL>().Initialize( this );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_13 = __this->___copyLogButton_11;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14;
|
|
L_14 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_13, NULL);
|
|
DebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3* L_15;
|
|
L_15 = GameObject_AddComponent_TisDebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3_m299610713BC44A89D57A385F30CFC991B7E884BE(L_14, GameObject_AddComponent_TisDebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3_m299610713BC44A89D57A385F30CFC991B7E884BE_RuntimeMethod_var);
|
|
DebugLogItemCopyWebGL_Initialize_m669E97D390AA126308D66275688AACC868D3168F_inline(L_15, __this, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItem::SetContent(IngameDebugConsole.DebugLogEntry,System.Nullable`1<IngameDebugConsole.DebugLogEntryTimestamp>,System.Int32,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItem_SetContent_mAA060346F58906FAA676D025BF7B440DEBA1C7E3 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* ___logEntry0, Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 ___logEntryTimestamp1, int32_t ___entryIndex2, bool ___isExpanded3, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
// this.logEntry = logEntry;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_0 = ___logEntry0;
|
|
__this->___logEntry_12 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___logEntry_12), (void*)L_0);
|
|
// this.logEntryTimestamp = logEntryTimestamp;
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 L_1 = ___logEntryTimestamp1;
|
|
__this->___logEntryTimestamp_13 = L_1;
|
|
// this.entryIndex = entryIndex;
|
|
int32_t L_2 = ___entryIndex2;
|
|
__this->___entryIndex_14 = L_2;
|
|
// this.isExpanded = isExpanded;
|
|
bool L_3 = ___isExpanded3;
|
|
__this->___isExpanded_15 = L_3;
|
|
// Vector2 size = transformComponent.sizeDelta;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_4 = __this->___transformComponent_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB(L_4, NULL);
|
|
V_0 = L_5;
|
|
// if( isExpanded )
|
|
bool L_6 = ___isExpanded3;
|
|
if (!L_6)
|
|
{
|
|
goto IL_00d9;
|
|
}
|
|
}
|
|
{
|
|
// logText.horizontalOverflow = HorizontalWrapMode.Wrap;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_7 = __this->___logText_7;
|
|
Text_set_horizontalOverflow_m10AAFBA65FD7F4B1934B5D628B3E70D75D02FFD6(L_7, 0, NULL);
|
|
// size.y = listView.SelectedItemHeight;
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_8 = __this->___listView_19;
|
|
float L_9;
|
|
L_9 = DebugLogRecycledListView_get_SelectedItemHeight_m55C399776D3C681426A1E7BB96D17799AAF17358_inline(L_8, NULL);
|
|
(&V_0)->___y_1 = L_9;
|
|
// if( !copyLogButton.gameObject.activeSelf )
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_10 = __this->___copyLogButton_11;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_11;
|
|
L_11 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_10, NULL);
|
|
bool L_12;
|
|
L_12 = GameObject_get_activeSelf_m4F3E5240E138B66AAA080EA30759A3D0517DA368(L_11, NULL);
|
|
if (L_12)
|
|
{
|
|
goto IL_0146;
|
|
}
|
|
}
|
|
{
|
|
// copyLogButton.gameObject.SetActive( true );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_13 = __this->___copyLogButton_11;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14;
|
|
L_14 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_13, NULL);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_14, (bool)1, NULL);
|
|
// logText.rectTransform.anchoredPosition = new Vector2( logTextOriginalPosition.x, logTextOriginalPosition.y + copyLogButtonHeight * 0.5f );
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_15 = __this->___logText_7;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_16;
|
|
L_16 = Graphic_get_rectTransform_mF4752E8934267D630810E84CE02CDFB81EB1FD6D(L_15, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_17 = (&__this->___logTextOriginalPosition_16);
|
|
float L_18 = L_17->___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_19 = (&__this->___logTextOriginalPosition_16);
|
|
float L_20 = L_19->___y_1;
|
|
float L_21 = __this->___copyLogButtonHeight_18;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22;
|
|
memset((&L_22), 0, sizeof(L_22));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_22), L_18, ((float)il2cpp_codegen_add(L_20, ((float)il2cpp_codegen_multiply(L_21, (0.5f))))), /*hidden argument*/NULL);
|
|
RectTransform_set_anchoredPosition_mF903ACE04F6959B1CD67E2B94FABC0263068F965(L_16, L_22, NULL);
|
|
// logText.rectTransform.sizeDelta = logTextOriginalSize - new Vector2( 0f, copyLogButtonHeight );
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_23 = __this->___logText_7;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_24;
|
|
L_24 = Graphic_get_rectTransform_mF4752E8934267D630810E84CE02CDFB81EB1FD6D(L_23, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_25 = __this->___logTextOriginalSize_17;
|
|
float L_26 = __this->___copyLogButtonHeight_18;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_27;
|
|
memset((&L_27), 0, sizeof(L_27));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_27), (0.0f), L_26, /*hidden argument*/NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_28;
|
|
L_28 = Vector2_op_Subtraction_m44475FCDAD2DA2F98D78A6625EC2DCDFE8803837_inline(L_25, L_27, NULL);
|
|
RectTransform_set_sizeDelta_mC9A980EA6036E6725EF24CEDF3EE80A9B2B50EE5(L_24, L_28, NULL);
|
|
goto IL_0146;
|
|
}
|
|
|
|
IL_00d9:
|
|
{
|
|
// logText.horizontalOverflow = HorizontalWrapMode.Overflow;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_29 = __this->___logText_7;
|
|
Text_set_horizontalOverflow_m10AAFBA65FD7F4B1934B5D628B3E70D75D02FFD6(L_29, 1, NULL);
|
|
// size.y = listView.ItemHeight;
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_30 = __this->___listView_19;
|
|
float L_31;
|
|
L_31 = DebugLogRecycledListView_get_ItemHeight_m4FBFACEF0C31D99C4745209391D410234EAE6A80_inline(L_30, NULL);
|
|
(&V_0)->___y_1 = L_31;
|
|
// if( copyLogButton.gameObject.activeSelf )
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_32 = __this->___copyLogButton_11;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_33;
|
|
L_33 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_32, NULL);
|
|
bool L_34;
|
|
L_34 = GameObject_get_activeSelf_m4F3E5240E138B66AAA080EA30759A3D0517DA368(L_33, NULL);
|
|
if (!L_34)
|
|
{
|
|
goto IL_0146;
|
|
}
|
|
}
|
|
{
|
|
// copyLogButton.gameObject.SetActive( false );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_35 = __this->___copyLogButton_11;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_36;
|
|
L_36 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_35, NULL);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_36, (bool)0, NULL);
|
|
// logText.rectTransform.anchoredPosition = logTextOriginalPosition;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_37 = __this->___logText_7;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_38;
|
|
L_38 = Graphic_get_rectTransform_mF4752E8934267D630810E84CE02CDFB81EB1FD6D(L_37, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_39 = __this->___logTextOriginalPosition_16;
|
|
RectTransform_set_anchoredPosition_mF903ACE04F6959B1CD67E2B94FABC0263068F965(L_38, L_39, NULL);
|
|
// logText.rectTransform.sizeDelta = logTextOriginalSize;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_40 = __this->___logText_7;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_41;
|
|
L_41 = Graphic_get_rectTransform_mF4752E8934267D630810E84CE02CDFB81EB1FD6D(L_40, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_42 = __this->___logTextOriginalSize_17;
|
|
RectTransform_set_sizeDelta_mC9A980EA6036E6725EF24CEDF3EE80A9B2B50EE5(L_41, L_42, NULL);
|
|
}
|
|
|
|
IL_0146:
|
|
{
|
|
// transformComponent.sizeDelta = size;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_43 = __this->___transformComponent_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_44 = V_0;
|
|
RectTransform_set_sizeDelta_mC9A980EA6036E6725EF24CEDF3EE80A9B2B50EE5(L_43, L_44, NULL);
|
|
// SetText( logEntry, logEntryTimestamp, isExpanded );
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_45 = ___logEntry0;
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 L_46 = ___logEntryTimestamp1;
|
|
bool L_47 = ___isExpanded3;
|
|
DebugLogItem_SetText_mAE64E89F6945A0D9535258E12B75C7AE340F009D(__this, L_45, L_46, L_47, NULL);
|
|
// logTypeImage.sprite = logEntry.logTypeSpriteRepresentation;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_48 = __this->___logTypeImage_8;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_49 = ___logEntry0;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_50 = L_49->___logTypeSpriteRepresentation_4;
|
|
Image_set_sprite_mC0C248340BA27AAEE56855A3FAFA0D8CA12956DE(L_48, L_50, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItem::ShowCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItem_ShowCount_m370DD836F4F51DE3090FBA4E46F0D5DAE4F6E7A4 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// logCountText.text = logEntry.count.ToString();
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_0 = __this->___logCountText_10;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_1 = __this->___logEntry_12;
|
|
int32_t* L_2 = (&L_1->___count_5);
|
|
String_t* L_3;
|
|
L_3 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5(L_2, NULL);
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_0, L_3);
|
|
// if( !logCountParent.activeSelf )
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4 = __this->___logCountParent_9;
|
|
bool L_5;
|
|
L_5 = GameObject_get_activeSelf_m4F3E5240E138B66AAA080EA30759A3D0517DA368(L_4, NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
// logCountParent.SetActive( true );
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_6 = __this->___logCountParent_9;
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_6, (bool)1, NULL);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItem::HideCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItem_HideCount_m74445C719C5941D4DD597C50988526E5FAF7DBD2 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// if( logCountParent.activeSelf )
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_0 = __this->___logCountParent_9;
|
|
bool L_1;
|
|
L_1 = GameObject_get_activeSelf_m4F3E5240E138B66AAA080EA30759A3D0517DA368(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
// logCountParent.SetActive( false );
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_2 = __this->___logCountParent_9;
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_2, (bool)0, NULL);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItem::UpdateTimestamp(IngameDebugConsole.DebugLogEntryTimestamp)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItem_UpdateTimestamp_m727217AF90E45BF3F269237C89C9477D0EC3CEB0 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 ___timestamp0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// logEntryTimestamp = timestamp;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_0 = ___timestamp0;
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685((&L_1), L_0, /*hidden argument*/Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685_RuntimeMethod_var);
|
|
__this->___logEntryTimestamp_13 = L_1;
|
|
// if( isExpanded || listView.manager.alwaysDisplayTimestamps )
|
|
bool L_2 = __this->___isExpanded_15;
|
|
if (L_2)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_3 = __this->___listView_19;
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_4 = L_3->___manager_9;
|
|
bool L_5 = L_4->___alwaysDisplayTimestamps_18;
|
|
if (!L_5)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
// SetText( logEntry, timestamp, isExpanded );
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_6 = __this->___logEntry_12;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_7 = ___timestamp0;
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685((&L_8), L_7, /*hidden argument*/Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685_RuntimeMethod_var);
|
|
bool L_9 = __this->___isExpanded_15;
|
|
DebugLogItem_SetText_mAE64E89F6945A0D9535258E12B75C7AE340F009D(__this, L_6, L_8, L_9, NULL);
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItem::SetText(IngameDebugConsole.DebugLogEntry,System.Nullable`1<IngameDebugConsole.DebugLogEntryTimestamp>,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItem_SetText_mAE64E89F6945A0D9535258E12B75C7AE340F009D (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* ___logEntry0, Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 ___logEntryTimestamp1, bool ___isExpanded2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m72F8CCD2B9960B32D61CFA8DDFB3A8B66E75E78D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m2CE3C311F530B9D4B476C8B128164C51D5692CBF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1168E92C164109D6220480DEDA987085B2A21155);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringBuilder_t* V_0 = NULL;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* G_B5_0 = NULL;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* G_B4_0 = NULL;
|
|
String_t* G_B6_0 = NULL;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* G_B6_1 = NULL;
|
|
{
|
|
// if( !logEntryTimestamp.HasValue || ( !isExpanded && !listView.manager.alwaysDisplayTimestamps ) )
|
|
bool L_0;
|
|
L_0 = Nullable_1_get_HasValue_m72F8CCD2B9960B32D61CFA8DDFB3A8B66E75E78D_inline((&___logEntryTimestamp1), Nullable_1_get_HasValue_m72F8CCD2B9960B32D61CFA8DDFB3A8B66E75E78D_RuntimeMethod_var);
|
|
if (!L_0)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
bool L_1 = ___isExpanded2;
|
|
if (L_1)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_2 = __this->___listView_19;
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_3 = L_2->___manager_9;
|
|
bool L_4 = L_3->___alwaysDisplayTimestamps_18;
|
|
if (L_4)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
// logText.text = isExpanded ? logEntry.ToString() : logEntry.logString;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_5 = __this->___logText_7;
|
|
bool L_6 = ___isExpanded2;
|
|
G_B4_0 = L_5;
|
|
if (L_6)
|
|
{
|
|
G_B5_0 = L_5;
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_7 = ___logEntry0;
|
|
String_t* L_8 = L_7->___logString_1;
|
|
G_B6_0 = L_8;
|
|
G_B6_1 = G_B4_0;
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_9 = ___logEntry0;
|
|
String_t* L_10;
|
|
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_9);
|
|
G_B6_0 = L_10;
|
|
G_B6_1 = G_B5_0;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, G_B6_1, G_B6_0);
|
|
return;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
// StringBuilder sb = listView.manager.sharedStringBuilder;
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_11 = __this->___listView_19;
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_12 = L_11->___manager_9;
|
|
StringBuilder_t* L_13 = L_12->___sharedStringBuilder_105;
|
|
V_0 = L_13;
|
|
// sb.Length = 0;
|
|
StringBuilder_t* L_14 = V_0;
|
|
StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_14, 0, NULL);
|
|
// if( isExpanded )
|
|
bool L_15 = ___isExpanded2;
|
|
if (!L_15)
|
|
{
|
|
goto IL_007f;
|
|
}
|
|
}
|
|
{
|
|
// logEntryTimestamp.Value.AppendFullTimestamp( sb );
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_16;
|
|
L_16 = Nullable_1_get_Value_m2CE3C311F530B9D4B476C8B128164C51D5692CBF((&___logEntryTimestamp1), Nullable_1_get_Value_m2CE3C311F530B9D4B476C8B128164C51D5692CBF_RuntimeMethod_var);
|
|
V_1 = L_16;
|
|
StringBuilder_t* L_17 = V_0;
|
|
DebugLogEntryTimestamp_AppendFullTimestamp_m4C6F17EF93FD1009A0EF3263DCE82792F86403CB((&V_1), L_17, NULL);
|
|
// sb.Append( ": " ).Append( logEntry.ToString() );
|
|
StringBuilder_t* L_18 = V_0;
|
|
StringBuilder_t* L_19;
|
|
L_19 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_18, _stringLiteral1168E92C164109D6220480DEDA987085B2A21155, NULL);
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_20 = ___logEntry0;
|
|
String_t* L_21;
|
|
L_21 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_20);
|
|
StringBuilder_t* L_22;
|
|
L_22 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_19, L_21, NULL);
|
|
goto IL_00a6;
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
// logEntryTimestamp.Value.AppendTime( sb );
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_23;
|
|
L_23 = Nullable_1_get_Value_m2CE3C311F530B9D4B476C8B128164C51D5692CBF((&___logEntryTimestamp1), Nullable_1_get_Value_m2CE3C311F530B9D4B476C8B128164C51D5692CBF_RuntimeMethod_var);
|
|
V_1 = L_23;
|
|
StringBuilder_t* L_24 = V_0;
|
|
DebugLogEntryTimestamp_AppendTime_m1613293116BEC3BBEB7E957432B2FDF34B0E593C((&V_1), L_24, NULL);
|
|
// sb.Append( " " ).Append( logEntry.logString );
|
|
StringBuilder_t* L_25 = V_0;
|
|
StringBuilder_t* L_26;
|
|
L_26 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_25, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, NULL);
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_27 = ___logEntry0;
|
|
String_t* L_28 = L_27->___logString_1;
|
|
StringBuilder_t* L_29;
|
|
L_29 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_26, L_28, NULL);
|
|
}
|
|
|
|
IL_00a6:
|
|
{
|
|
// logText.text = sb.ToString();
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_30 = __this->___logText_7;
|
|
StringBuilder_t* L_31 = V_0;
|
|
String_t* L_32;
|
|
L_32 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_31);
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_30, L_32);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItem::OnPointerClick(UnityEngine.EventSystems.PointerEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItem_OnPointerClick_m3CD05636F174E641B64612CBBF03E9D37098FAE9 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// listView.OnLogItemClicked( this );
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_0 = __this->___listView_19;
|
|
DebugLogRecycledListView_OnLogItemClicked_m884D345CF8F6ACB003D53075D9A8B6F8B4BB19B2(L_0, __this, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItem::CopyLog()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItem_CopyLog_m0FDEE1A57EAEBA556F50B7BD154211490B8D319B (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.String IngameDebugConsole.DebugLogItem::GetCopyContent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DebugLogItem_GetCopyContent_m5FE53FDB96ECAD424FC870B38C3421F1E9596ED9 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m72F8CCD2B9960B32D61CFA8DDFB3A8B66E75E78D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m2CE3C311F530B9D4B476C8B128164C51D5692CBF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1168E92C164109D6220480DEDA987085B2A21155);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
StringBuilder_t* V_0 = NULL;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
// if( !logEntryTimestamp.HasValue )
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41* L_0 = (&__this->___logEntryTimestamp_13);
|
|
bool L_1;
|
|
L_1 = Nullable_1_get_HasValue_m72F8CCD2B9960B32D61CFA8DDFB3A8B66E75E78D_inline(L_0, Nullable_1_get_HasValue_m72F8CCD2B9960B32D61CFA8DDFB3A8B66E75E78D_RuntimeMethod_var);
|
|
if (L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
// return logEntry.ToString();
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_2 = __this->___logEntry_12;
|
|
String_t* L_3;
|
|
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_2);
|
|
return L_3;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
// StringBuilder sb = listView.manager.sharedStringBuilder;
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_4 = __this->___listView_19;
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_5 = L_4->___manager_9;
|
|
StringBuilder_t* L_6 = L_5->___sharedStringBuilder_105;
|
|
V_0 = L_6;
|
|
// sb.Length = 0;
|
|
StringBuilder_t* L_7 = V_0;
|
|
StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_7, 0, NULL);
|
|
// logEntryTimestamp.Value.AppendFullTimestamp( sb );
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41* L_8 = (&__this->___logEntryTimestamp_13);
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_9;
|
|
L_9 = Nullable_1_get_Value_m2CE3C311F530B9D4B476C8B128164C51D5692CBF(L_8, Nullable_1_get_Value_m2CE3C311F530B9D4B476C8B128164C51D5692CBF_RuntimeMethod_var);
|
|
V_1 = L_9;
|
|
StringBuilder_t* L_10 = V_0;
|
|
DebugLogEntryTimestamp_AppendFullTimestamp_m4C6F17EF93FD1009A0EF3263DCE82792F86403CB((&V_1), L_10, NULL);
|
|
// sb.Append( ": " ).Append( logEntry.ToString() );
|
|
StringBuilder_t* L_11 = V_0;
|
|
StringBuilder_t* L_12;
|
|
L_12 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_11, _stringLiteral1168E92C164109D6220480DEDA987085B2A21155, NULL);
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_13 = __this->___logEntry_12;
|
|
String_t* L_14;
|
|
L_14 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_13);
|
|
StringBuilder_t* L_15;
|
|
L_15 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_12, L_14, NULL);
|
|
// return sb.ToString();
|
|
StringBuilder_t* L_16 = V_0;
|
|
String_t* L_17;
|
|
L_17 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_16);
|
|
return L_17;
|
|
}
|
|
}
|
|
// System.Single IngameDebugConsole.DebugLogItem::CalculateExpandedHeight(IngameDebugConsole.DebugLogEntry,System.Nullable`1<IngameDebugConsole.DebugLogEntryTimestamp>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DebugLogItem_CalculateExpandedHeight_m55309AF097A86F270D520E266A7C3ACA00BA0EFC (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* ___logEntry0, Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 ___logEntryTimestamp1, const RuntimeMethod* method)
|
|
{
|
|
String_t* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
float V_2 = 0.0f;
|
|
{
|
|
// string text = logText.text;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_0 = __this->___logText_7;
|
|
String_t* L_1;
|
|
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(74 /* System.String UnityEngine.UI.Text::get_text() */, L_0);
|
|
V_0 = L_1;
|
|
// HorizontalWrapMode wrapMode = logText.horizontalOverflow;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_2 = __this->___logText_7;
|
|
int32_t L_3;
|
|
L_3 = Text_get_horizontalOverflow_mC909085F76EF49D62A70A8E503C5BC14C30176F1(L_2, NULL);
|
|
V_1 = L_3;
|
|
// SetText( logEntry, logEntryTimestamp, true );
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_4 = ___logEntry0;
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 L_5 = ___logEntryTimestamp1;
|
|
DebugLogItem_SetText_mAE64E89F6945A0D9535258E12B75C7AE340F009D(__this, L_4, L_5, (bool)1, NULL);
|
|
// logText.horizontalOverflow = HorizontalWrapMode.Wrap;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_6 = __this->___logText_7;
|
|
Text_set_horizontalOverflow_m10AAFBA65FD7F4B1934B5D628B3E70D75D02FFD6(L_6, 0, NULL);
|
|
// float result = logText.preferredHeight + copyLogButtonHeight;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_7 = __this->___logText_7;
|
|
float L_8;
|
|
L_8 = VirtualFuncInvoker0< float >::Invoke(82 /* System.Single UnityEngine.UI.Text::get_preferredHeight() */, L_7);
|
|
float L_9 = __this->___copyLogButtonHeight_18;
|
|
V_2 = ((float)il2cpp_codegen_add(L_8, L_9));
|
|
// logText.text = text;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_10 = __this->___logText_7;
|
|
String_t* L_11 = V_0;
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_10, L_11);
|
|
// logText.horizontalOverflow = wrapMode;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_12 = __this->___logText_7;
|
|
int32_t L_13 = V_1;
|
|
Text_set_horizontalOverflow_m10AAFBA65FD7F4B1934B5D628B3E70D75D02FFD6(L_12, L_13, NULL);
|
|
// return Mathf.Max( listView.ItemHeight, result );
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_14 = __this->___listView_19;
|
|
float L_15;
|
|
L_15 = DebugLogRecycledListView_get_ItemHeight_m4FBFACEF0C31D99C4745209391D410234EAE6A80_inline(L_14, NULL);
|
|
float L_16 = V_2;
|
|
float L_17;
|
|
L_17 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(L_15, L_16, NULL);
|
|
return L_17;
|
|
}
|
|
}
|
|
// System.String IngameDebugConsole.DebugLogItem::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DebugLogItem_ToString_m773631174F5017BF85AC22D6D85EFDA31A222377 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// return logEntry.ToString();
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_0 = __this->___logEntry_12;
|
|
String_t* L_1;
|
|
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItem::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItem__ctor_mAAB23E6C7401E8A16E9CC7AA12589B8106CD5F34 (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __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
|
|
// System.Void IngameDebugConsole.DebugLogItemCopyWebGL::IngameDebugConsoleStartCopy(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItemCopyWebGL_IngameDebugConsoleStartCopy_mCB7B966C5FBFCAFADF25744A4651C4DE213F3F83 (String_t* ___textToCopy0, const RuntimeMethod* method)
|
|
{
|
|
typedef void (DEFAULT_CALL *PInvokeFunc) (char*);
|
|
|
|
// Marshaling of parameter '___textToCopy0' to native representation
|
|
char* ____textToCopy0_marshaled = NULL;
|
|
____textToCopy0_marshaled = il2cpp_codegen_marshal_string(___textToCopy0);
|
|
|
|
// Native function invocation
|
|
reinterpret_cast<PInvokeFunc>(IngameDebugConsoleStartCopy)(____textToCopy0_marshaled);
|
|
|
|
// Marshaling cleanup of parameter '___textToCopy0' native representation
|
|
il2cpp_codegen_marshal_free(____textToCopy0_marshaled);
|
|
____textToCopy0_marshaled = NULL;
|
|
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItemCopyWebGL::IngameDebugConsoleCancelCopy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItemCopyWebGL_IngameDebugConsoleCancelCopy_m063C59C6EB51F1EEEED03EC1BCE14BE81BF78AC5 (const RuntimeMethod* method)
|
|
{
|
|
typedef void (DEFAULT_CALL *PInvokeFunc) ();
|
|
|
|
// Native function invocation
|
|
reinterpret_cast<PInvokeFunc>(IngameDebugConsoleCancelCopy)();
|
|
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItemCopyWebGL::Initialize(IngameDebugConsole.DebugLogItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItemCopyWebGL_Initialize_m669E97D390AA126308D66275688AACC868D3168F (DebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3* __this, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___logItem0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// this.logItem = logItem;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_0 = ___logItem0;
|
|
__this->___logItem_4 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___logItem_4), (void*)L_0);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItemCopyWebGL::OnPointerDown(UnityEngine.EventSystems.PointerEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItemCopyWebGL_OnPointerDown_mCEA90453A67A8D0CAE019203D6780A9B50E7FEFC (DebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
|
|
{
|
|
String_t* V_0 = NULL;
|
|
{
|
|
// string log = logItem.GetCopyContent();
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_0 = __this->___logItem_4;
|
|
String_t* L_1;
|
|
L_1 = DebugLogItem_GetCopyContent_m5FE53FDB96ECAD424FC870B38C3421F1E9596ED9(L_0, NULL);
|
|
V_0 = L_1;
|
|
// if( !string.IsNullOrEmpty( log ) )
|
|
String_t* L_2 = V_0;
|
|
bool L_3;
|
|
L_3 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
// IngameDebugConsoleStartCopy( log );
|
|
String_t* L_4 = V_0;
|
|
DebugLogItemCopyWebGL_IngameDebugConsoleStartCopy_mCB7B966C5FBFCAFADF25744A4651C4DE213F3F83(L_4, NULL);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItemCopyWebGL::OnPointerUp(UnityEngine.EventSystems.PointerEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItemCopyWebGL_OnPointerUp_m7C3AB96638B06DCDAE15FBC6465EC64D37C118EB (DebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// if( eventData.dragging )
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_0 = ___eventData0;
|
|
bool L_1;
|
|
L_1 = PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline(L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
// IngameDebugConsoleCancelCopy();
|
|
DebugLogItemCopyWebGL_IngameDebugConsoleCancelCopy_m063C59C6EB51F1EEEED03EC1BCE14BE81BF78AC5(NULL);
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogItemCopyWebGL::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogItemCopyWebGL__ctor_mA63D35DCCDAB325B3A043D8B5CFC7FD797F22684 (DebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3* __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
|
|
// IngameDebugConsole.DebugLogManager IngameDebugConsole.DebugLogManager::get_Instance()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// public static DebugLogManager Instance { get; private set; }
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_0 = ((DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_il2cpp_TypeInfo_var))->___U3CInstanceU3Ek__BackingField_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::set_Instance(IngameDebugConsole.DebugLogManager)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_set_Instance_m8AAA1D33AF4369E3F6479AF6B0B6DF97015AE73A (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// public static DebugLogManager Instance { get; private set; }
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_0 = ___value0;
|
|
((DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_il2cpp_TypeInfo_var))->___U3CInstanceU3Ek__BackingField_4 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_il2cpp_TypeInfo_var))->___U3CInstanceU3Ek__BackingField_4), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::get_IsLogWindowVisible()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogManager_get_IsLogWindowVisible_mA4654B1326D4234C4754F811A845C9C57E7F8F54 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public bool IsLogWindowVisible { get { return isLogWindowVisible; } }
|
|
bool L_0 = __this->___isLogWindowVisible_65;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogManager::get_PopupEnabled()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugLogManager_get_PopupEnabled_m69350E4F2AC441FA05665C843745388941CE82A0 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// get { return popupManager.gameObject.activeSelf; }
|
|
DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* L_0 = __this->___popupManager_60;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1;
|
|
L_1 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_0, NULL);
|
|
bool L_2;
|
|
L_2 = GameObject_get_activeSelf_m4F3E5240E138B66AAA080EA30759A3D0517DA368(L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::set_PopupEnabled(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_set_PopupEnabled_m73DC638F652F0B01DA24D13D4FA9470A3B2C3B49 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, bool ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// set { popupManager.gameObject.SetActive( value ); }
|
|
DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* L_0 = __this->___popupManager_60;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1;
|
|
L_1 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_0, NULL);
|
|
bool L_2 = ___value0;
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_1, L_2, NULL);
|
|
// set { popupManager.gameObject.SetActive( value ); }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::Awake()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_Awake_mE7759B77DEEDCFA97AA15F2A4AD4B4902FBFFBC4 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CircularBuffer_1__ctor_m5ABA82D2EC7ECE4256398E62D68629E6B59BE9C9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponentInParent_TisDebugLogResizeListener_tAEB6FDAE1D37AD856CBD82204674E6AC4C1764B5_mF02A4B666F5DCABE759B5071135F7F6B1ACE8536_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mFF8BA4CA5D7158D1D6249559A3289E7A6DF0A2BB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisInputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140_m08978F3683B8CCF83910BA8BB0A4F786A6361896_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1__ctor_mA89F322ECBB6B3A499BFE45D2D21FE45F550DA79_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1__ctor_mFDB99EECA2932B97D971CD576697FA8F3877ABCD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_ClearLogs_m1CDDE08626E2804E6E16556212E2990FFE0FFD09_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_CollapseButtonPressed_m1A9E0352DBC00AD07E4AE7DC1C64BD91A9F56011_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_FilterErrorButtonPressed_mF7B8232DE7C74CFB674C4D50DA07417F690D05C5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_FilterLogButtonPressed_m63FFD1470E923DC8ECA3969A1EE8B71176A249BC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_FilterWarningButtonPressed_mE585A7869AADA4969E16AC2BBB9C959FD1D43B64_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_HideLogWindow_mDA216839443A72537E963035E9DEC6188631E3D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_OnEndEditCommand_m6A00CF0CD88DE7DDD5E68262AE2CE34DBF3C2307_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_OnValidateCommand_m47B17FC3C7B2322739D37ED0B74DD3866EAC892B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_RefreshCommandSuggestions_mFCF8CC3D6641DA413AB30A52D25C37FDFC9A9383_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_SearchTermChanged_m6498FD8BDE5D56742AC5EA2EF769FCB1028DDF03_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_U3CAwakeU3Eb__114_0_m8AF192569CFE92C9E05202A07FA156FF8299C909_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m2620E8DF00B206AC5E4A4106D63E3C4485C128BC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m316B32060B187C6935D44E5342EEC67EC2F26F0C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m50FA4CBA07D3DBAE93E04E6C9ACFC805CA054B4E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DynamicCircularBuffer_1__ctor_m2C25B66F5928BB4AFECDF42471C898F632AA72D3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mB997CBF78A37938DC1624352E12D0205078CB290_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m30DD6F0F8DFBA9856BF7220A3CDB1C89ECEC0D98_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m8253079A55CBC89FDB0B6E9075715BD28D305562_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m84B60E4511081603E6186BDB5DAFB2CDE9AA8454_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m983421AD93B4F8031BD3DE40348CD04ACB2EB2D8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mC2EA22E22D584C79B83F3DE54ED552A45F7428EF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mC44213C602CAA3F94A5594ACA8E70E9826C8268A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_AddListener_mEC384A8CFC5D4D41B62B08248A738CF61B82172F_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* V_0 = NULL;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* G_B7_0 = NULL;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* G_B6_0 = NULL;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* G_B8_0 = NULL;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* G_B8_1 = NULL;
|
|
{
|
|
// if( !Instance )
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_0;
|
|
L_0 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
// Instance = this;
|
|
DebugLogManager_set_Instance_m8AAA1D33AF4369E3F6479AF6B0B6DF97015AE73A_inline(__this, NULL);
|
|
// if( singleton )
|
|
bool L_2 = __this->___singleton_5;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
// DontDestroyOnLoad( gameObject );
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3;
|
|
L_3 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
Object_DontDestroyOnLoad_m4B70C3AEF886C176543D1295507B6455C9DCAEA7(L_3, NULL);
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
// else if( Instance != this )
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_4;
|
|
L_4 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_4, __this, NULL);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
// Destroy( gameObject );
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_6;
|
|
L_6 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
Object_Destroy_mE97D0A766419A81296E8D4E5C23D01D3FE91ACBB(L_6, NULL);
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
// pooledLogEntries = new List<DebugLogEntry>( 16 );
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_7 = (List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983*)il2cpp_codegen_object_new(List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m84B60E4511081603E6186BDB5DAFB2CDE9AA8454(L_7, ((int32_t)16), List_1__ctor_m84B60E4511081603E6186BDB5DAFB2CDE9AA8454_RuntimeMethod_var);
|
|
__this->___pooledLogEntries_100 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___pooledLogEntries_100), (void*)L_7);
|
|
// pooledLogItems = new List<DebugLogItem>( 16 );
|
|
List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14* L_8 = (List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14*)il2cpp_codegen_object_new(List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m983421AD93B4F8031BD3DE40348CD04ACB2EB2D8(L_8, ((int32_t)16), List_1__ctor_m983421AD93B4F8031BD3DE40348CD04ACB2EB2D8_RuntimeMethod_var);
|
|
__this->___pooledLogItems_101 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___pooledLogItems_101), (void*)L_8);
|
|
// commandSuggestionInstances = new List<Text>( 8 );
|
|
List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48* L_9 = (List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48*)il2cpp_codegen_object_new(List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m8253079A55CBC89FDB0B6E9075715BD28D305562(L_9, 8, List_1__ctor_m8253079A55CBC89FDB0B6E9075715BD28D305562_RuntimeMethod_var);
|
|
__this->___commandSuggestionInstances_91 = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___commandSuggestionInstances_91), (void*)L_9);
|
|
// matchingCommandSuggestions = new List<ConsoleMethodInfo>( 8 );
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_10 = (List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4*)il2cpp_codegen_object_new(List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mC2EA22E22D584C79B83F3DE54ED552A45F7428EF(L_10, 8, List_1__ctor_mC2EA22E22D584C79B83F3DE54ED552A45F7428EF_RuntimeMethod_var);
|
|
__this->___matchingCommandSuggestions_93 = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___matchingCommandSuggestions_93), (void*)L_10);
|
|
// commandCaretIndexIncrements = new List<int>( 8 );
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_11 = (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*)il2cpp_codegen_object_new(List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m30DD6F0F8DFBA9856BF7220A3CDB1C89ECEC0D98(L_11, 8, List_1__ctor_m30DD6F0F8DFBA9856BF7220A3CDB1C89ECEC0D98_RuntimeMethod_var);
|
|
__this->___commandCaretIndexIncrements_94 = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___commandCaretIndexIncrements_94), (void*)L_11);
|
|
// queuedLogEntries = new DynamicCircularBuffer<QueuedDebugLogEntry>( 16 );
|
|
DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* L_12 = (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965*)il2cpp_codegen_object_new(DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965_il2cpp_TypeInfo_var);
|
|
DynamicCircularBuffer_1__ctor_m2C25B66F5928BB4AFECDF42471C898F632AA72D3(L_12, ((int32_t)16), DynamicCircularBuffer_1__ctor_m2C25B66F5928BB4AFECDF42471C898F632AA72D3_RuntimeMethod_var);
|
|
__this->___queuedLogEntries_88 = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___queuedLogEntries_88), (void*)L_12);
|
|
// commandHistory = new CircularBuffer<string>( commandHistorySize );
|
|
int32_t L_13 = __this->___commandHistorySize_20;
|
|
CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A* L_14 = (CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A*)il2cpp_codegen_object_new(CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A_il2cpp_TypeInfo_var);
|
|
CircularBuffer_1__ctor_m5ABA82D2EC7ECE4256398E62D68629E6B59BE9C9(L_14, L_13, CircularBuffer_1__ctor_m5ABA82D2EC7ECE4256398E62D68629E6B59BE9C9_RuntimeMethod_var);
|
|
__this->___commandHistory_102 = L_14;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___commandHistory_102), (void*)L_14);
|
|
// logEntriesLock = new object();
|
|
RuntimeObject* L_15 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_15, NULL);
|
|
__this->___logEntriesLock_89 = L_15;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___logEntriesLock_89), (void*)L_15);
|
|
// sharedStringBuilder = new StringBuilder( 1024 );
|
|
StringBuilder_t* L_16 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_16, ((int32_t)1024), NULL);
|
|
__this->___sharedStringBuilder_105 = L_16;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___sharedStringBuilder_105), (void*)L_16);
|
|
// canvasTR = (RectTransform) transform;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_17;
|
|
L_17 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(__this, NULL);
|
|
__this->___canvasTR_41 = ((RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5*)CastclassSealed((RuntimeObject*)L_17, RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___canvasTR_41), (void*)((RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5*)CastclassSealed((RuntimeObject*)L_17, RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_il2cpp_TypeInfo_var)));
|
|
// logItemsScrollRectTR = (RectTransform) logItemsScrollRect.transform;
|
|
ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* L_18 = __this->___logItemsScrollRect_61;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_19;
|
|
L_19 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(L_18, NULL);
|
|
__this->___logItemsScrollRectTR_62 = ((RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5*)CastclassSealed((RuntimeObject*)L_19, RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___logItemsScrollRectTR_62), (void*)((RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5*)CastclassSealed((RuntimeObject*)L_19, RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_il2cpp_TypeInfo_var)));
|
|
// logItemsScrollRectOriginalSize = logItemsScrollRectTR.sizeDelta;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_20 = __this->___logItemsScrollRectTR_62;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21;
|
|
L_21 = RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB(L_20, NULL);
|
|
__this->___logItemsScrollRectOriginalSize_63 = L_21;
|
|
// logSpriteRepresentations = new Dictionary<LogType, Sprite>()
|
|
// {
|
|
// { LogType.Log, infoLog },
|
|
// { LogType.Warning, warningLog },
|
|
// { LogType.Error, errorLog },
|
|
// { LogType.Exception, errorLog },
|
|
// { LogType.Assert, errorLog }
|
|
// };
|
|
Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7* L_22 = (Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7*)il2cpp_codegen_object_new(Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m50FA4CBA07D3DBAE93E04E6C9ACFC805CA054B4E(L_22, Dictionary_2__ctor_m50FA4CBA07D3DBAE93E04E6C9ACFC805CA054B4E_RuntimeMethod_var);
|
|
Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7* L_23 = L_22;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_24 = __this->___infoLog_28;
|
|
Dictionary_2_Add_m2620E8DF00B206AC5E4A4106D63E3C4485C128BC(L_23, 3, L_24, Dictionary_2_Add_m2620E8DF00B206AC5E4A4106D63E3C4485C128BC_RuntimeMethod_var);
|
|
Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7* L_25 = L_23;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_26 = __this->___warningLog_29;
|
|
Dictionary_2_Add_m2620E8DF00B206AC5E4A4106D63E3C4485C128BC(L_25, 2, L_26, Dictionary_2_Add_m2620E8DF00B206AC5E4A4106D63E3C4485C128BC_RuntimeMethod_var);
|
|
Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7* L_27 = L_25;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_28 = __this->___errorLog_30;
|
|
Dictionary_2_Add_m2620E8DF00B206AC5E4A4106D63E3C4485C128BC(L_27, 0, L_28, Dictionary_2_Add_m2620E8DF00B206AC5E4A4106D63E3C4485C128BC_RuntimeMethod_var);
|
|
Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7* L_29 = L_27;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_30 = __this->___errorLog_30;
|
|
Dictionary_2_Add_m2620E8DF00B206AC5E4A4106D63E3C4485C128BC(L_29, 4, L_30, Dictionary_2_Add_m2620E8DF00B206AC5E4A4106D63E3C4485C128BC_RuntimeMethod_var);
|
|
Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7* L_31 = L_29;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_32 = __this->___errorLog_30;
|
|
Dictionary_2_Add_m2620E8DF00B206AC5E4A4106D63E3C4485C128BC(L_31, 1, L_32, Dictionary_2_Add_m2620E8DF00B206AC5E4A4106D63E3C4485C128BC_RuntimeMethod_var);
|
|
__this->___logSpriteRepresentations_33 = L_31;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___logSpriteRepresentations_33), (void*)L_31);
|
|
// filterInfoButton.color = filterButtonsSelectedColor;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_33 = __this->___filterInfoButton_48;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_34 = __this->___filterButtonsSelectedColor_37;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_33, L_34);
|
|
// filterWarningButton.color = filterButtonsSelectedColor;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_35 = __this->___filterWarningButton_49;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_36 = __this->___filterButtonsSelectedColor_37;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_35, L_36);
|
|
// filterErrorButton.color = filterButtonsSelectedColor;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_37 = __this->___filterErrorButton_50;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_38 = __this->___filterButtonsSelectedColor_37;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_37, L_38);
|
|
// resizeButton.sprite = enableHorizontalResizing ? resizeIconAllDirections : resizeIconVerticalOnly;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_39 = __this->___resizeButton_57;
|
|
bool L_40 = __this->___enableHorizontalResizing_7;
|
|
G_B6_0 = L_39;
|
|
if (L_40)
|
|
{
|
|
G_B7_0 = L_39;
|
|
goto IL_0184;
|
|
}
|
|
}
|
|
{
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_41 = __this->___resizeIconVerticalOnly_32;
|
|
G_B8_0 = L_41;
|
|
G_B8_1 = G_B6_0;
|
|
goto IL_018a;
|
|
}
|
|
|
|
IL_0184:
|
|
{
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_42 = __this->___resizeIconAllDirections_31;
|
|
G_B8_0 = L_42;
|
|
G_B8_1 = G_B7_0;
|
|
}
|
|
|
|
IL_018a:
|
|
{
|
|
Image_set_sprite_mC0C248340BA27AAEE56855A3FAFA0D8CA12956DE(G_B8_1, G_B8_0, NULL);
|
|
// collapsedLogEntries = new List<DebugLogEntry>( 128 );
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_43 = (List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983*)il2cpp_codegen_object_new(List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m84B60E4511081603E6186BDB5DAFB2CDE9AA8454(L_43, ((int32_t)128), List_1__ctor_m84B60E4511081603E6186BDB5DAFB2CDE9AA8454_RuntimeMethod_var);
|
|
__this->___collapsedLogEntries_79 = L_43;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___collapsedLogEntries_79), (void*)L_43);
|
|
// collapsedLogEntriesMap = new Dictionary<DebugLogEntry, int>( 128 );
|
|
Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22* L_44 = (Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22*)il2cpp_codegen_object_new(Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m316B32060B187C6935D44E5342EEC67EC2F26F0C(L_44, ((int32_t)128), Dictionary_2__ctor_m316B32060B187C6935D44E5342EEC67EC2F26F0C_RuntimeMethod_var);
|
|
__this->___collapsedLogEntriesMap_81 = L_44;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___collapsedLogEntriesMap_81), (void*)L_44);
|
|
// uncollapsedLogEntriesIndices = new DebugLogIndexList<int>();
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_45 = (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F*)il2cpp_codegen_object_new(DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F_il2cpp_TypeInfo_var);
|
|
DebugLogIndexList_1__ctor_mA89F322ECBB6B3A499BFE45D2D21FE45F550DA79(L_45, DebugLogIndexList_1__ctor_mA89F322ECBB6B3A499BFE45D2D21FE45F550DA79_RuntimeMethod_var);
|
|
__this->___uncollapsedLogEntriesIndices_82 = L_45;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___uncollapsedLogEntriesIndices_82), (void*)L_45);
|
|
// indicesOfListEntriesToShow = new DebugLogIndexList<int>();
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_46 = (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F*)il2cpp_codegen_object_new(DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F_il2cpp_TypeInfo_var);
|
|
DebugLogIndexList_1__ctor_mA89F322ECBB6B3A499BFE45D2D21FE45F550DA79(L_46, DebugLogIndexList_1__ctor_mA89F322ECBB6B3A499BFE45D2D21FE45F550DA79_RuntimeMethod_var);
|
|
__this->___indicesOfListEntriesToShow_84 = L_46;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___indicesOfListEntriesToShow_84), (void*)L_46);
|
|
// if( captureLogTimestamps )
|
|
bool L_47 = __this->___captureLogTimestamps_17;
|
|
if (!L_47)
|
|
{
|
|
goto IL_01f3;
|
|
}
|
|
}
|
|
{
|
|
// collapsedLogEntriesTimestamps = new List<DebugLogEntryTimestamp>( 128 );
|
|
List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* L_48 = (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6*)il2cpp_codegen_object_new(List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6_il2cpp_TypeInfo_var);
|
|
List_1__ctor_mC44213C602CAA3F94A5594ACA8E70E9826C8268A(L_48, ((int32_t)128), List_1__ctor_mC44213C602CAA3F94A5594ACA8E70E9826C8268A_RuntimeMethod_var);
|
|
__this->___collapsedLogEntriesTimestamps_80 = L_48;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___collapsedLogEntriesTimestamps_80), (void*)L_48);
|
|
// uncollapsedLogEntriesTimestamps = new DebugLogIndexList<DebugLogEntryTimestamp>();
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_49 = (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20*)il2cpp_codegen_object_new(DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20_il2cpp_TypeInfo_var);
|
|
DebugLogIndexList_1__ctor_mFDB99EECA2932B97D971CD576697FA8F3877ABCD(L_49, DebugLogIndexList_1__ctor_mFDB99EECA2932B97D971CD576697FA8F3877ABCD_RuntimeMethod_var);
|
|
__this->___uncollapsedLogEntriesTimestamps_83 = L_49;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___uncollapsedLogEntriesTimestamps_83), (void*)L_49);
|
|
// timestampsOfListEntriesToShow = new DebugLogIndexList<DebugLogEntryTimestamp>();
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_50 = (DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20*)il2cpp_codegen_object_new(DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20_il2cpp_TypeInfo_var);
|
|
DebugLogIndexList_1__ctor_mFDB99EECA2932B97D971CD576697FA8F3877ABCD(L_50, DebugLogIndexList_1__ctor_mFDB99EECA2932B97D971CD576697FA8F3877ABCD_RuntimeMethod_var);
|
|
__this->___timestampsOfListEntriesToShow_85 = L_50;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___timestampsOfListEntriesToShow_85), (void*)L_50);
|
|
}
|
|
|
|
IL_01f3:
|
|
{
|
|
// recycledListView.Initialize( this, collapsedLogEntries, indicesOfListEntriesToShow, timestampsOfListEntriesToShow, logItemPrefab.Transform.sizeDelta.y );
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_51 = __this->___recycledListView_64;
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_52 = __this->___collapsedLogEntries_79;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_53 = __this->___indicesOfListEntriesToShow_84;
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_54 = __this->___timestampsOfListEntriesToShow_85;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_55 = __this->___logItemPrefab_26;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_56;
|
|
L_56 = DebugLogItem_get_Transform_mBAA5D6E01F83683FF29CE440C3D2F4D5616E6466_inline(L_55, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_57;
|
|
L_57 = RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB(L_56, NULL);
|
|
float L_58 = L_57.___y_1;
|
|
DebugLogRecycledListView_Initialize_mAF57AB488F6259FDDE530279AB805F5B96EC6404(L_51, __this, L_52, L_53, L_54, L_58, NULL);
|
|
// recycledListView.UpdateItemsInTheList( true );
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_59 = __this->___recycledListView_64;
|
|
DebugLogRecycledListView_UpdateItemsInTheList_mFA3693DC343B8C587ADB84C71BEFF417EA3710EA(L_59, (bool)1, NULL);
|
|
// if( minimumWidth < 100f )
|
|
float L_60 = __this->___minimumWidth_9;
|
|
if ((!(((float)L_60) < ((float)(100.0f)))))
|
|
{
|
|
goto IL_024a;
|
|
}
|
|
}
|
|
{
|
|
// minimumWidth = 100f;
|
|
__this->___minimumWidth_9 = (100.0f);
|
|
}
|
|
|
|
IL_024a:
|
|
{
|
|
// if( minimumHeight < 200f )
|
|
float L_61 = __this->___minimumHeight_6;
|
|
if ((!(((float)L_61) < ((float)(200.0f)))))
|
|
{
|
|
goto IL_0262;
|
|
}
|
|
}
|
|
{
|
|
// minimumHeight = 200f;
|
|
__this->___minimumHeight_6 = (200.0f);
|
|
}
|
|
|
|
IL_0262:
|
|
{
|
|
// if( !resizeFromRight )
|
|
bool L_62 = __this->___resizeFromRight_8;
|
|
if (L_62)
|
|
{
|
|
goto IL_0309;
|
|
}
|
|
}
|
|
{
|
|
// RectTransform resizeButtonTR = (RectTransform) resizeButton.GetComponentInParent<DebugLogResizeListener>().transform;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_63 = __this->___resizeButton_57;
|
|
DebugLogResizeListener_tAEB6FDAE1D37AD856CBD82204674E6AC4C1764B5* L_64;
|
|
L_64 = Component_GetComponentInParent_TisDebugLogResizeListener_tAEB6FDAE1D37AD856CBD82204674E6AC4C1764B5_mF02A4B666F5DCABE759B5071135F7F6B1ACE8536(L_63, Component_GetComponentInParent_TisDebugLogResizeListener_tAEB6FDAE1D37AD856CBD82204674E6AC4C1764B5_mF02A4B666F5DCABE759B5071135F7F6B1ACE8536_RuntimeMethod_var);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_65;
|
|
L_65 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(L_64, NULL);
|
|
V_0 = ((RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5*)CastclassSealed((RuntimeObject*)L_65, RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_il2cpp_TypeInfo_var));
|
|
// resizeButtonTR.anchorMin = new Vector2( 0f, resizeButtonTR.anchorMin.y );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_66 = V_0;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_67 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_68;
|
|
L_68 = RectTransform_get_anchorMin_mD85363930BE38EC188F933B9F4D58320CAB72F03(L_67, NULL);
|
|
float L_69 = L_68.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_70;
|
|
memset((&L_70), 0, sizeof(L_70));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_70), (0.0f), L_69, /*hidden argument*/NULL);
|
|
RectTransform_set_anchorMin_m931442ABE3368D6D4309F43DF1D64AB64B0F52E3(L_66, L_70, NULL);
|
|
// resizeButtonTR.anchorMax = new Vector2( 0f, resizeButtonTR.anchorMax.y );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_71 = V_0;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_72 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_73;
|
|
L_73 = RectTransform_get_anchorMax_mEF870BE2A134CEB9C2326930A71D3961271297DB(L_72, NULL);
|
|
float L_74 = L_73.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_75;
|
|
memset((&L_75), 0, sizeof(L_75));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_75), (0.0f), L_74, /*hidden argument*/NULL);
|
|
RectTransform_set_anchorMax_m52829ABEDD229ABD3DA20BCA676FA1DCA4A39B7D(L_71, L_75, NULL);
|
|
// resizeButtonTR.pivot = new Vector2( 0f, resizeButtonTR.pivot.y );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_76 = V_0;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_77 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_78;
|
|
L_78 = RectTransform_get_pivot_mA8334AF05AA7FF09A173A2430F2BB9E85E5CBFFF(L_77, NULL);
|
|
float L_79 = L_78.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_80;
|
|
memset((&L_80), 0, sizeof(L_80));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_80), (0.0f), L_79, /*hidden argument*/NULL);
|
|
RectTransform_set_pivot_m79D0177D383D432A93C2615F1932B739B1C6E146(L_76, L_80, NULL);
|
|
// ( (RectTransform) commandInputField.transform ).anchoredPosition += new Vector2( resizeButtonTR.sizeDelta.x, 0f );
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_81 = __this->___commandInputField_44;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_82;
|
|
L_82 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(L_81, NULL);
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_83 = ((RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5*)CastclassSealed((RuntimeObject*)L_82, RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_il2cpp_TypeInfo_var));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_84;
|
|
L_84 = RectTransform_get_anchoredPosition_m38F25A4253B0905BB058BE73DBF43C7172CE0680(L_83, NULL);
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_85 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_86;
|
|
L_86 = RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB(L_85, NULL);
|
|
float L_87 = L_86.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_88;
|
|
memset((&L_88), 0, sizeof(L_88));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_88), L_87, (0.0f), /*hidden argument*/NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_89;
|
|
L_89 = Vector2_op_Addition_m8136742CE6EE33BA4EB81C5F584678455917D2AE_inline(L_84, L_88, NULL);
|
|
RectTransform_set_anchoredPosition_mF903ACE04F6959B1CD67E2B94FABC0263068F965(L_83, L_89, NULL);
|
|
}
|
|
|
|
IL_0309:
|
|
{
|
|
// if( enableSearchbar )
|
|
bool L_90 = __this->___enableSearchbar_15;
|
|
if (!L_90)
|
|
{
|
|
goto IL_0334;
|
|
}
|
|
}
|
|
{
|
|
// searchbar.GetComponent<InputField>().onValueChanged.AddListener( SearchTermChanged );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_91 = __this->___searchbar_54;
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_92;
|
|
L_92 = Component_GetComponent_TisInputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140_m08978F3683B8CCF83910BA8BB0A4F786A6361896(L_91, Component_GetComponent_TisInputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140_m08978F3683B8CCF83910BA8BB0A4F786A6361896_RuntimeMethod_var);
|
|
OnChangeEvent_tE4829F88300B0E0E0D1B78B453AF25FC1AA55E2F* L_93;
|
|
L_93 = InputField_get_onValueChanged_mA9ABE178FE3EB05AEF3DC20C11349427C59916AE_inline(L_92, NULL);
|
|
UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B* L_94 = (UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B*)il2cpp_codegen_object_new(UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B_il2cpp_TypeInfo_var);
|
|
UnityAction_1__ctor_mE6251CCFD943EB114960F556A546E2777B18AC71(L_94, __this, (intptr_t)((void*)DebugLogManager_SearchTermChanged_m6498FD8BDE5D56742AC5EA2EF769FCB1028DDF03_RuntimeMethod_var), NULL);
|
|
UnityEvent_1_AddListener_mEC384A8CFC5D4D41B62B08248A738CF61B82172F(L_93, L_94, UnityEvent_1_AddListener_mEC384A8CFC5D4D41B62B08248A738CF61B82172F_RuntimeMethod_var);
|
|
goto IL_035d;
|
|
}
|
|
|
|
IL_0334:
|
|
{
|
|
// searchbar = null;
|
|
__this->___searchbar_54 = (RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___searchbar_54), (void*)(RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5*)NULL);
|
|
// searchbarSlotTop.gameObject.SetActive( false );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_95 = __this->___searchbarSlotTop_55;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_96;
|
|
L_96 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_95, NULL);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_96, (bool)0, NULL);
|
|
// searchbarSlotBottom.gameObject.SetActive( false );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_97 = __this->___searchbarSlotBottom_56;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_98;
|
|
L_98 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_97, NULL);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_98, (bool)0, NULL);
|
|
}
|
|
|
|
IL_035d:
|
|
{
|
|
// if( commandSuggestionsContainer.gameObject.activeSelf )
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_99 = __this->___commandSuggestionsContainer_43;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_100;
|
|
L_100 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_99, NULL);
|
|
bool L_101;
|
|
L_101 = GameObject_get_activeSelf_m4F3E5240E138B66AAA080EA30759A3D0517DA368(L_100, NULL);
|
|
if (!L_101)
|
|
{
|
|
goto IL_0380;
|
|
}
|
|
}
|
|
{
|
|
// commandSuggestionsContainer.gameObject.SetActive( false );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_102 = __this->___commandSuggestionsContainer_43;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_103;
|
|
L_103 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_102, NULL);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_103, (bool)0, NULL);
|
|
}
|
|
|
|
IL_0380:
|
|
{
|
|
// commandInputField.onValidateInput += OnValidateCommand;
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_104 = __this->___commandInputField_44;
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_105 = L_104;
|
|
OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B* L_106;
|
|
L_106 = InputField_get_onValidateInput_m370D93274B6040422092981DD3A34E4B88E96EBC_inline(L_105, NULL);
|
|
OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B* L_107 = (OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B*)il2cpp_codegen_object_new(OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B_il2cpp_TypeInfo_var);
|
|
OnValidateInput__ctor_mDC0454BF264F87154EF8694821905B5A6A587A29(L_107, __this, (intptr_t)((void*)DebugLogManager_OnValidateCommand_m47B17FC3C7B2322739D37ED0B74DD3866EAC892B_RuntimeMethod_var), NULL);
|
|
Delegate_t* L_108;
|
|
L_108 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_106, L_107, NULL);
|
|
InputField_set_onValidateInput_m3A3FA74285B9BBA68325A91AA862201AF3A18CE4(L_105, ((OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B*)CastclassSealed((RuntimeObject*)L_108, OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B_il2cpp_TypeInfo_var)), NULL);
|
|
// commandInputField.onValueChanged.AddListener( RefreshCommandSuggestions );
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_109 = __this->___commandInputField_44;
|
|
OnChangeEvent_tE4829F88300B0E0E0D1B78B453AF25FC1AA55E2F* L_110;
|
|
L_110 = InputField_get_onValueChanged_mA9ABE178FE3EB05AEF3DC20C11349427C59916AE_inline(L_109, NULL);
|
|
UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B* L_111 = (UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B*)il2cpp_codegen_object_new(UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B_il2cpp_TypeInfo_var);
|
|
UnityAction_1__ctor_mE6251CCFD943EB114960F556A546E2777B18AC71(L_111, __this, (intptr_t)((void*)DebugLogManager_RefreshCommandSuggestions_mFCF8CC3D6641DA413AB30A52D25C37FDFC9A9383_RuntimeMethod_var), NULL);
|
|
UnityEvent_1_AddListener_mEC384A8CFC5D4D41B62B08248A738CF61B82172F(L_110, L_111, UnityEvent_1_AddListener_mEC384A8CFC5D4D41B62B08248A738CF61B82172F_RuntimeMethod_var);
|
|
// commandInputField.onEndEdit.AddListener( OnEndEditCommand );
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_112 = __this->___commandInputField_44;
|
|
EndEditEvent_t946A962BA13CF60BB0BE7AD091DA041FD788E655* L_113;
|
|
L_113 = InputField_get_onEndEdit_m92C86FF7CA6108C4B14392CED20C9ED9D39AD9A3_inline(L_112, NULL);
|
|
UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B* L_114 = (UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B*)il2cpp_codegen_object_new(UnityAction_1_t690494F0E492A2098660E28B8EB7D71B2C69BE1B_il2cpp_TypeInfo_var);
|
|
UnityAction_1__ctor_mE6251CCFD943EB114960F556A546E2777B18AC71(L_114, __this, (intptr_t)((void*)DebugLogManager_OnEndEditCommand_m6A00CF0CD88DE7DDD5E68262AE2CE34DBF3C2307_RuntimeMethod_var), NULL);
|
|
UnityEvent_1_AddListener_mEC384A8CFC5D4D41B62B08248A738CF61B82172F(L_113, L_114, UnityEvent_1_AddListener_mEC384A8CFC5D4D41B62B08248A738CF61B82172F_RuntimeMethod_var);
|
|
// hideButton.onClick.AddListener( HideLogWindow );
|
|
Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098* L_115 = __this->___hideButton_45;
|
|
ButtonClickedEvent_t8EA72E90B3BD1392FB3B3EF167D5121C23569E4C* L_116;
|
|
L_116 = Button_get_onClick_m701712A7F7F000CC80D517C4510697E15722C35C_inline(L_115, NULL);
|
|
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* L_117 = (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7*)il2cpp_codegen_object_new(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var);
|
|
UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131(L_117, __this, (intptr_t)((void*)DebugLogManager_HideLogWindow_mDA216839443A72537E963035E9DEC6188631E3D2_RuntimeMethod_var), NULL);
|
|
UnityEvent_AddListener_m8AA4287C16628486B41DA41CA5E7A856A706D302(L_116, L_117, NULL);
|
|
// clearButton.onClick.AddListener( ClearLogs );
|
|
Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098* L_118 = __this->___clearButton_46;
|
|
ButtonClickedEvent_t8EA72E90B3BD1392FB3B3EF167D5121C23569E4C* L_119;
|
|
L_119 = Button_get_onClick_m701712A7F7F000CC80D517C4510697E15722C35C_inline(L_118, NULL);
|
|
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* L_120 = (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7*)il2cpp_codegen_object_new(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var);
|
|
UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131(L_120, __this, (intptr_t)((void*)DebugLogManager_ClearLogs_m1CDDE08626E2804E6E16556212E2990FFE0FFD09_RuntimeMethod_var), NULL);
|
|
UnityEvent_AddListener_m8AA4287C16628486B41DA41CA5E7A856A706D302(L_119, L_120, NULL);
|
|
// collapseButton.GetComponent<Button>().onClick.AddListener( CollapseButtonPressed );
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_121 = __this->___collapseButton_47;
|
|
Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098* L_122;
|
|
L_122 = Component_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mFF8BA4CA5D7158D1D6249559A3289E7A6DF0A2BB(L_121, Component_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mFF8BA4CA5D7158D1D6249559A3289E7A6DF0A2BB_RuntimeMethod_var);
|
|
ButtonClickedEvent_t8EA72E90B3BD1392FB3B3EF167D5121C23569E4C* L_123;
|
|
L_123 = Button_get_onClick_m701712A7F7F000CC80D517C4510697E15722C35C_inline(L_122, NULL);
|
|
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* L_124 = (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7*)il2cpp_codegen_object_new(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var);
|
|
UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131(L_124, __this, (intptr_t)((void*)DebugLogManager_CollapseButtonPressed_m1A9E0352DBC00AD07E4AE7DC1C64BD91A9F56011_RuntimeMethod_var), NULL);
|
|
UnityEvent_AddListener_m8AA4287C16628486B41DA41CA5E7A856A706D302(L_123, L_124, NULL);
|
|
// filterInfoButton.GetComponent<Button>().onClick.AddListener( FilterLogButtonPressed );
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_125 = __this->___filterInfoButton_48;
|
|
Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098* L_126;
|
|
L_126 = Component_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mFF8BA4CA5D7158D1D6249559A3289E7A6DF0A2BB(L_125, Component_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mFF8BA4CA5D7158D1D6249559A3289E7A6DF0A2BB_RuntimeMethod_var);
|
|
ButtonClickedEvent_t8EA72E90B3BD1392FB3B3EF167D5121C23569E4C* L_127;
|
|
L_127 = Button_get_onClick_m701712A7F7F000CC80D517C4510697E15722C35C_inline(L_126, NULL);
|
|
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* L_128 = (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7*)il2cpp_codegen_object_new(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var);
|
|
UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131(L_128, __this, (intptr_t)((void*)DebugLogManager_FilterLogButtonPressed_m63FFD1470E923DC8ECA3969A1EE8B71176A249BC_RuntimeMethod_var), NULL);
|
|
UnityEvent_AddListener_m8AA4287C16628486B41DA41CA5E7A856A706D302(L_127, L_128, NULL);
|
|
// filterWarningButton.GetComponent<Button>().onClick.AddListener( FilterWarningButtonPressed );
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_129 = __this->___filterWarningButton_49;
|
|
Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098* L_130;
|
|
L_130 = Component_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mFF8BA4CA5D7158D1D6249559A3289E7A6DF0A2BB(L_129, Component_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mFF8BA4CA5D7158D1D6249559A3289E7A6DF0A2BB_RuntimeMethod_var);
|
|
ButtonClickedEvent_t8EA72E90B3BD1392FB3B3EF167D5121C23569E4C* L_131;
|
|
L_131 = Button_get_onClick_m701712A7F7F000CC80D517C4510697E15722C35C_inline(L_130, NULL);
|
|
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* L_132 = (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7*)il2cpp_codegen_object_new(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var);
|
|
UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131(L_132, __this, (intptr_t)((void*)DebugLogManager_FilterWarningButtonPressed_mE585A7869AADA4969E16AC2BBB9C959FD1D43B64_RuntimeMethod_var), NULL);
|
|
UnityEvent_AddListener_m8AA4287C16628486B41DA41CA5E7A856A706D302(L_131, L_132, NULL);
|
|
// filterErrorButton.GetComponent<Button>().onClick.AddListener( FilterErrorButtonPressed );
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_133 = __this->___filterErrorButton_50;
|
|
Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098* L_134;
|
|
L_134 = Component_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mFF8BA4CA5D7158D1D6249559A3289E7A6DF0A2BB(L_133, Component_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mFF8BA4CA5D7158D1D6249559A3289E7A6DF0A2BB_RuntimeMethod_var);
|
|
ButtonClickedEvent_t8EA72E90B3BD1392FB3B3EF167D5121C23569E4C* L_135;
|
|
L_135 = Button_get_onClick_m701712A7F7F000CC80D517C4510697E15722C35C_inline(L_134, NULL);
|
|
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* L_136 = (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7*)il2cpp_codegen_object_new(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var);
|
|
UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131(L_136, __this, (intptr_t)((void*)DebugLogManager_FilterErrorButtonPressed_mF7B8232DE7C74CFB674C4D50DA07417F690D05C5_RuntimeMethod_var), NULL);
|
|
UnityEvent_AddListener_m8AA4287C16628486B41DA41CA5E7A856A706D302(L_135, L_136, NULL);
|
|
// snapToBottomButton.GetComponent<Button>().onClick.AddListener( () => SetSnapToBottom( true ) );
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_137 = __this->___snapToBottomButton_58;
|
|
Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098* L_138;
|
|
L_138 = GameObject_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mB997CBF78A37938DC1624352E12D0205078CB290(L_137, GameObject_GetComponent_TisButton_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098_mB997CBF78A37938DC1624352E12D0205078CB290_RuntimeMethod_var);
|
|
ButtonClickedEvent_t8EA72E90B3BD1392FB3B3EF167D5121C23569E4C* L_139;
|
|
L_139 = Button_get_onClick_m701712A7F7F000CC80D517C4510697E15722C35C_inline(L_138, NULL);
|
|
UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7* L_140 = (UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7*)il2cpp_codegen_object_new(UnityAction_t11A1F3B953B365C072A5DCC32677EE1796A962A7_il2cpp_TypeInfo_var);
|
|
UnityAction__ctor_mC53E20D6B66E0D5688CD81B88DBB34F5A58B7131(L_140, __this, (intptr_t)((void*)DebugLogManager_U3CAwakeU3Eb__114_0_m8AF192569CFE92C9E05202A07FA156FF8299C909_RuntimeMethod_var), NULL);
|
|
UnityEvent_AddListener_m8AA4287C16628486B41DA41CA5E7A856A706D302(L_139, L_140, NULL);
|
|
// localTimeUtcOffset = System.DateTime.Now - System.DateTime.UtcNow;
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_141;
|
|
L_141 = DateTime_get_Now_m636CB9651A9099D20BA1CF813A0C69637317325C(NULL);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_142;
|
|
L_142 = DateTime_get_UtcNow_m06B6E9995FE16846A0F71EC9DB23E90BE2C5F9FA(NULL);
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_143;
|
|
L_143 = DateTime_op_Subtraction_m64D26F5ABFAE6E166A7E567093D025F6C69F0123(L_141, L_142, NULL);
|
|
__this->___localTimeUtcOffset_106 = L_143;
|
|
// nullPointerEventData = new PointerEventData( null );
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_144 = (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB*)il2cpp_codegen_object_new(PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB_il2cpp_TypeInfo_var);
|
|
PointerEventData__ctor_m63837790B68893F0022CCEFEF26ADD55A975F71C(L_144, (EventSystem_t61C51380B105BE9D2C39C4F15B7E655659957707*)NULL, NULL);
|
|
__this->___nullPointerEventData_107 = L_144;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nullPointerEventData_107), (void*)L_144);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::OnEnable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_OnEnable_m48499501706C868444DBBB4995B1CF48D1C45FD7 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_AddCommand_TisString_t_m56B48A18D995EDA3186C3ABCA826924E82120333_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_ReceivedLog_mA4C27364E589E7C61714AB54E614454C046317CA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_SaveLogsToFile_mA732B3362E923B9B400117C7D6A249E2078BB3E1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_SaveLogsToFile_mF9FAE140F4FA5B15748622C1FBEC0760BBDE9508_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4E8D6ADF8FD5A3D340011CA21212EA76CFA77176);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5825648A9CDA5C5DE83CF430A041B6EAF17D66BE);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF2EE4ABF165BEDC0BA04FF7D888EE038EBD80B8A);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// if( Instance != this )
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_0;
|
|
L_0 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_0, __this, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
// Application.logMessageReceivedThreaded -= ReceivedLog;
|
|
LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413* L_2 = (LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413*)il2cpp_codegen_object_new(LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413_il2cpp_TypeInfo_var);
|
|
LogCallback__ctor_m327A4C69691F8A4B01D405858E48B8A7D9D2A79D(L_2, __this, (intptr_t)((void*)DebugLogManager_ReceivedLog_mA4C27364E589E7C61714AB54E614454C046317CA_RuntimeMethod_var), NULL);
|
|
Application_remove_logMessageReceivedThreaded_m1E3BD279C50197C83C34222FD135D91C3F3313E2(L_2, NULL);
|
|
// Application.logMessageReceivedThreaded += ReceivedLog;
|
|
LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413* L_3 = (LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413*)il2cpp_codegen_object_new(LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413_il2cpp_TypeInfo_var);
|
|
LogCallback__ctor_m327A4C69691F8A4B01D405858E48B8A7D9D2A79D(L_3, __this, (intptr_t)((void*)DebugLogManager_ReceivedLog_mA4C27364E589E7C61714AB54E614454C046317CA_RuntimeMethod_var), NULL);
|
|
Application_add_logMessageReceivedThreaded_mDD8B873BF766306B205F549CF98249DD84FCA04C(L_3, NULL);
|
|
// if( receiveLogcatLogsInAndroid )
|
|
bool L_4 = __this->___receiveLogcatLogsInAndroid_22;
|
|
// DebugLogConsole.AddCommand( "logs.save", "Saves logs to persistentDataPath", SaveLogsToFile );
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_5 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_5, __this, (intptr_t)((void*)DebugLogManager_SaveLogsToFile_mA732B3362E923B9B400117C7D6A249E2078BB3E1_RuntimeMethod_var), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
DebugLogConsole_AddCommand_m44EA1C3BC10905406AAED2B25AC713C0E076A70F(_stringLiteralF2EE4ABF165BEDC0BA04FF7D888EE038EBD80B8A, _stringLiteral4E8D6ADF8FD5A3D340011CA21212EA76CFA77176, L_5, NULL);
|
|
// DebugLogConsole.AddCommand<string>( "logs.save", "Saves logs to the specified file", SaveLogsToFile );
|
|
Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A* L_6 = (Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A*)il2cpp_codegen_object_new(Action_1_t3CB5D1A819C3ED3F99E9E39F890F18633253949A_il2cpp_TypeInfo_var);
|
|
Action_1__ctor_m9DC2953C55C4D7D4B7BEFE03D84DA1F9362D652C(L_6, __this, (intptr_t)((void*)DebugLogManager_SaveLogsToFile_mF9FAE140F4FA5B15748622C1FBEC0760BBDE9508_RuntimeMethod_var), NULL);
|
|
DebugLogConsole_AddCommand_TisString_t_m56B48A18D995EDA3186C3ABCA826924E82120333(_stringLiteralF2EE4ABF165BEDC0BA04FF7D888EE038EBD80B8A, _stringLiteral5825648A9CDA5C5DE83CF430A041B6EAF17D66BE, L_6, DebugLogConsole_AddCommand_TisString_t_m56B48A18D995EDA3186C3ABCA826924E82120333_RuntimeMethod_var);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::OnDisable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_OnDisable_mF5CE4FDFE9E746068AED80F76EE6CB18DB249DA9 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_ReceivedLog_mA4C27364E589E7C61714AB54E614454C046317CA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF2EE4ABF165BEDC0BA04FF7D888EE038EBD80B8A);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// if( Instance != this )
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_0;
|
|
L_0 = DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_0, __this, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
// Application.logMessageReceivedThreaded -= ReceivedLog;
|
|
LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413* L_2 = (LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413*)il2cpp_codegen_object_new(LogCallback_tCFFF3C009186124A6A83A1E6BB7E360C5674C413_il2cpp_TypeInfo_var);
|
|
LogCallback__ctor_m327A4C69691F8A4B01D405858E48B8A7D9D2A79D(L_2, __this, (intptr_t)((void*)DebugLogManager_ReceivedLog_mA4C27364E589E7C61714AB54E614454C046317CA_RuntimeMethod_var), NULL);
|
|
Application_remove_logMessageReceivedThreaded_m1E3BD279C50197C83C34222FD135D91C3F3313E2(L_2, NULL);
|
|
// DebugLogConsole.RemoveCommand( "logs.save" );
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
DebugLogConsole_RemoveCommand_m7E9D585B16ADA53505185CF20D433A02EE9670E8(_stringLiteralF2EE4ABF165BEDC0BA04FF7D888EE038EBD80B8A, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::Start()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_Start_m64C8F2FE64BDB313D8295E3397F1DF8CD67E08B5 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// if( ( enablePopup && startInPopupMode ) || ( !enablePopup && startMinimized ) )
|
|
bool L_0 = __this->___enablePopup_10;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
bool L_1 = __this->___startInPopupMode_11;
|
|
if (L_1)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_2 = __this->___enablePopup_10;
|
|
if (L_2)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
bool L_3 = __this->___startMinimized_12;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
// HideLogWindow();
|
|
DebugLogManager_HideLogWindow_mDA216839443A72537E963035E9DEC6188631E3D2(__this, NULL);
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
// ShowLogWindow();
|
|
DebugLogManager_ShowLogWindow_m63344BFB6A91AA1AF6E2706E403EBCF3AE394905(__this, NULL);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
// PopupEnabled = enablePopup;
|
|
bool L_4 = __this->___enablePopup_10;
|
|
DebugLogManager_set_PopupEnabled_m73DC638F652F0B01DA24D13D4FA9470A3B2C3B49(__this, L_4, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::OnRectTransformDimensionsChange()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_OnRectTransformDimensionsChange_mA2528750A32CD1040870FDD9845F24CFD7EF6E86 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// screenDimensionsChanged = true;
|
|
__this->___screenDimensionsChanged_66 = (bool)1;
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::Update()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_Update_mBDBADD70294C18412A7F1555AFA5A4E8C0A24893 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// if( toggleWithKey )
|
|
bool L_0 = __this->___toggleWithKey_13;
|
|
if (!L_0)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
// if( Input.GetKeyDown( toggleKey ) )
|
|
int32_t L_1 = __this->___toggleKey_14;
|
|
bool L_2;
|
|
L_2 = Input_GetKeyDown_mB237DEA6244132670D38990BAB77D813FBB028D2(L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
// if( isLogWindowVisible )
|
|
bool L_3 = __this->___isLogWindowVisible_65;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
// HideLogWindow();
|
|
DebugLogManager_HideLogWindow_mDA216839443A72537E963035E9DEC6188631E3D2(__this, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
// ShowLogWindow();
|
|
DebugLogManager_ShowLogWindow_m63344BFB6A91AA1AF6E2706E403EBCF3AE394905(__this, NULL);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::LateUpdate()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_LateUpdate_mDC31348A9336A5F29F57EF001B1380AD360F1213 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CircularBuffer_1_get_Count_m14C7581AC31603481ACBF6A183A4A466EE202205_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CircularBuffer_1_get_Item_m9F70975FC739CFFAB235BC282293A7E8290D96A1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DynamicCircularBuffer_1_RemoveFirst_mB90660C9AD7A06237A51BF5C1A00148A2975CF72_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
float V_1 = 0.0f;
|
|
int32_t V_2 = 0;
|
|
QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
RuntimeObject* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
float V_7 = 0.0f;
|
|
float V_8 = 0.0f;
|
|
int32_t V_9 = 0;
|
|
bool G_B51_0 = false;
|
|
bool G_B50_0 = false;
|
|
int32_t G_B52_0 = 0;
|
|
bool G_B52_1 = false;
|
|
String_t* G_B69_0 = NULL;
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* G_B69_1 = NULL;
|
|
String_t* G_B68_0 = NULL;
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* G_B68_1 = NULL;
|
|
{
|
|
// int queuedLogCount = queuedLogEntries.Count;
|
|
DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* L_0 = __this->___queuedLogEntries_88;
|
|
int32_t L_1;
|
|
L_1 = DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_inline(L_0, DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
// if( queuedLogCount > 0 )
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
// for( int i = 0; i < queuedLogCount; i++ )
|
|
V_2 = 0;
|
|
goto IL_004d;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
// lock( logEntriesLock )
|
|
RuntimeObject* L_3 = __this->___logEntriesLock_89;
|
|
V_4 = L_3;
|
|
V_5 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0036:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
bool L_4 = V_5;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_5 = V_4;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_5, NULL);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
RuntimeObject* L_6 = V_4;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_6, (&V_5), NULL);
|
|
// logEntry = queuedLogEntries.RemoveFirst();
|
|
DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* L_7 = __this->___queuedLogEntries_88;
|
|
QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C L_8;
|
|
L_8 = DynamicCircularBuffer_1_RemoveFirst_mB90660C9AD7A06237A51BF5C1A00148A2975CF72(L_7, DynamicCircularBuffer_1_RemoveFirst_mB90660C9AD7A06237A51BF5C1A00148A2975CF72_RuntimeMethod_var);
|
|
V_3 = L_8;
|
|
// }
|
|
goto IL_0042;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
// ProcessLog( logEntry );
|
|
QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C L_9 = V_3;
|
|
DebugLogManager_ProcessLog_mD0F3EAF79AA2A64B5F45AC2859D88311560857C4(__this, L_9, NULL);
|
|
// for( int i = 0; i < queuedLogCount; i++ )
|
|
int32_t L_10 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
// for( int i = 0; i < queuedLogCount; i++ )
|
|
int32_t L_11 = V_2;
|
|
int32_t L_12 = V_0;
|
|
if ((((int32_t)L_11) < ((int32_t)L_12)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
// if( newInfoEntryCount > 0 || newWarningEntryCount > 0 || newErrorEntryCount > 0 )
|
|
int32_t L_13 = __this->___newInfoEntryCount_71;
|
|
if ((((int32_t)L_13) > ((int32_t)0)))
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_14 = __this->___newWarningEntryCount_72;
|
|
if ((((int32_t)L_14) > ((int32_t)0)))
|
|
{
|
|
goto IL_006f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = __this->___newErrorEntryCount_73;
|
|
if ((((int32_t)L_15) <= ((int32_t)0)))
|
|
{
|
|
goto IL_013f;
|
|
}
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
// if( newInfoEntryCount > 0 )
|
|
int32_t L_16 = __this->___newInfoEntryCount_71;
|
|
if ((((int32_t)L_16) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00a1;
|
|
}
|
|
}
|
|
{
|
|
// infoEntryCount += newInfoEntryCount;
|
|
int32_t L_17 = __this->___infoEntryCount_68;
|
|
int32_t L_18 = __this->___newInfoEntryCount_71;
|
|
__this->___infoEntryCount_68 = ((int32_t)il2cpp_codegen_add(L_17, L_18));
|
|
// infoEntryCountText.text = infoEntryCount.ToString();
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_19 = __this->___infoEntryCountText_51;
|
|
int32_t* L_20 = (&__this->___infoEntryCount_68);
|
|
String_t* L_21;
|
|
L_21 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5(L_20, NULL);
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_19, L_21);
|
|
}
|
|
|
|
IL_00a1:
|
|
{
|
|
// if( newWarningEntryCount > 0 )
|
|
int32_t L_22 = __this->___newWarningEntryCount_72;
|
|
if ((((int32_t)L_22) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00d3;
|
|
}
|
|
}
|
|
{
|
|
// warningEntryCount += newWarningEntryCount;
|
|
int32_t L_23 = __this->___warningEntryCount_69;
|
|
int32_t L_24 = __this->___newWarningEntryCount_72;
|
|
__this->___warningEntryCount_69 = ((int32_t)il2cpp_codegen_add(L_23, L_24));
|
|
// warningEntryCountText.text = warningEntryCount.ToString();
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_25 = __this->___warningEntryCountText_52;
|
|
int32_t* L_26 = (&__this->___warningEntryCount_69);
|
|
String_t* L_27;
|
|
L_27 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5(L_26, NULL);
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_25, L_27);
|
|
}
|
|
|
|
IL_00d3:
|
|
{
|
|
// if( newErrorEntryCount > 0 )
|
|
int32_t L_28 = __this->___newErrorEntryCount_73;
|
|
if ((((int32_t)L_28) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0105;
|
|
}
|
|
}
|
|
{
|
|
// errorEntryCount += newErrorEntryCount;
|
|
int32_t L_29 = __this->___errorEntryCount_70;
|
|
int32_t L_30 = __this->___newErrorEntryCount_73;
|
|
__this->___errorEntryCount_70 = ((int32_t)il2cpp_codegen_add(L_29, L_30));
|
|
// errorEntryCountText.text = errorEntryCount.ToString();
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_31 = __this->___errorEntryCountText_53;
|
|
int32_t* L_32 = (&__this->___errorEntryCount_70);
|
|
String_t* L_33;
|
|
L_33 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5(L_32, NULL);
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_31, L_33);
|
|
}
|
|
|
|
IL_0105:
|
|
{
|
|
// if( !isLogWindowVisible )
|
|
bool L_34 = __this->___isLogWindowVisible_65;
|
|
if (L_34)
|
|
{
|
|
goto IL_012a;
|
|
}
|
|
}
|
|
{
|
|
// popupManager.NewLogsArrived( newInfoEntryCount, newWarningEntryCount, newErrorEntryCount );
|
|
DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* L_35 = __this->___popupManager_60;
|
|
int32_t L_36 = __this->___newInfoEntryCount_71;
|
|
int32_t L_37 = __this->___newWarningEntryCount_72;
|
|
int32_t L_38 = __this->___newErrorEntryCount_73;
|
|
DebugLogPopup_NewLogsArrived_m85EAD7C7DB7DC48013913D26B818DCB25B0AF4AD(L_35, L_36, L_37, L_38, NULL);
|
|
}
|
|
|
|
IL_012a:
|
|
{
|
|
// newInfoEntryCount = 0;
|
|
__this->___newInfoEntryCount_71 = 0;
|
|
// newWarningEntryCount = 0;
|
|
__this->___newWarningEntryCount_72 = 0;
|
|
// newErrorEntryCount = 0;
|
|
__this->___newErrorEntryCount_73 = 0;
|
|
}
|
|
|
|
IL_013f:
|
|
{
|
|
// if( isLogWindowVisible && shouldUpdateRecycledListView )
|
|
bool L_39 = __this->___isLogWindowVisible_65;
|
|
if (!L_39)
|
|
{
|
|
goto IL_0162;
|
|
}
|
|
}
|
|
{
|
|
bool L_40 = __this->___shouldUpdateRecycledListView_87;
|
|
if (!L_40)
|
|
{
|
|
goto IL_0162;
|
|
}
|
|
}
|
|
{
|
|
// recycledListView.OnLogEntriesUpdated( false );
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_41 = __this->___recycledListView_64;
|
|
DebugLogRecycledListView_OnLogEntriesUpdated_m31B75B0BEFE49F0A6C735132A24575ED537259F1(L_41, (bool)0, NULL);
|
|
// shouldUpdateRecycledListView = false;
|
|
__this->___shouldUpdateRecycledListView_87 = (bool)0;
|
|
}
|
|
|
|
IL_0162:
|
|
{
|
|
// if( indexOfLogEntryToSelectAndFocus >= 0 )
|
|
int32_t L_42 = __this->___indexOfLogEntryToSelectAndFocus_86;
|
|
if ((((int32_t)L_42) < ((int32_t)0)))
|
|
{
|
|
goto IL_0196;
|
|
}
|
|
}
|
|
{
|
|
// if( indexOfLogEntryToSelectAndFocus < indicesOfListEntriesToShow.Count )
|
|
int32_t L_43 = __this->___indexOfLogEntryToSelectAndFocus_86;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_44 = __this->___indicesOfListEntriesToShow_84;
|
|
int32_t L_45;
|
|
L_45 = DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_inline(L_44, DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
if ((((int32_t)L_43) >= ((int32_t)L_45)))
|
|
{
|
|
goto IL_018f;
|
|
}
|
|
}
|
|
{
|
|
// recycledListView.SelectAndFocusOnLogItemAtIndex( indexOfLogEntryToSelectAndFocus );
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_46 = __this->___recycledListView_64;
|
|
int32_t L_47 = __this->___indexOfLogEntryToSelectAndFocus_86;
|
|
DebugLogRecycledListView_SelectAndFocusOnLogItemAtIndex_m76E2D97A52AD52976B1A9ACCEBDC1253B9A07BC9(L_46, L_47, NULL);
|
|
}
|
|
|
|
IL_018f:
|
|
{
|
|
// indexOfLogEntryToSelectAndFocus = -1;
|
|
__this->___indexOfLogEntryToSelectAndFocus_86 = (-1);
|
|
}
|
|
|
|
IL_0196:
|
|
{
|
|
// if( showCommandSuggestions && commandInputField.isFocused && commandInputField.caretPosition != commandInputFieldPrevCaretPos )
|
|
bool L_48 = __this->___showCommandSuggestions_21;
|
|
if (!L_48)
|
|
{
|
|
goto IL_01cf;
|
|
}
|
|
}
|
|
{
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_49 = __this->___commandInputField_44;
|
|
bool L_50;
|
|
L_50 = InputField_get_isFocused_m19BD51E842077CA087824025F294C4078B2DAC50_inline(L_49, NULL);
|
|
if (!L_50)
|
|
{
|
|
goto IL_01cf;
|
|
}
|
|
}
|
|
{
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_51 = __this->___commandInputField_44;
|
|
int32_t L_52;
|
|
L_52 = InputField_get_caretPosition_mC43674CCFF5BF7D047C2D4682B2CD7DE8A179EA7(L_51, NULL);
|
|
int32_t L_53 = __this->___commandInputFieldPrevCaretPos_98;
|
|
if ((((int32_t)L_52) == ((int32_t)L_53)))
|
|
{
|
|
goto IL_01cf;
|
|
}
|
|
}
|
|
{
|
|
// RefreshCommandSuggestions( commandInputField.text );
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_54 = __this->___commandInputField_44;
|
|
String_t* L_55;
|
|
L_55 = InputField_get_text_m6E0796350FF559505E4DF17311803962699D6704_inline(L_54, NULL);
|
|
DebugLogManager_RefreshCommandSuggestions_mFCF8CC3D6641DA413AB30A52D25C37FDFC9A9383(__this, L_55, NULL);
|
|
}
|
|
|
|
IL_01cf:
|
|
{
|
|
// if( screenDimensionsChanged )
|
|
bool L_56 = __this->___screenDimensionsChanged_66;
|
|
if (!L_56)
|
|
{
|
|
goto IL_01ff;
|
|
}
|
|
}
|
|
{
|
|
// if( isLogWindowVisible )
|
|
bool L_57 = __this->___isLogWindowVisible_65;
|
|
if (!L_57)
|
|
{
|
|
goto IL_01ec;
|
|
}
|
|
}
|
|
{
|
|
// recycledListView.OnViewportHeightChanged();
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_58 = __this->___recycledListView_64;
|
|
DebugLogRecycledListView_OnViewportHeightChanged_mC257005C0AC4AAB23CAB212ABC2B3CD3311E2484(L_58, NULL);
|
|
goto IL_01f8;
|
|
}
|
|
|
|
IL_01ec:
|
|
{
|
|
// popupManager.UpdatePosition( true );
|
|
DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* L_59 = __this->___popupManager_60;
|
|
DebugLogPopup_UpdatePosition_mB0222958D440072B2379842CD02756074C379234(L_59, (bool)1, NULL);
|
|
}
|
|
|
|
IL_01f8:
|
|
{
|
|
// screenDimensionsChanged = false;
|
|
__this->___screenDimensionsChanged_66 = (bool)0;
|
|
}
|
|
|
|
IL_01ff:
|
|
{
|
|
// float logWindowWidth = logWindowTR.rect.width;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_60 = __this->___logWindowTR_40;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_61;
|
|
L_61 = RectTransform_get_rect_mC82A60F8C3805ED9833508CCC233689641207488(L_60, NULL);
|
|
V_6 = L_61;
|
|
float L_62;
|
|
L_62 = Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9((&V_6), NULL);
|
|
V_1 = L_62;
|
|
// if( !Mathf.Approximately( logWindowWidth, logWindowPreviousWidth ) )
|
|
float L_63 = V_1;
|
|
float L_64 = __this->___logWindowPreviousWidth_67;
|
|
bool L_65;
|
|
L_65 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_63, L_64, NULL);
|
|
if (L_65)
|
|
{
|
|
goto IL_036d;
|
|
}
|
|
}
|
|
{
|
|
// logWindowPreviousWidth = logWindowWidth;
|
|
float L_66 = V_1;
|
|
__this->___logWindowPreviousWidth_67 = L_66;
|
|
// if( searchbar )
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_67 = __this->___searchbar_54;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_68;
|
|
L_68 = Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A(L_67, NULL);
|
|
if (!L_68)
|
|
{
|
|
goto IL_035a;
|
|
}
|
|
}
|
|
{
|
|
// if( logWindowWidth >= topSearchbarMinWidth )
|
|
float L_69 = V_1;
|
|
float L_70 = __this->___topSearchbarMinWidth_16;
|
|
if ((!(((float)L_69) >= ((float)L_70))))
|
|
{
|
|
goto IL_02ba;
|
|
}
|
|
}
|
|
{
|
|
// if( searchbar.parent == searchbarSlotBottom )
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_71 = __this->___searchbar_54;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_72;
|
|
L_72 = Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E(L_71, NULL);
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_73 = __this->___searchbarSlotBottom_56;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_74;
|
|
L_74 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_72, L_73, NULL);
|
|
if (!L_74)
|
|
{
|
|
goto IL_035a;
|
|
}
|
|
}
|
|
{
|
|
// searchbarSlotTop.gameObject.SetActive( true );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_75 = __this->___searchbarSlotTop_55;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_76;
|
|
L_76 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_75, NULL);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_76, (bool)1, NULL);
|
|
// searchbar.SetParent( searchbarSlotTop, false );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_77 = __this->___searchbar_54;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_78 = __this->___searchbarSlotTop_55;
|
|
Transform_SetParent_m9BDD7B7476714B2D7919B10BDC22CE75C0A0A195(L_77, L_78, (bool)0, NULL);
|
|
// searchbarSlotBottom.gameObject.SetActive( false );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_79 = __this->___searchbarSlotBottom_56;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_80;
|
|
L_80 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_79, NULL);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_80, (bool)0, NULL);
|
|
// logItemsScrollRectTR.anchoredPosition = Vector2.zero;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_81 = __this->___logItemsScrollRectTR_62;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_82;
|
|
L_82 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
RectTransform_set_anchoredPosition_mF903ACE04F6959B1CD67E2B94FABC0263068F965(L_81, L_82, NULL);
|
|
// logItemsScrollRectTR.sizeDelta = logItemsScrollRectOriginalSize;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_83 = __this->___logItemsScrollRectTR_62;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_84 = __this->___logItemsScrollRectOriginalSize_63;
|
|
RectTransform_set_sizeDelta_mC9A980EA6036E6725EF24CEDF3EE80A9B2B50EE5(L_83, L_84, NULL);
|
|
goto IL_035a;
|
|
}
|
|
|
|
IL_02ba:
|
|
{
|
|
// if( searchbar.parent == searchbarSlotTop )
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_85 = __this->___searchbar_54;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_86;
|
|
L_86 = Transform_get_parent_m65354E28A4C94EC00EBCF03532F7B0718380791E(L_85, NULL);
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_87 = __this->___searchbarSlotTop_55;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_88;
|
|
L_88 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_86, L_87, NULL);
|
|
if (!L_88)
|
|
{
|
|
goto IL_035a;
|
|
}
|
|
}
|
|
{
|
|
// searchbarSlotBottom.gameObject.SetActive( true );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_89 = __this->___searchbarSlotBottom_56;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_90;
|
|
L_90 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_89, NULL);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_90, (bool)1, NULL);
|
|
// searchbar.SetParent( searchbarSlotBottom, false );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_91 = __this->___searchbar_54;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_92 = __this->___searchbarSlotBottom_56;
|
|
Transform_SetParent_m9BDD7B7476714B2D7919B10BDC22CE75C0A0A195(L_91, L_92, (bool)0, NULL);
|
|
// searchbarSlotTop.gameObject.SetActive( false );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_93 = __this->___searchbarSlotTop_55;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_94;
|
|
L_94 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_93, NULL);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_94, (bool)0, NULL);
|
|
// float searchbarHeight = searchbarSlotBottom.sizeDelta.y;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_95 = __this->___searchbarSlotBottom_56;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_96;
|
|
L_96 = RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB(L_95, NULL);
|
|
float L_97 = L_96.___y_1;
|
|
V_7 = L_97;
|
|
// logItemsScrollRectTR.anchoredPosition = new Vector2( 0f, searchbarHeight * -0.5f );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_98 = __this->___logItemsScrollRectTR_62;
|
|
float L_99 = V_7;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_100;
|
|
memset((&L_100), 0, sizeof(L_100));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_100), (0.0f), ((float)il2cpp_codegen_multiply(L_99, (-0.5f))), /*hidden argument*/NULL);
|
|
RectTransform_set_anchoredPosition_mF903ACE04F6959B1CD67E2B94FABC0263068F965(L_98, L_100, NULL);
|
|
// logItemsScrollRectTR.sizeDelta = logItemsScrollRectOriginalSize - new Vector2( 0f, searchbarHeight );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_101 = __this->___logItemsScrollRectTR_62;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_102 = __this->___logItemsScrollRectOriginalSize_63;
|
|
float L_103 = V_7;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_104;
|
|
memset((&L_104), 0, sizeof(L_104));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_104), (0.0f), L_103, /*hidden argument*/NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_105;
|
|
L_105 = Vector2_op_Subtraction_m44475FCDAD2DA2F98D78A6625EC2DCDFE8803837_inline(L_102, L_104, NULL);
|
|
RectTransform_set_sizeDelta_mC9A980EA6036E6725EF24CEDF3EE80A9B2B50EE5(L_101, L_105, NULL);
|
|
}
|
|
|
|
IL_035a:
|
|
{
|
|
// if( isLogWindowVisible )
|
|
bool L_106 = __this->___isLogWindowVisible_65;
|
|
if (!L_106)
|
|
{
|
|
goto IL_036d;
|
|
}
|
|
}
|
|
{
|
|
// recycledListView.OnViewportWidthChanged();
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_107 = __this->___recycledListView_64;
|
|
DebugLogRecycledListView_OnViewportWidthChanged_mC15FBC039660C721E52590BFA3E6A08320AF6C4D(L_107, NULL);
|
|
}
|
|
|
|
IL_036d:
|
|
{
|
|
// if( snapToBottom )
|
|
bool L_108 = __this->___snapToBottom_78;
|
|
if (!L_108)
|
|
{
|
|
goto IL_03a0;
|
|
}
|
|
}
|
|
{
|
|
// logItemsScrollRect.verticalNormalizedPosition = 0f;
|
|
ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* L_109 = __this->___logItemsScrollRect_61;
|
|
ScrollRect_set_verticalNormalizedPosition_m4AF461113925E6710BF04F46A49CF1F856F7738C(L_109, (0.0f), NULL);
|
|
// if( snapToBottomButton.activeSelf )
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_110 = __this->___snapToBottomButton_58;
|
|
bool L_111;
|
|
L_111 = GameObject_get_activeSelf_m4F3E5240E138B66AAA080EA30759A3D0517DA368(L_110, NULL);
|
|
if (!L_111)
|
|
{
|
|
goto IL_03e8;
|
|
}
|
|
}
|
|
{
|
|
// snapToBottomButton.SetActive( false );
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_112 = __this->___snapToBottomButton_58;
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_112, (bool)0, NULL);
|
|
goto IL_03e8;
|
|
}
|
|
|
|
IL_03a0:
|
|
{
|
|
// float scrollPos = logItemsScrollRect.verticalNormalizedPosition;
|
|
ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* L_113 = __this->___logItemsScrollRect_61;
|
|
float L_114;
|
|
L_114 = ScrollRect_get_verticalNormalizedPosition_m4FE766F04272C1805FDE2A4B72D80F6190841FA1(L_113, NULL);
|
|
V_8 = L_114;
|
|
// if( snapToBottomButton.activeSelf != ( scrollPos > 1E-6f && scrollPos < 0.9999f ) )
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_115 = __this->___snapToBottomButton_58;
|
|
bool L_116;
|
|
L_116 = GameObject_get_activeSelf_m4F3E5240E138B66AAA080EA30759A3D0517DA368(L_115, NULL);
|
|
float L_117 = V_8;
|
|
G_B50_0 = L_116;
|
|
if ((!(((float)L_117) > ((float)(9.99999997E-07f)))))
|
|
{
|
|
G_B51_0 = L_116;
|
|
goto IL_03cc;
|
|
}
|
|
}
|
|
{
|
|
float L_118 = V_8;
|
|
G_B52_0 = ((((float)L_118) < ((float)(0.999899983f)))? 1 : 0);
|
|
G_B52_1 = G_B50_0;
|
|
goto IL_03cd;
|
|
}
|
|
|
|
IL_03cc:
|
|
{
|
|
G_B52_0 = 0;
|
|
G_B52_1 = G_B51_0;
|
|
}
|
|
|
|
IL_03cd:
|
|
{
|
|
if ((((int32_t)G_B52_1) == ((int32_t)G_B52_0)))
|
|
{
|
|
goto IL_03e8;
|
|
}
|
|
}
|
|
{
|
|
// snapToBottomButton.SetActive( !snapToBottomButton.activeSelf );
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_119 = __this->___snapToBottomButton_58;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_120 = __this->___snapToBottomButton_58;
|
|
bool L_121;
|
|
L_121 = GameObject_get_activeSelf_m4F3E5240E138B66AAA080EA30759A3D0517DA368(L_120, NULL);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_119, (bool)((((int32_t)L_121) == ((int32_t)0))? 1 : 0), NULL);
|
|
}
|
|
|
|
IL_03e8:
|
|
{
|
|
// if( isLogWindowVisible && commandInputField.isFocused && commandHistory.Count > 0 )
|
|
bool L_122 = __this->___isLogWindowVisible_65;
|
|
if (!L_122)
|
|
{
|
|
goto IL_051c;
|
|
}
|
|
}
|
|
{
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_123 = __this->___commandInputField_44;
|
|
bool L_124;
|
|
L_124 = InputField_get_isFocused_m19BD51E842077CA087824025F294C4078B2DAC50_inline(L_123, NULL);
|
|
if (!L_124)
|
|
{
|
|
goto IL_051c;
|
|
}
|
|
}
|
|
{
|
|
CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A* L_125 = __this->___commandHistory_102;
|
|
int32_t L_126;
|
|
L_126 = CircularBuffer_1_get_Count_m14C7581AC31603481ACBF6A183A4A466EE202205_inline(L_125, CircularBuffer_1_get_Count_m14C7581AC31603481ACBF6A183A4A466EE202205_RuntimeMethod_var);
|
|
if ((((int32_t)L_126) <= ((int32_t)0)))
|
|
{
|
|
goto IL_051c;
|
|
}
|
|
}
|
|
{
|
|
// if( Input.GetKeyDown( KeyCode.UpArrow ) )
|
|
bool L_127;
|
|
L_127 = Input_GetKeyDown_mB237DEA6244132670D38990BAB77D813FBB028D2(((int32_t)273), NULL);
|
|
if (!L_127)
|
|
{
|
|
goto IL_04a8;
|
|
}
|
|
}
|
|
{
|
|
// if( commandHistoryIndex == -1 )
|
|
int32_t L_128 = __this->___commandHistoryIndex_103;
|
|
if ((!(((uint32_t)L_128) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0452;
|
|
}
|
|
}
|
|
{
|
|
// commandHistoryIndex = commandHistory.Count - 1;
|
|
CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A* L_129 = __this->___commandHistory_102;
|
|
int32_t L_130;
|
|
L_130 = CircularBuffer_1_get_Count_m14C7581AC31603481ACBF6A183A4A466EE202205_inline(L_129, CircularBuffer_1_get_Count_m14C7581AC31603481ACBF6A183A4A466EE202205_RuntimeMethod_var);
|
|
__this->___commandHistoryIndex_103 = ((int32_t)il2cpp_codegen_subtract(L_130, 1));
|
|
// unfinishedCommand = commandInputField.text;
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_131 = __this->___commandInputField_44;
|
|
String_t* L_132;
|
|
L_132 = InputField_get_text_m6E0796350FF559505E4DF17311803962699D6704_inline(L_131, NULL);
|
|
__this->___unfinishedCommand_104 = L_132;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___unfinishedCommand_104), (void*)L_132);
|
|
goto IL_0470;
|
|
}
|
|
|
|
IL_0452:
|
|
{
|
|
// else if( --commandHistoryIndex < 0 )
|
|
int32_t L_133 = __this->___commandHistoryIndex_103;
|
|
V_9 = ((int32_t)il2cpp_codegen_subtract(L_133, 1));
|
|
int32_t L_134 = V_9;
|
|
__this->___commandHistoryIndex_103 = L_134;
|
|
int32_t L_135 = V_9;
|
|
if ((((int32_t)L_135) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0470;
|
|
}
|
|
}
|
|
{
|
|
// commandHistoryIndex = 0;
|
|
__this->___commandHistoryIndex_103 = 0;
|
|
}
|
|
|
|
IL_0470:
|
|
{
|
|
// commandInputField.text = commandHistory[commandHistoryIndex];
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_136 = __this->___commandInputField_44;
|
|
CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A* L_137 = __this->___commandHistory_102;
|
|
int32_t L_138 = __this->___commandHistoryIndex_103;
|
|
String_t* L_139;
|
|
L_139 = CircularBuffer_1_get_Item_m9F70975FC739CFFAB235BC282293A7E8290D96A1(L_137, L_138, CircularBuffer_1_get_Item_m9F70975FC739CFFAB235BC282293A7E8290D96A1_RuntimeMethod_var);
|
|
InputField_set_text_m28B1C806BBCAC44F3ACCDC3B550509CA0C7D257F(L_136, L_139, NULL);
|
|
// commandInputField.caretPosition = commandInputField.text.Length;
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_140 = __this->___commandInputField_44;
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_141 = __this->___commandInputField_44;
|
|
String_t* L_142;
|
|
L_142 = InputField_get_text_m6E0796350FF559505E4DF17311803962699D6704_inline(L_141, NULL);
|
|
int32_t L_143;
|
|
L_143 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_142, NULL);
|
|
InputField_set_caretPosition_mF502AA3301C39D4397C7BF809D1F3A18D0603BD7(L_140, L_143, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_04a8:
|
|
{
|
|
// else if( Input.GetKeyDown( KeyCode.DownArrow ) && commandHistoryIndex != -1 )
|
|
bool L_144;
|
|
L_144 = Input_GetKeyDown_mB237DEA6244132670D38990BAB77D813FBB028D2(((int32_t)274), NULL);
|
|
if (!L_144)
|
|
{
|
|
goto IL_051c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_145 = __this->___commandHistoryIndex_103;
|
|
if ((((int32_t)L_145) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_051c;
|
|
}
|
|
}
|
|
{
|
|
// if( ++commandHistoryIndex < commandHistory.Count )
|
|
int32_t L_146 = __this->___commandHistoryIndex_103;
|
|
V_9 = ((int32_t)il2cpp_codegen_add(L_146, 1));
|
|
int32_t L_147 = V_9;
|
|
__this->___commandHistoryIndex_103 = L_147;
|
|
int32_t L_148 = V_9;
|
|
CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A* L_149 = __this->___commandHistory_102;
|
|
int32_t L_150;
|
|
L_150 = CircularBuffer_1_get_Count_m14C7581AC31603481ACBF6A183A4A466EE202205_inline(L_149, CircularBuffer_1_get_Count_m14C7581AC31603481ACBF6A183A4A466EE202205_RuntimeMethod_var);
|
|
if ((((int32_t)L_148) >= ((int32_t)L_150)))
|
|
{
|
|
goto IL_04fb;
|
|
}
|
|
}
|
|
{
|
|
// commandInputField.text = commandHistory[commandHistoryIndex];
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_151 = __this->___commandInputField_44;
|
|
CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A* L_152 = __this->___commandHistory_102;
|
|
int32_t L_153 = __this->___commandHistoryIndex_103;
|
|
String_t* L_154;
|
|
L_154 = CircularBuffer_1_get_Item_m9F70975FC739CFFAB235BC282293A7E8290D96A1(L_152, L_153, CircularBuffer_1_get_Item_m9F70975FC739CFFAB235BC282293A7E8290D96A1_RuntimeMethod_var);
|
|
InputField_set_text_m28B1C806BBCAC44F3ACCDC3B550509CA0C7D257F(L_151, L_154, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_04fb:
|
|
{
|
|
// commandHistoryIndex = -1;
|
|
__this->___commandHistoryIndex_103 = (-1);
|
|
// commandInputField.text = unfinishedCommand ?? string.Empty;
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_155 = __this->___commandInputField_44;
|
|
String_t* L_156 = __this->___unfinishedCommand_104;
|
|
String_t* L_157 = L_156;
|
|
G_B68_0 = L_157;
|
|
G_B68_1 = L_155;
|
|
if (L_157)
|
|
{
|
|
G_B69_0 = L_157;
|
|
G_B69_1 = L_155;
|
|
goto IL_0517;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_158 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
G_B69_0 = L_158;
|
|
G_B69_1 = G_B68_1;
|
|
}
|
|
|
|
IL_0517:
|
|
{
|
|
InputField_set_text_m28B1C806BBCAC44F3ACCDC3B550509CA0C7D257F(G_B69_1, G_B69_0, NULL);
|
|
}
|
|
|
|
IL_051c:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::ShowLogWindow()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_ShowLogWindow_m63344BFB6A91AA1AF6E2706E403EBCF3AE394905 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// logWindowCanvasGroup.interactable = true;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_0 = __this->___logWindowCanvasGroup_59;
|
|
CanvasGroup_set_interactable_m86928BB0894EF3F06BC7BE63594272FBA0DAC757(L_0, (bool)1, NULL);
|
|
// logWindowCanvasGroup.blocksRaycasts = true;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_1 = __this->___logWindowCanvasGroup_59;
|
|
CanvasGroup_set_blocksRaycasts_m6C17F35782D16AE3FC42FCD1A4D68E1C4A4776E0(L_1, (bool)1, NULL);
|
|
// logWindowCanvasGroup.alpha = 1f;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_2 = __this->___logWindowCanvasGroup_59;
|
|
CanvasGroup_set_alpha_m5C06839316D948BB4F75ED72C87FA1F1A20C333F(L_2, (1.0f), NULL);
|
|
// popupManager.Hide();
|
|
DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* L_3 = __this->___popupManager_60;
|
|
DebugLogPopup_Hide_mA3055E290BA97DFAB66E85D942F0656101926F8C(L_3, NULL);
|
|
// recycledListView.OnLogEntriesUpdated( true );
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_4 = __this->___recycledListView_64;
|
|
DebugLogRecycledListView_OnLogEntriesUpdated_m31B75B0BEFE49F0A6C735132A24575ED537259F1(L_4, (bool)1, NULL);
|
|
// isLogWindowVisible = true;
|
|
__this->___isLogWindowVisible_65 = (bool)1;
|
|
// if( OnLogWindowShown != null )
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_5 = __this->___OnLogWindowShown_108;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
// OnLogWindowShown();
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_6 = __this->___OnLogWindowShown_108;
|
|
Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(L_6, NULL);
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::HideLogWindow()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_HideLogWindow_mDA216839443A72537E963035E9DEC6188631E3D2 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// logWindowCanvasGroup.interactable = false;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_0 = __this->___logWindowCanvasGroup_59;
|
|
CanvasGroup_set_interactable_m86928BB0894EF3F06BC7BE63594272FBA0DAC757(L_0, (bool)0, NULL);
|
|
// logWindowCanvasGroup.blocksRaycasts = false;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_1 = __this->___logWindowCanvasGroup_59;
|
|
CanvasGroup_set_blocksRaycasts_m6C17F35782D16AE3FC42FCD1A4D68E1C4A4776E0(L_1, (bool)0, NULL);
|
|
// logWindowCanvasGroup.alpha = 0f;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_2 = __this->___logWindowCanvasGroup_59;
|
|
CanvasGroup_set_alpha_m5C06839316D948BB4F75ED72C87FA1F1A20C333F(L_2, (0.0f), NULL);
|
|
// if( commandInputField.isFocused )
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_3 = __this->___commandInputField_44;
|
|
bool L_4;
|
|
L_4 = InputField_get_isFocused_m19BD51E842077CA087824025F294C4078B2DAC50_inline(L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
// commandInputField.DeactivateInputField();
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_5 = __this->___commandInputField_44;
|
|
InputField_DeactivateInputField_m58D0B3BF095094A0963A9CE8BABF1979F7D1254D(L_5, NULL);
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
// popupManager.Show();
|
|
DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* L_6 = __this->___popupManager_60;
|
|
DebugLogPopup_Show_m7768CAEB2D2EF3373F587FF5D634BDDD3E2E68E4(L_6, NULL);
|
|
// isLogWindowVisible = false;
|
|
__this->___isLogWindowVisible_65 = (bool)0;
|
|
// if( OnLogWindowHidden != null )
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_7 = __this->___OnLogWindowHidden_109;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
// OnLogWindowHidden();
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_8 = __this->___OnLogWindowHidden_109;
|
|
Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(L_8, NULL);
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Char IngameDebugConsole.DebugLogManager::OnValidateCommand(System.String,System.Int32,System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar DebugLogManager_OnValidateCommand_m47B17FC3C7B2322739D37ED0B74DD3866EAC892B (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, String_t* ___text0, int32_t ___charIndex1, Il2CppChar ___addedChar2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CircularBuffer_1_Add_m4CCBE4F7A19B2F77BD1935D7A0DBE89B9A51217B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CircularBuffer_1_get_Count_m14C7581AC31603481ACBF6A183A4A466EE202205_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CircularBuffer_1_get_Item_m9F70975FC739CFFAB235BC282293A7E8290D96A1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
// if( addedChar == '\t' ) // Autocomplete attempt
|
|
Il2CppChar L_0 = ___addedChar2;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)9)))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
// if( !string.IsNullOrEmpty( text ) )
|
|
String_t* L_1 = ___text0;
|
|
bool L_2;
|
|
L_2 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_1, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
// string autoCompletedCommand = DebugLogConsole.GetAutoCompleteCommand( text );
|
|
String_t* L_3 = ___text0;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
String_t* L_4;
|
|
L_4 = DebugLogConsole_GetAutoCompleteCommand_m91ECE63056F5D4631D17288E6D2579602F717C49(L_3, NULL);
|
|
V_0 = L_4;
|
|
// if( !string.IsNullOrEmpty( autoCompletedCommand ) )
|
|
String_t* L_5 = V_0;
|
|
bool L_6;
|
|
L_6 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_5, NULL);
|
|
if (L_6)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
// commandInputField.text = autoCompletedCommand;
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_7 = __this->___commandInputField_44;
|
|
String_t* L_8 = V_0;
|
|
InputField_set_text_m28B1C806BBCAC44F3ACCDC3B550509CA0C7D257F(L_7, L_8, NULL);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
// return '\0';
|
|
return 0;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
// else if( addedChar == '\n' ) // Command is submitted
|
|
Il2CppChar L_9 = ___addedChar2;
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)10)))))
|
|
{
|
|
goto IL_00a6;
|
|
}
|
|
}
|
|
{
|
|
// if( clearCommandAfterExecution )
|
|
bool L_10 = __this->___clearCommandAfterExecution_19;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0047;
|
|
}
|
|
}
|
|
{
|
|
// commandInputField.text = string.Empty;
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_11 = __this->___commandInputField_44;
|
|
String_t* L_12 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
InputField_set_text_m28B1C806BBCAC44F3ACCDC3B550509CA0C7D257F(L_11, L_12, NULL);
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
// if( text.Length > 0 )
|
|
String_t* L_13 = ___text0;
|
|
int32_t L_14;
|
|
L_14 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_13, NULL);
|
|
if ((((int32_t)L_14) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00a4;
|
|
}
|
|
}
|
|
{
|
|
// if( commandHistory.Count == 0 || commandHistory[commandHistory.Count - 1] != text )
|
|
CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A* L_15 = __this->___commandHistory_102;
|
|
int32_t L_16;
|
|
L_16 = CircularBuffer_1_get_Count_m14C7581AC31603481ACBF6A183A4A466EE202205_inline(L_15, CircularBuffer_1_get_Count_m14C7581AC31603481ACBF6A183A4A466EE202205_RuntimeMethod_var);
|
|
if (!L_16)
|
|
{
|
|
goto IL_007d;
|
|
}
|
|
}
|
|
{
|
|
CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A* L_17 = __this->___commandHistory_102;
|
|
CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A* L_18 = __this->___commandHistory_102;
|
|
int32_t L_19;
|
|
L_19 = CircularBuffer_1_get_Count_m14C7581AC31603481ACBF6A183A4A466EE202205_inline(L_18, CircularBuffer_1_get_Count_m14C7581AC31603481ACBF6A183A4A466EE202205_RuntimeMethod_var);
|
|
String_t* L_20;
|
|
L_20 = CircularBuffer_1_get_Item_m9F70975FC739CFFAB235BC282293A7E8290D96A1(L_17, ((int32_t)il2cpp_codegen_subtract(L_19, 1)), CircularBuffer_1_get_Item_m9F70975FC739CFFAB235BC282293A7E8290D96A1_RuntimeMethod_var);
|
|
String_t* L_21 = ___text0;
|
|
bool L_22;
|
|
L_22 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_20, L_21, NULL);
|
|
if (!L_22)
|
|
{
|
|
goto IL_0089;
|
|
}
|
|
}
|
|
|
|
IL_007d:
|
|
{
|
|
// commandHistory.Add( text );
|
|
CircularBuffer_1_t6F1B957F4957913743FE1DFC2F4F0B05E471128A* L_23 = __this->___commandHistory_102;
|
|
String_t* L_24 = ___text0;
|
|
CircularBuffer_1_Add_m4CCBE4F7A19B2F77BD1935D7A0DBE89B9A51217B(L_23, L_24, CircularBuffer_1_Add_m4CCBE4F7A19B2F77BD1935D7A0DBE89B9A51217B_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
// commandHistoryIndex = -1;
|
|
__this->___commandHistoryIndex_103 = (-1);
|
|
// unfinishedCommand = null;
|
|
__this->___unfinishedCommand_104 = (String_t*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___unfinishedCommand_104), (void*)(String_t*)NULL);
|
|
// DebugLogConsole.ExecuteCommand( text );
|
|
String_t* L_25 = ___text0;
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
DebugLogConsole_ExecuteCommand_m09EFF4CAD43DDF1822589BCA5466F2BF3B02CD21(L_25, NULL);
|
|
// SetSnapToBottom( true );
|
|
DebugLogManager_SetSnapToBottom_m869F0D298244C064CF9C7611B3D11F198433D6BC_inline(__this, (bool)1, NULL);
|
|
}
|
|
|
|
IL_00a4:
|
|
{
|
|
// return '\0';
|
|
return 0;
|
|
}
|
|
|
|
IL_00a6:
|
|
{
|
|
// return addedChar;
|
|
Il2CppChar L_26 = ___addedChar2;
|
|
return L_26;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::ReceivedLog(System.String,System.String,UnityEngine.LogType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_ReceivedLog_mA4C27364E589E7C61714AB54E614454C046317CA (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, String_t* ___logString0, String_t* ___stackTrace1, int32_t ___logType2, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DynamicCircularBuffer_1_Add_m53EC77E0459887173ED94AD5A527032DD96B430B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1466CD4A4B2CBC63C1880CF7F1F3227CD9761932);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAC7DDA0E9505413BF55D5660BE2BF7E8227C3F6A);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
int32_t V_2 = 0;
|
|
RuntimeObject* V_3 = NULL;
|
|
bool V_4 = false;
|
|
{
|
|
// int logLength = logString.Length;
|
|
String_t* L_0 = ___logString0;
|
|
int32_t L_1;
|
|
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
|
|
V_0 = L_1;
|
|
// if( stackTrace == null )
|
|
String_t* L_2 = ___stackTrace1;
|
|
if (L_2)
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
// if( logLength > maxLogLength )
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4 = __this->___maxLogLength_25;
|
|
if ((((int32_t)L_3) <= ((int32_t)L_4)))
|
|
{
|
|
goto IL_00df;
|
|
}
|
|
}
|
|
{
|
|
// logString = logString.Substring( 0, maxLogLength - 11 ) + "<truncated>";
|
|
String_t* L_5 = ___logString0;
|
|
int32_t L_6 = __this->___maxLogLength_25;
|
|
String_t* L_7;
|
|
L_7 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_5, 0, ((int32_t)il2cpp_codegen_subtract(L_6, ((int32_t)11))), NULL);
|
|
String_t* L_8;
|
|
L_8 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_7, _stringLiteral1466CD4A4B2CBC63C1880CF7F1F3227CD9761932, NULL);
|
|
___logString0 = L_8;
|
|
goto IL_00df;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
// logLength += stackTrace.Length;
|
|
int32_t L_9 = V_0;
|
|
String_t* L_10 = ___stackTrace1;
|
|
int32_t L_11;
|
|
L_11 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_10, NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_9, L_11));
|
|
// if( logLength > maxLogLength )
|
|
int32_t L_12 = V_0;
|
|
int32_t L_13 = __this->___maxLogLength_25;
|
|
if ((((int32_t)L_12) <= ((int32_t)L_13)))
|
|
{
|
|
goto IL_00df;
|
|
}
|
|
}
|
|
{
|
|
// int halfMaxLogLength = maxLogLength / 2;
|
|
int32_t L_14 = __this->___maxLogLength_25;
|
|
V_2 = ((int32_t)(L_14/2));
|
|
// if( logString.Length >= halfMaxLogLength )
|
|
String_t* L_15 = ___logString0;
|
|
int32_t L_16;
|
|
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
|
|
int32_t L_17 = V_2;
|
|
if ((((int32_t)L_16) < ((int32_t)L_17)))
|
|
{
|
|
goto IL_00bc;
|
|
}
|
|
}
|
|
{
|
|
// if( stackTrace.Length >= halfMaxLogLength )
|
|
String_t* L_18 = ___stackTrace1;
|
|
int32_t L_19;
|
|
L_19 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_18, NULL);
|
|
int32_t L_20 = V_2;
|
|
if ((((int32_t)L_19) < ((int32_t)L_20)))
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
// logString = logString.Substring( 0, halfMaxLogLength - 11 ) + "<truncated>";
|
|
String_t* L_21 = ___logString0;
|
|
int32_t L_22 = V_2;
|
|
String_t* L_23;
|
|
L_23 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_21, 0, ((int32_t)il2cpp_codegen_subtract(L_22, ((int32_t)11))), NULL);
|
|
String_t* L_24;
|
|
L_24 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_23, _stringLiteral1466CD4A4B2CBC63C1880CF7F1F3227CD9761932, NULL);
|
|
___logString0 = L_24;
|
|
// stackTrace = stackTrace.Substring( 0, halfMaxLogLength - 12 ) + "<truncated>\n";
|
|
String_t* L_25 = ___stackTrace1;
|
|
int32_t L_26 = V_2;
|
|
String_t* L_27;
|
|
L_27 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_25, 0, ((int32_t)il2cpp_codegen_subtract(L_26, ((int32_t)12))), NULL);
|
|
String_t* L_28;
|
|
L_28 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_27, _stringLiteralAC7DDA0E9505413BF55D5660BE2BF7E8227C3F6A, NULL);
|
|
___stackTrace1 = L_28;
|
|
goto IL_00df;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
// logString = logString.Substring( 0, maxLogLength - stackTrace.Length - 11 ) + "<truncated>";
|
|
String_t* L_29 = ___logString0;
|
|
int32_t L_30 = __this->___maxLogLength_25;
|
|
String_t* L_31 = ___stackTrace1;
|
|
int32_t L_32;
|
|
L_32 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_31, NULL);
|
|
String_t* L_33;
|
|
L_33 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_29, 0, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_30, L_32)), ((int32_t)11))), NULL);
|
|
String_t* L_34;
|
|
L_34 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_33, _stringLiteral1466CD4A4B2CBC63C1880CF7F1F3227CD9761932, NULL);
|
|
___logString0 = L_34;
|
|
goto IL_00df;
|
|
}
|
|
|
|
IL_00bc:
|
|
{
|
|
// stackTrace = stackTrace.Substring( 0, maxLogLength - logString.Length - 12 ) + "<truncated>\n";
|
|
String_t* L_35 = ___stackTrace1;
|
|
int32_t L_36 = __this->___maxLogLength_25;
|
|
String_t* L_37 = ___logString0;
|
|
int32_t L_38;
|
|
L_38 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_37, NULL);
|
|
String_t* L_39;
|
|
L_39 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_35, 0, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_36, L_38)), ((int32_t)12))), NULL);
|
|
String_t* L_40;
|
|
L_40 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_39, _stringLiteralAC7DDA0E9505413BF55D5660BE2BF7E8227C3F6A, NULL);
|
|
___stackTrace1 = L_40;
|
|
}
|
|
|
|
IL_00df:
|
|
{
|
|
// QueuedDebugLogEntry queuedLogEntry = new QueuedDebugLogEntry( logString, stackTrace, logType );
|
|
String_t* L_41 = ___logString0;
|
|
String_t* L_42 = ___stackTrace1;
|
|
int32_t L_43 = ___logType2;
|
|
QueuedDebugLogEntry__ctor_m4C3374C16FCD4D5BB8A4224E360B018ACBBA4ACE((&V_1), L_41, L_42, L_43, NULL);
|
|
// lock( logEntriesLock )
|
|
RuntimeObject* L_44 = __this->___logEntriesLock_89;
|
|
V_3 = L_44;
|
|
V_4 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0109:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
bool L_45 = V_4;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0113;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_46 = V_3;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_46, NULL);
|
|
}
|
|
|
|
IL_0113:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
RuntimeObject* L_47 = V_3;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_47, (&V_4), NULL);
|
|
// queuedLogEntries.Add( queuedLogEntry );
|
|
DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* L_48 = __this->___queuedLogEntries_88;
|
|
QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C L_49 = V_1;
|
|
DynamicCircularBuffer_1_Add_m53EC77E0459887173ED94AD5A527032DD96B430B(L_48, L_49, DynamicCircularBuffer_1_Add_m53EC77E0459887173ED94AD5A527032DD96B430B_RuntimeMethod_var);
|
|
// }
|
|
goto IL_0114;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0114:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::ProcessLog(IngameDebugConsole.QueuedDebugLogEntry)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_ProcessLog_mD0F3EAF79AA2A64B5F45AC2859D88311560857C4 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C ___queuedLogEntry0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_IndexOf_mDAF87C3A6990C857499B37310F685BA31A1A9C54_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_set_Item_m44047632959125DE52AF27BC23E7AABABA65348F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m2875CB0A26B6AFAEA5E60272D2D0E84EB907F756_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m84343D394ED12686F2F8600785AAF1BAE5DBCE6B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m389487D9CAE4D83EF49F6429AF9024C6437CEF1A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m285FF9023DA9D5F2308CB2B578F0DFF7025F0363_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mB84FC21545F3DE5FB7FAE8E6FA0C3F0AA2AF0E8F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m0B75D5B86C4664A84341E758B9F1661B8E1CE0D7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m6E2E1480A05AB8BB307A64F6A0DA82368C1A2B6F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
int32_t V_4 = 0;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
{
|
|
// LogType logType = queuedLogEntry.logType;
|
|
QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C L_0 = ___queuedLogEntry0;
|
|
int32_t L_1 = L_0.___logType_2;
|
|
V_0 = L_1;
|
|
// if( pooledLogEntries.Count > 0 )
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_2 = __this->___pooledLogEntries_100;
|
|
int32_t L_3;
|
|
L_3 = List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_inline(L_2, List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_RuntimeMethod_var);
|
|
if ((((int32_t)L_3) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
// logEntry = pooledLogEntries[pooledLogEntries.Count - 1];
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_4 = __this->___pooledLogEntries_100;
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_5 = __this->___pooledLogEntries_100;
|
|
int32_t L_6;
|
|
L_6 = List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_inline(L_5, List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_RuntimeMethod_var);
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_7;
|
|
L_7 = List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78(L_4, ((int32_t)il2cpp_codegen_subtract(L_6, 1)), List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
V_1 = L_7;
|
|
// pooledLogEntries.RemoveAt( pooledLogEntries.Count - 1 );
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_8 = __this->___pooledLogEntries_100;
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_9 = __this->___pooledLogEntries_100;
|
|
int32_t L_10;
|
|
L_10 = List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_inline(L_9, List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_RuntimeMethod_var);
|
|
List_1_RemoveAt_m0B75D5B86C4664A84341E758B9F1661B8E1CE0D7(L_8, ((int32_t)il2cpp_codegen_subtract(L_10, 1)), List_1_RemoveAt_m0B75D5B86C4664A84341E758B9F1661B8E1CE0D7_RuntimeMethod_var);
|
|
goto IL_004e;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
// logEntry = new DebugLogEntry();
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_11 = (DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD*)il2cpp_codegen_object_new(DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD_il2cpp_TypeInfo_var);
|
|
DebugLogEntry__ctor_mBE7464DD3CDAACF0FD7B0C097A1CEBEB436B774B(L_11, NULL);
|
|
V_1 = L_11;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
// logEntry.Initialize( queuedLogEntry.logString, queuedLogEntry.stackTrace );
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_12 = V_1;
|
|
QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C L_13 = ___queuedLogEntry0;
|
|
String_t* L_14 = L_13.___logString_0;
|
|
QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C L_15 = ___queuedLogEntry0;
|
|
String_t* L_16 = L_15.___stackTrace_1;
|
|
DebugLogEntry_Initialize_m692E8607E734476B69652DF35B19E3456574A190(L_12, L_14, L_16, NULL);
|
|
// bool isEntryInCollapsedEntryList = collapsedLogEntriesMap.TryGetValue( logEntry, out logEntryIndex );
|
|
Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22* L_17 = __this->___collapsedLogEntriesMap_81;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_18 = V_1;
|
|
bool L_19;
|
|
L_19 = Dictionary_2_TryGetValue_m2875CB0A26B6AFAEA5E60272D2D0E84EB907F756(L_17, L_18, (&V_2), Dictionary_2_TryGetValue_m2875CB0A26B6AFAEA5E60272D2D0E84EB907F756_RuntimeMethod_var);
|
|
V_3 = L_19;
|
|
// if( !isEntryInCollapsedEntryList )
|
|
bool L_20 = V_3;
|
|
if (L_20)
|
|
{
|
|
goto IL_00c9;
|
|
}
|
|
}
|
|
{
|
|
// logEntry.logTypeSpriteRepresentation = logSpriteRepresentations[logType];
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_21 = V_1;
|
|
Dictionary_2_tA965C5A4E6C3C31E96C82CD6C43F5283BAAB30F7* L_22 = __this->___logSpriteRepresentations_33;
|
|
int32_t L_23 = V_0;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_24;
|
|
L_24 = Dictionary_2_get_Item_m84343D394ED12686F2F8600785AAF1BAE5DBCE6B(L_22, L_23, Dictionary_2_get_Item_m84343D394ED12686F2F8600785AAF1BAE5DBCE6B_RuntimeMethod_var);
|
|
L_21->___logTypeSpriteRepresentation_4 = L_24;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_21->___logTypeSpriteRepresentation_4), (void*)L_24);
|
|
// logEntryIndex = collapsedLogEntries.Count;
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_25 = __this->___collapsedLogEntries_79;
|
|
int32_t L_26;
|
|
L_26 = List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_inline(L_25, List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_RuntimeMethod_var);
|
|
V_2 = L_26;
|
|
// collapsedLogEntries.Add( logEntry );
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_27 = __this->___collapsedLogEntries_79;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_28 = V_1;
|
|
List_1_Add_mB84FC21545F3DE5FB7FAE8E6FA0C3F0AA2AF0E8F_inline(L_27, L_28, List_1_Add_mB84FC21545F3DE5FB7FAE8E6FA0C3F0AA2AF0E8F_RuntimeMethod_var);
|
|
// collapsedLogEntriesMap[logEntry] = logEntryIndex;
|
|
Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22* L_29 = __this->___collapsedLogEntriesMap_81;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_30 = V_1;
|
|
int32_t L_31 = V_2;
|
|
Dictionary_2_set_Item_m389487D9CAE4D83EF49F6429AF9024C6437CEF1A(L_29, L_30, L_31, Dictionary_2_set_Item_m389487D9CAE4D83EF49F6429AF9024C6437CEF1A_RuntimeMethod_var);
|
|
// if( collapsedLogEntriesTimestamps != null )
|
|
List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* L_32 = __this->___collapsedLogEntriesTimestamps_80;
|
|
if (!L_32)
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
// collapsedLogEntriesTimestamps.Add( new DebugLogEntryTimestamp( localTimeUtcOffset ) );
|
|
List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* L_33 = __this->___collapsedLogEntriesTimestamps_80;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_34 = __this->___localTimeUtcOffset_106;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_35;
|
|
memset((&L_35), 0, sizeof(L_35));
|
|
DebugLogEntryTimestamp__ctor_m4078075799D0C3846D64F2E8800CB70B69ED53ED((&L_35), L_34, /*hidden argument*/NULL);
|
|
List_1_Add_m285FF9023DA9D5F2308CB2B578F0DFF7025F0363_inline(L_33, L_35, List_1_Add_m285FF9023DA9D5F2308CB2B578F0DFF7025F0363_RuntimeMethod_var);
|
|
goto IL_010f;
|
|
}
|
|
|
|
IL_00c9:
|
|
{
|
|
// pooledLogEntries.Add( logEntry );
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_36 = __this->___pooledLogEntries_100;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_37 = V_1;
|
|
List_1_Add_mB84FC21545F3DE5FB7FAE8E6FA0C3F0AA2AF0E8F_inline(L_36, L_37, List_1_Add_mB84FC21545F3DE5FB7FAE8E6FA0C3F0AA2AF0E8F_RuntimeMethod_var);
|
|
// logEntry = collapsedLogEntries[logEntryIndex];
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_38 = __this->___collapsedLogEntries_79;
|
|
int32_t L_39 = V_2;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_40;
|
|
L_40 = List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78(L_38, L_39, List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
V_1 = L_40;
|
|
// logEntry.count++;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_41 = V_1;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_42 = L_41;
|
|
int32_t L_43 = L_42->___count_5;
|
|
L_42->___count_5 = ((int32_t)il2cpp_codegen_add(L_43, 1));
|
|
// if( collapsedLogEntriesTimestamps != null )
|
|
List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* L_44 = __this->___collapsedLogEntriesTimestamps_80;
|
|
if (!L_44)
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
// collapsedLogEntriesTimestamps[logEntryIndex] = new DebugLogEntryTimestamp( localTimeUtcOffset );
|
|
List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* L_45 = __this->___collapsedLogEntriesTimestamps_80;
|
|
int32_t L_46 = V_2;
|
|
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_47 = __this->___localTimeUtcOffset_106;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_48;
|
|
memset((&L_48), 0, sizeof(L_48));
|
|
DebugLogEntryTimestamp__ctor_m4078075799D0C3846D64F2E8800CB70B69ED53ED((&L_48), L_47, /*hidden argument*/NULL);
|
|
List_1_set_Item_m6E2E1480A05AB8BB307A64F6A0DA82368C1A2B6F(L_45, L_46, L_48, List_1_set_Item_m6E2E1480A05AB8BB307A64F6A0DA82368C1A2B6F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
// uncollapsedLogEntriesIndices.Add( logEntryIndex );
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_49 = __this->___uncollapsedLogEntriesIndices_82;
|
|
int32_t L_50 = V_2;
|
|
DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4(L_49, L_50, DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4_RuntimeMethod_var);
|
|
// if( uncollapsedLogEntriesTimestamps != null )
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_51 = __this->___uncollapsedLogEntriesTimestamps_83;
|
|
if (!L_51)
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
}
|
|
{
|
|
// uncollapsedLogEntriesTimestamps.Add( collapsedLogEntriesTimestamps[logEntryIndex] );
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_52 = __this->___uncollapsedLogEntriesTimestamps_83;
|
|
List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* L_53 = __this->___collapsedLogEntriesTimestamps_80;
|
|
int32_t L_54 = V_2;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_55;
|
|
L_55 = List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8(L_53, L_54, List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8_RuntimeMethod_var);
|
|
DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855(L_52, L_55, DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
// int logEntryIndexInEntriesToShow = -1;
|
|
V_4 = (-1);
|
|
// Sprite logTypeSpriteRepresentation = logEntry.logTypeSpriteRepresentation;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_56 = V_1;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_57 = L_56->___logTypeSpriteRepresentation_4;
|
|
V_5 = L_57;
|
|
// if( isCollapseOn && isEntryInCollapsedEntryList )
|
|
bool L_58 = __this->___isCollapseOn_74;
|
|
bool L_59 = V_3;
|
|
if (!((int32_t)((int32_t)L_58&(int32_t)L_59)))
|
|
{
|
|
goto IL_01b1;
|
|
}
|
|
}
|
|
{
|
|
// if( isLogWindowVisible )
|
|
bool L_60 = __this->___isLogWindowVisible_65;
|
|
if (!L_60)
|
|
{
|
|
goto IL_026b;
|
|
}
|
|
}
|
|
{
|
|
// if( !isInSearchMode && logFilter == DebugLogFilter.All )
|
|
bool L_61 = __this->___isInSearchMode_77;
|
|
if (L_61)
|
|
{
|
|
goto IL_0170;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_62 = __this->___logFilter_75;
|
|
if ((!(((uint32_t)L_62) == ((uint32_t)7))))
|
|
{
|
|
goto IL_0170;
|
|
}
|
|
}
|
|
{
|
|
// logEntryIndexInEntriesToShow = logEntryIndex;
|
|
int32_t L_63 = V_2;
|
|
V_4 = L_63;
|
|
goto IL_017e;
|
|
}
|
|
|
|
IL_0170:
|
|
{
|
|
// logEntryIndexInEntriesToShow = indicesOfListEntriesToShow.IndexOf( logEntryIndex );
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_64 = __this->___indicesOfListEntriesToShow_84;
|
|
int32_t L_65 = V_2;
|
|
int32_t L_66;
|
|
L_66 = DebugLogIndexList_1_IndexOf_mDAF87C3A6990C857499B37310F685BA31A1A9C54(L_64, L_65, DebugLogIndexList_1_IndexOf_mDAF87C3A6990C857499B37310F685BA31A1A9C54_RuntimeMethod_var);
|
|
V_4 = L_66;
|
|
}
|
|
|
|
IL_017e:
|
|
{
|
|
// if( timestampsOfListEntriesToShow != null )
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_67 = __this->___timestampsOfListEntriesToShow_85;
|
|
if (!L_67)
|
|
{
|
|
goto IL_019f;
|
|
}
|
|
}
|
|
{
|
|
// timestampsOfListEntriesToShow[logEntryIndexInEntriesToShow] = collapsedLogEntriesTimestamps[logEntryIndex];
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_68 = __this->___timestampsOfListEntriesToShow_85;
|
|
int32_t L_69 = V_4;
|
|
List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* L_70 = __this->___collapsedLogEntriesTimestamps_80;
|
|
int32_t L_71 = V_2;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_72;
|
|
L_72 = List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8(L_70, L_71, List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8_RuntimeMethod_var);
|
|
DebugLogIndexList_1_set_Item_m44047632959125DE52AF27BC23E7AABABA65348F(L_68, L_69, L_72, DebugLogIndexList_1_set_Item_m44047632959125DE52AF27BC23E7AABABA65348F_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_019f:
|
|
{
|
|
// recycledListView.OnCollapsedLogEntryAtIndexUpdated( logEntryIndexInEntriesToShow );
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_73 = __this->___recycledListView_64;
|
|
int32_t L_74 = V_4;
|
|
DebugLogRecycledListView_OnCollapsedLogEntryAtIndexUpdated_m83CA66274FC922C662D9A56A137F308EC39F1DDB(L_73, L_74, NULL);
|
|
goto IL_026b;
|
|
}
|
|
|
|
IL_01b1:
|
|
{
|
|
// else if( ( !isInSearchMode || queuedLogEntry.MatchesSearchTerm( searchTerm ) ) && ( logFilter == DebugLogFilter.All ||
|
|
// ( logTypeSpriteRepresentation == infoLog && ( ( logFilter & DebugLogFilter.Info ) == DebugLogFilter.Info ) ) ||
|
|
// ( logTypeSpriteRepresentation == warningLog && ( ( logFilter & DebugLogFilter.Warning ) == DebugLogFilter.Warning ) ) ||
|
|
// ( logTypeSpriteRepresentation == errorLog && ( ( logFilter & DebugLogFilter.Error ) == DebugLogFilter.Error ) ) ) )
|
|
bool L_75 = __this->___isInSearchMode_77;
|
|
if (!L_75)
|
|
{
|
|
goto IL_01cb;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_76 = __this->___searchTerm_76;
|
|
bool L_77;
|
|
L_77 = QueuedDebugLogEntry_MatchesSearchTerm_m4958263BE056CF58058C82981011F727EEDAE747((&___queuedLogEntry0), L_76, NULL);
|
|
if (!L_77)
|
|
{
|
|
goto IL_026b;
|
|
}
|
|
}
|
|
|
|
IL_01cb:
|
|
{
|
|
int32_t L_78 = __this->___logFilter_75;
|
|
if ((((int32_t)L_78) == ((int32_t)7)))
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
}
|
|
{
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_79 = V_5;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_80 = __this->___infoLog_28;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_81;
|
|
L_81 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_79, L_80, NULL);
|
|
if (!L_81)
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_82 = __this->___logFilter_75;
|
|
if ((((int32_t)((int32_t)((int32_t)L_82&1))) == ((int32_t)1)))
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
}
|
|
|
|
IL_01ee:
|
|
{
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_83 = V_5;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_84 = __this->___warningLog_29;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_85;
|
|
L_85 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_83, L_84, NULL);
|
|
if (!L_85)
|
|
{
|
|
goto IL_0208;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_86 = __this->___logFilter_75;
|
|
if ((((int32_t)((int32_t)((int32_t)L_86&2))) == ((int32_t)2)))
|
|
{
|
|
goto IL_0222;
|
|
}
|
|
}
|
|
|
|
IL_0208:
|
|
{
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_87 = V_5;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_88 = __this->___errorLog_30;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_89;
|
|
L_89 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_87, L_88, NULL);
|
|
if (!L_89)
|
|
{
|
|
goto IL_026b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_90 = __this->___logFilter_75;
|
|
if ((!(((uint32_t)((int32_t)((int32_t)L_90&4))) == ((uint32_t)4))))
|
|
{
|
|
goto IL_026b;
|
|
}
|
|
}
|
|
|
|
IL_0222:
|
|
{
|
|
// indicesOfListEntriesToShow.Add( logEntryIndex );
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_91 = __this->___indicesOfListEntriesToShow_84;
|
|
int32_t L_92 = V_2;
|
|
DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4(L_91, L_92, DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4_RuntimeMethod_var);
|
|
// logEntryIndexInEntriesToShow = indicesOfListEntriesToShow.Count - 1;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_93 = __this->___indicesOfListEntriesToShow_84;
|
|
int32_t L_94;
|
|
L_94 = DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_inline(L_93, DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
V_4 = ((int32_t)il2cpp_codegen_subtract(L_94, 1));
|
|
// if( timestampsOfListEntriesToShow != null )
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_95 = __this->___timestampsOfListEntriesToShow_85;
|
|
if (!L_95)
|
|
{
|
|
goto IL_025c;
|
|
}
|
|
}
|
|
{
|
|
// timestampsOfListEntriesToShow.Add( collapsedLogEntriesTimestamps[logEntryIndex] );
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_96 = __this->___timestampsOfListEntriesToShow_85;
|
|
List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* L_97 = __this->___collapsedLogEntriesTimestamps_80;
|
|
int32_t L_98 = V_2;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_99;
|
|
L_99 = List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8(L_97, L_98, List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8_RuntimeMethod_var);
|
|
DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855(L_96, L_99, DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_025c:
|
|
{
|
|
// if( isLogWindowVisible )
|
|
bool L_100 = __this->___isLogWindowVisible_65;
|
|
if (!L_100)
|
|
{
|
|
goto IL_026b;
|
|
}
|
|
}
|
|
{
|
|
// shouldUpdateRecycledListView = true;
|
|
__this->___shouldUpdateRecycledListView_87 = (bool)1;
|
|
}
|
|
|
|
IL_026b:
|
|
{
|
|
// if( logType == LogType.Log )
|
|
int32_t L_101 = V_0;
|
|
if ((!(((uint32_t)L_101) == ((uint32_t)3))))
|
|
{
|
|
goto IL_027f;
|
|
}
|
|
}
|
|
{
|
|
// newInfoEntryCount++;
|
|
int32_t L_102 = __this->___newInfoEntryCount_71;
|
|
__this->___newInfoEntryCount_71 = ((int32_t)il2cpp_codegen_add(L_102, 1));
|
|
goto IL_02a1;
|
|
}
|
|
|
|
IL_027f:
|
|
{
|
|
// else if( logType == LogType.Warning )
|
|
int32_t L_103 = V_0;
|
|
if ((!(((uint32_t)L_103) == ((uint32_t)2))))
|
|
{
|
|
goto IL_0293;
|
|
}
|
|
}
|
|
{
|
|
// newWarningEntryCount++;
|
|
int32_t L_104 = __this->___newWarningEntryCount_72;
|
|
__this->___newWarningEntryCount_72 = ((int32_t)il2cpp_codegen_add(L_104, 1));
|
|
goto IL_02a1;
|
|
}
|
|
|
|
IL_0293:
|
|
{
|
|
// newErrorEntryCount++;
|
|
int32_t L_105 = __this->___newErrorEntryCount_73;
|
|
__this->___newErrorEntryCount_73 = ((int32_t)il2cpp_codegen_add(L_105, 1));
|
|
}
|
|
|
|
IL_02a1:
|
|
{
|
|
// if( pendingLogToAutoExpand > 0 && --pendingLogToAutoExpand <= 0 && isLogWindowVisible && logEntryIndexInEntriesToShow >= 0 )
|
|
int32_t L_106 = __this->___pendingLogToAutoExpand_90;
|
|
if ((((int32_t)L_106) <= ((int32_t)0)))
|
|
{
|
|
goto IL_02d6;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_107 = __this->___pendingLogToAutoExpand_90;
|
|
V_6 = ((int32_t)il2cpp_codegen_subtract(L_107, 1));
|
|
int32_t L_108 = V_6;
|
|
__this->___pendingLogToAutoExpand_90 = L_108;
|
|
int32_t L_109 = V_6;
|
|
if ((((int32_t)L_109) > ((int32_t)0)))
|
|
{
|
|
goto IL_02d6;
|
|
}
|
|
}
|
|
{
|
|
bool L_110 = __this->___isLogWindowVisible_65;
|
|
if (!L_110)
|
|
{
|
|
goto IL_02d6;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_111 = V_4;
|
|
if ((((int32_t)L_111) < ((int32_t)0)))
|
|
{
|
|
goto IL_02d6;
|
|
}
|
|
}
|
|
{
|
|
// indexOfLogEntryToSelectAndFocus = logEntryIndexInEntriesToShow;
|
|
int32_t L_112 = V_4;
|
|
__this->___indexOfLogEntryToSelectAndFocus_86 = L_112;
|
|
}
|
|
|
|
IL_02d6:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::SetSnapToBottom(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_SetSnapToBottom_m869F0D298244C064CF9C7611B3D11F198433D6BC (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, bool ___snapToBottom0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// this.snapToBottom = snapToBottom;
|
|
bool L_0 = ___snapToBottom0;
|
|
__this->___snapToBottom_78 = L_0;
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::ValidateScrollPosition()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_ValidateScrollPosition_m2A11C6555ED058C996C5116F208E953848D479FF (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// logItemsScrollRect.OnScroll( nullPointerEventData );
|
|
ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* L_0 = __this->___logItemsScrollRect_61;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = __this->___nullPointerEventData_107;
|
|
VirtualActionInvoker1< PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* >::Invoke(42 /* System.Void UnityEngine.UI.ScrollRect::OnScroll(UnityEngine.EventSystems.PointerEventData) */, L_0, L_1);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::ExpandLatestPendingLog()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_ExpandLatestPendingLog_m3049C9438441A4BC6BBF827C416CD88D5D2D597E (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// pendingLogToAutoExpand = queuedLogEntries.Count;
|
|
DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* L_0 = __this->___queuedLogEntries_88;
|
|
int32_t L_1;
|
|
L_1 = DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_inline(L_0, DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_RuntimeMethod_var);
|
|
__this->___pendingLogToAutoExpand_90 = L_1;
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::StripStackTraceFromLatestPendingLog()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_StripStackTraceFromLatestPendingLog_m66AE6A25F37E381D549C2AD6372B2FDF871F2A67 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DynamicCircularBuffer_1_get_Item_m248003143CE1EFEC41A6812530777540C8A57FBB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DynamicCircularBuffer_1_set_Item_m527B7BFD3A45171383AEED1585D7EDFE2E152BFD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
// QueuedDebugLogEntry log = queuedLogEntries[queuedLogEntries.Count - 1];
|
|
DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* L_0 = __this->___queuedLogEntries_88;
|
|
DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* L_1 = __this->___queuedLogEntries_88;
|
|
int32_t L_2;
|
|
L_2 = DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_inline(L_1, DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_RuntimeMethod_var);
|
|
QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C L_3;
|
|
L_3 = DynamicCircularBuffer_1_get_Item_m248003143CE1EFEC41A6812530777540C8A57FBB(L_0, ((int32_t)il2cpp_codegen_subtract(L_2, 1)), DynamicCircularBuffer_1_get_Item_m248003143CE1EFEC41A6812530777540C8A57FBB_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
// queuedLogEntries[queuedLogEntries.Count - 1] = new QueuedDebugLogEntry( log.logString, string.Empty, log.logType );
|
|
DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* L_4 = __this->___queuedLogEntries_88;
|
|
DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* L_5 = __this->___queuedLogEntries_88;
|
|
int32_t L_6;
|
|
L_6 = DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_inline(L_5, DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_RuntimeMethod_var);
|
|
QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C L_7 = V_0;
|
|
String_t* L_8 = L_7.___logString_0;
|
|
String_t* L_9 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C L_10 = V_0;
|
|
int32_t L_11 = L_10.___logType_2;
|
|
QueuedDebugLogEntry_t38F0499C2BC8B412C2110366A11D5EB5153B9A5C L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
QueuedDebugLogEntry__ctor_m4C3374C16FCD4D5BB8A4224E360B018ACBBA4ACE((&L_12), L_8, L_9, L_11, /*hidden argument*/NULL);
|
|
DynamicCircularBuffer_1_set_Item_m527B7BFD3A45171383AEED1585D7EDFE2E152BFD(L_4, ((int32_t)il2cpp_codegen_subtract(L_6, 1)), L_12, DynamicCircularBuffer_1_set_Item_m527B7BFD3A45171383AEED1585D7EDFE2E152BFD_RuntimeMethod_var);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::ClearLogs()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_ClearLogs_m1CDDE08626E2804E6E16556212E2990FFE0FFD09 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_Clear_mAA7E9A2FBFD40AC07610639B5712F4FE060BDDC6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_Clear_mD2D832E651D36136AC8CAB51E17567950F882BD0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Clear_mE8ACDACEA8CA85F717F6AAB281DA5B302D9B2120_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m9425EE9EC20F325B521EE700AEAC64219769AF7D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mFB9655FC4FC26BA5CEC0B55A5D2072D534BF550A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// snapToBottom = true;
|
|
__this->___snapToBottom_78 = (bool)1;
|
|
// infoEntryCount = 0;
|
|
__this->___infoEntryCount_68 = 0;
|
|
// warningEntryCount = 0;
|
|
__this->___warningEntryCount_69 = 0;
|
|
// errorEntryCount = 0;
|
|
__this->___errorEntryCount_70 = 0;
|
|
// infoEntryCountText.text = "0";
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_0 = __this->___infoEntryCountText_51;
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_0, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
|
|
// warningEntryCountText.text = "0";
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_1 = __this->___warningEntryCountText_52;
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_1, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
|
|
// errorEntryCountText.text = "0";
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_2 = __this->___errorEntryCountText_53;
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_2, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
|
|
// collapsedLogEntries.Clear();
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_3 = __this->___collapsedLogEntries_79;
|
|
List_1_Clear_m9425EE9EC20F325B521EE700AEAC64219769AF7D_inline(L_3, List_1_Clear_m9425EE9EC20F325B521EE700AEAC64219769AF7D_RuntimeMethod_var);
|
|
// collapsedLogEntriesMap.Clear();
|
|
Dictionary_2_tB23E4199E91AADB75313D2B9E6C2D0AF4F9F9E22* L_4 = __this->___collapsedLogEntriesMap_81;
|
|
Dictionary_2_Clear_mE8ACDACEA8CA85F717F6AAB281DA5B302D9B2120(L_4, Dictionary_2_Clear_mE8ACDACEA8CA85F717F6AAB281DA5B302D9B2120_RuntimeMethod_var);
|
|
// uncollapsedLogEntriesIndices.Clear();
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_5 = __this->___uncollapsedLogEntriesIndices_82;
|
|
DebugLogIndexList_1_Clear_mD2D832E651D36136AC8CAB51E17567950F882BD0(L_5, DebugLogIndexList_1_Clear_mD2D832E651D36136AC8CAB51E17567950F882BD0_RuntimeMethod_var);
|
|
// indicesOfListEntriesToShow.Clear();
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_6 = __this->___indicesOfListEntriesToShow_84;
|
|
DebugLogIndexList_1_Clear_mD2D832E651D36136AC8CAB51E17567950F882BD0(L_6, DebugLogIndexList_1_Clear_mD2D832E651D36136AC8CAB51E17567950F882BD0_RuntimeMethod_var);
|
|
// if( collapsedLogEntriesTimestamps != null )
|
|
List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* L_7 = __this->___collapsedLogEntriesTimestamps_80;
|
|
if (!L_7)
|
|
{
|
|
goto IL_00a1;
|
|
}
|
|
}
|
|
{
|
|
// collapsedLogEntriesTimestamps.Clear();
|
|
List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* L_8 = __this->___collapsedLogEntriesTimestamps_80;
|
|
List_1_Clear_mFB9655FC4FC26BA5CEC0B55A5D2072D534BF550A_inline(L_8, List_1_Clear_mFB9655FC4FC26BA5CEC0B55A5D2072D534BF550A_RuntimeMethod_var);
|
|
// uncollapsedLogEntriesTimestamps.Clear();
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_9 = __this->___uncollapsedLogEntriesTimestamps_83;
|
|
DebugLogIndexList_1_Clear_mAA7E9A2FBFD40AC07610639B5712F4FE060BDDC6(L_9, DebugLogIndexList_1_Clear_mAA7E9A2FBFD40AC07610639B5712F4FE060BDDC6_RuntimeMethod_var);
|
|
// timestampsOfListEntriesToShow.Clear();
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_10 = __this->___timestampsOfListEntriesToShow_85;
|
|
DebugLogIndexList_1_Clear_mAA7E9A2FBFD40AC07610639B5712F4FE060BDDC6(L_10, DebugLogIndexList_1_Clear_mAA7E9A2FBFD40AC07610639B5712F4FE060BDDC6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00a1:
|
|
{
|
|
// recycledListView.DeselectSelectedLogItem();
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_11 = __this->___recycledListView_64;
|
|
DebugLogRecycledListView_DeselectSelectedLogItem_m04DC7746AB16AF9D1B7E9D9747ACA6B70787BF63(L_11, NULL);
|
|
// recycledListView.OnLogEntriesUpdated( true );
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_12 = __this->___recycledListView_64;
|
|
DebugLogRecycledListView_OnLogEntriesUpdated_m31B75B0BEFE49F0A6C735132A24575ED537259F1(L_12, (bool)1, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::CollapseButtonPressed()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_CollapseButtonPressed_m1A9E0352DBC00AD07E4AE7DC1C64BD91A9F56011 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* G_B2_0 = NULL;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* G_B1_0 = NULL;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F G_B3_0;
|
|
memset((&G_B3_0), 0, sizeof(G_B3_0));
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* G_B3_1 = NULL;
|
|
{
|
|
// isCollapseOn = !isCollapseOn;
|
|
bool L_0 = __this->___isCollapseOn_74;
|
|
__this->___isCollapseOn_74 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
// snapToBottom = true;
|
|
__this->___snapToBottom_78 = (bool)1;
|
|
// collapseButton.color = isCollapseOn ? collapseButtonSelectedColor : collapseButtonNormalColor;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_1 = __this->___collapseButton_47;
|
|
bool L_2 = __this->___isCollapseOn_74;
|
|
G_B1_0 = L_1;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_3 = __this->___collapseButtonNormalColor_34;
|
|
G_B3_0 = L_3;
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_4 = __this->___collapseButtonSelectedColor_35;
|
|
G_B3_0 = L_4;
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, G_B3_1, G_B3_0);
|
|
// recycledListView.SetCollapseMode( isCollapseOn );
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_5 = __this->___recycledListView_64;
|
|
bool L_6 = __this->___isCollapseOn_74;
|
|
DebugLogRecycledListView_SetCollapseMode_m8B9F13CBAB315B685DBFBFFBD9FF546DC3AEAFC2_inline(L_5, L_6, NULL);
|
|
// FilterLogs();
|
|
DebugLogManager_FilterLogs_m4C6CFEB33CDA37F7C3E6C783C174916471E3876D(__this, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::FilterLogButtonPressed()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_FilterLogButtonPressed_m63FFD1470E923DC8ECA3969A1EE8B71176A249BC (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// logFilter = logFilter ^ DebugLogFilter.Info;
|
|
int32_t L_0 = __this->___logFilter_75;
|
|
__this->___logFilter_75 = ((int32_t)((int32_t)L_0^1));
|
|
// if( ( logFilter & DebugLogFilter.Info ) == DebugLogFilter.Info )
|
|
int32_t L_1 = __this->___logFilter_75;
|
|
if ((!(((uint32_t)((int32_t)((int32_t)L_1&1))) == ((uint32_t)1))))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
// filterInfoButton.color = filterButtonsSelectedColor;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_2 = __this->___filterInfoButton_48;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_3 = __this->___filterButtonsSelectedColor_37;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_2, L_3);
|
|
goto IL_003d;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
// filterInfoButton.color = filterButtonsNormalColor;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_4 = __this->___filterInfoButton_48;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_5 = __this->___filterButtonsNormalColor_36;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_4, L_5);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
// FilterLogs();
|
|
DebugLogManager_FilterLogs_m4C6CFEB33CDA37F7C3E6C783C174916471E3876D(__this, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::FilterWarningButtonPressed()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_FilterWarningButtonPressed_mE585A7869AADA4969E16AC2BBB9C959FD1D43B64 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// logFilter = logFilter ^ DebugLogFilter.Warning;
|
|
int32_t L_0 = __this->___logFilter_75;
|
|
__this->___logFilter_75 = ((int32_t)((int32_t)L_0^2));
|
|
// if( ( logFilter & DebugLogFilter.Warning ) == DebugLogFilter.Warning )
|
|
int32_t L_1 = __this->___logFilter_75;
|
|
if ((!(((uint32_t)((int32_t)((int32_t)L_1&2))) == ((uint32_t)2))))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
// filterWarningButton.color = filterButtonsSelectedColor;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_2 = __this->___filterWarningButton_49;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_3 = __this->___filterButtonsSelectedColor_37;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_2, L_3);
|
|
goto IL_003d;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
// filterWarningButton.color = filterButtonsNormalColor;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_4 = __this->___filterWarningButton_49;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_5 = __this->___filterButtonsNormalColor_36;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_4, L_5);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
// FilterLogs();
|
|
DebugLogManager_FilterLogs_m4C6CFEB33CDA37F7C3E6C783C174916471E3876D(__this, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::FilterErrorButtonPressed()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_FilterErrorButtonPressed_mF7B8232DE7C74CFB674C4D50DA07417F690D05C5 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// logFilter = logFilter ^ DebugLogFilter.Error;
|
|
int32_t L_0 = __this->___logFilter_75;
|
|
__this->___logFilter_75 = ((int32_t)((int32_t)L_0^4));
|
|
// if( ( logFilter & DebugLogFilter.Error ) == DebugLogFilter.Error )
|
|
int32_t L_1 = __this->___logFilter_75;
|
|
if ((!(((uint32_t)((int32_t)((int32_t)L_1&4))) == ((uint32_t)4))))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
// filterErrorButton.color = filterButtonsSelectedColor;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_2 = __this->___filterErrorButton_50;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_3 = __this->___filterButtonsSelectedColor_37;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_2, L_3);
|
|
goto IL_003d;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
// filterErrorButton.color = filterButtonsNormalColor;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_4 = __this->___filterErrorButton_50;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_5 = __this->___filterButtonsNormalColor_36;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_4, L_5);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
// FilterLogs();
|
|
DebugLogManager_FilterLogs_m4C6CFEB33CDA37F7C3E6C783C174916471E3876D(__this, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::SearchTermChanged(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_SearchTermChanged_m6498FD8BDE5D56742AC5EA2EF769FCB1028DDF03 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, String_t* ___searchTerm0, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
// if( searchTerm != null )
|
|
String_t* L_0 = ___searchTerm0;
|
|
if (!L_0)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
// searchTerm = searchTerm.Trim();
|
|
String_t* L_1 = ___searchTerm0;
|
|
String_t* L_2;
|
|
L_2 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_1, NULL);
|
|
___searchTerm0 = L_2;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
// this.searchTerm = searchTerm;
|
|
String_t* L_3 = ___searchTerm0;
|
|
__this->___searchTerm_76 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___searchTerm_76), (void*)L_3);
|
|
// bool isInSearchMode = !string.IsNullOrEmpty( searchTerm );
|
|
String_t* L_4 = ___searchTerm0;
|
|
bool L_5;
|
|
L_5 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_4, NULL);
|
|
V_0 = (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
|
|
// if( isInSearchMode || this.isInSearchMode )
|
|
bool L_6 = V_0;
|
|
if (L_6)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
bool L_7 = __this->___isInSearchMode_77;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
// this.isInSearchMode = isInSearchMode;
|
|
bool L_8 = V_0;
|
|
__this->___isInSearchMode_77 = L_8;
|
|
// FilterLogs();
|
|
DebugLogManager_FilterLogs_m4C6CFEB33CDA37F7C3E6C783C174916471E3876D(__this, NULL);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::RefreshCommandSuggestions(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_RefreshCommandSuggestions_mFCF8CC3D6641DA413AB30A52D25C37FDFC9A9383 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, String_t* ___command0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m1E764F119DDC62D8B86C24186CBA7A268E9D3092_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m77380B71C791340B3330CF6AD09FE5256DA675CD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m451B44D19BA4256832D8B46E419A6176263901A4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
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_mD575040BED5E15F408E2E182CAFDF0EF52625E87_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_Instantiate_TisText_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62_mBB3AC9020A139E16AACFD144F60315A6E3B035EF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* V_9 = NULL;
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
{
|
|
// if( !showCommandSuggestions )
|
|
bool L_0 = __this->___showCommandSuggestions_21;
|
|
if (L_0)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
// commandInputFieldPrevCaretPos = commandInputField.caretPosition;
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_1 = __this->___commandInputField_44;
|
|
int32_t L_2;
|
|
L_2 = InputField_get_caretPosition_mC43674CCFF5BF7D047C2D4682B2CD7DE8A179EA7(L_1, NULL);
|
|
__this->___commandInputFieldPrevCaretPos_98 = L_2;
|
|
// bool commandChanged = command != commandInputFieldPrevCommand;
|
|
String_t* L_3 = ___command0;
|
|
String_t* L_4 = __this->___commandInputFieldPrevCommand_95;
|
|
bool L_5;
|
|
L_5 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_3, L_4, NULL);
|
|
V_0 = L_5;
|
|
// bool commandNameOrParametersChanged = false;
|
|
V_1 = (bool)0;
|
|
// if( commandChanged )
|
|
bool L_6 = V_0;
|
|
if (!L_6)
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
{
|
|
// commandInputFieldPrevCommand = command;
|
|
String_t* L_7 = ___command0;
|
|
__this->___commandInputFieldPrevCommand_95 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___commandInputFieldPrevCommand_95), (void*)L_7);
|
|
// matchingCommandSuggestions.Clear();
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_8 = __this->___matchingCommandSuggestions_93;
|
|
List_1_Clear_m77380B71C791340B3330CF6AD09FE5256DA675CD_inline(L_8, List_1_Clear_m77380B71C791340B3330CF6AD09FE5256DA675CD_RuntimeMethod_var);
|
|
// commandCaretIndexIncrements.Clear();
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_9 = __this->___commandCaretIndexIncrements_94;
|
|
List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_inline(L_9, List_1_Clear_mF6795DE5F49C1D0B91D6A0955F448B22970D67A9_RuntimeMethod_var);
|
|
// string prevCommandName = commandInputFieldPrevCommandName;
|
|
String_t* L_10 = __this->___commandInputFieldPrevCommandName_96;
|
|
// DebugLogConsole.GetCommandSuggestions( command, matchingCommandSuggestions, commandCaretIndexIncrements, ref commandInputFieldPrevCommandName, out numberOfParameters );
|
|
String_t* L_11 = ___command0;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_12 = __this->___matchingCommandSuggestions_93;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_13 = __this->___commandCaretIndexIncrements_94;
|
|
String_t** L_14 = (&__this->___commandInputFieldPrevCommandName_96);
|
|
il2cpp_codegen_runtime_class_init_inline(DebugLogConsole_tD4575289A02D94FC8841D22AE24DE8216C32A707_il2cpp_TypeInfo_var);
|
|
DebugLogConsole_GetCommandSuggestions_mD9A1F9ECB81527BDD14183214F668B8C6AA0DCBF(L_11, L_12, L_13, L_14, (&V_4), NULL);
|
|
// if( prevCommandName != commandInputFieldPrevCommandName || numberOfParameters != commandInputFieldPrevParamCount )
|
|
String_t* L_15 = __this->___commandInputFieldPrevCommandName_96;
|
|
bool L_16;
|
|
L_16 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_10, L_15, NULL);
|
|
if (L_16)
|
|
{
|
|
goto IL_0080;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_17 = V_4;
|
|
int32_t L_18 = __this->___commandInputFieldPrevParamCount_97;
|
|
if ((((int32_t)L_17) == ((int32_t)L_18)))
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
|
|
IL_0080:
|
|
{
|
|
// commandInputFieldPrevParamCount = numberOfParameters;
|
|
int32_t L_19 = V_4;
|
|
__this->___commandInputFieldPrevParamCount_97 = L_19;
|
|
// commandNameOrParametersChanged = true;
|
|
V_1 = (bool)1;
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
// int caretArgumentIndex = 0;
|
|
V_2 = 0;
|
|
// int caretPos = commandInputField.caretPosition;
|
|
InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* L_20 = __this->___commandInputField_44;
|
|
int32_t L_21;
|
|
L_21 = InputField_get_caretPosition_mC43674CCFF5BF7D047C2D4682B2CD7DE8A179EA7(L_20, NULL);
|
|
V_3 = L_21;
|
|
// for( int i = 0; i < commandCaretIndexIncrements.Count && caretPos > commandCaretIndexIncrements[i]; i++ )
|
|
V_5 = 0;
|
|
goto IL_00a7;
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
// caretArgumentIndex++;
|
|
int32_t L_22 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
// for( int i = 0; i < commandCaretIndexIncrements.Count && caretPos > commandCaretIndexIncrements[i]; i++ )
|
|
int32_t L_23 = V_5;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_23, 1));
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
// for( int i = 0; i < commandCaretIndexIncrements.Count && caretPos > commandCaretIndexIncrements[i]; i++ )
|
|
int32_t L_24 = V_5;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_25 = __this->___commandCaretIndexIncrements_94;
|
|
int32_t L_26;
|
|
L_26 = List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_inline(L_25, List_1_get_Count_mF590592E32D421DE2C6E2F0D5C2F62FB14CCEFDF_RuntimeMethod_var);
|
|
if ((((int32_t)L_24) >= ((int32_t)L_26)))
|
|
{
|
|
goto IL_00c6;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_27 = V_3;
|
|
List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* L_28 = __this->___commandCaretIndexIncrements_94;
|
|
int32_t L_29 = V_5;
|
|
int32_t L_30;
|
|
L_30 = List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D(L_28, L_29, List_1_get_Item_mD99081BEFA1AB3526715F489192B0F7F596C183D_RuntimeMethod_var);
|
|
if ((((int32_t)L_27) > ((int32_t)L_30)))
|
|
{
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
|
|
IL_00c6:
|
|
{
|
|
// if( caretArgumentIndex != commandInputFieldPrevCaretArgumentIndex )
|
|
int32_t L_31 = V_2;
|
|
int32_t L_32 = __this->___commandInputFieldPrevCaretArgumentIndex_99;
|
|
if ((((int32_t)L_31) == ((int32_t)L_32)))
|
|
{
|
|
goto IL_00d8;
|
|
}
|
|
}
|
|
{
|
|
// commandInputFieldPrevCaretArgumentIndex = caretArgumentIndex;
|
|
int32_t L_33 = V_2;
|
|
__this->___commandInputFieldPrevCaretArgumentIndex_99 = L_33;
|
|
goto IL_00df;
|
|
}
|
|
|
|
IL_00d8:
|
|
{
|
|
// else if( !commandChanged || !commandNameOrParametersChanged )
|
|
bool L_34 = V_0;
|
|
if (!L_34)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
bool L_35 = V_1;
|
|
if (L_35)
|
|
{
|
|
goto IL_00df;
|
|
}
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_00df:
|
|
{
|
|
// if( matchingCommandSuggestions.Count == 0 )
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_36 = __this->___matchingCommandSuggestions_93;
|
|
int32_t L_37;
|
|
L_37 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_36, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
if (L_37)
|
|
{
|
|
goto IL_00f4;
|
|
}
|
|
}
|
|
{
|
|
// OnEndEditCommand( command );
|
|
String_t* L_38 = ___command0;
|
|
DebugLogManager_OnEndEditCommand_m6A00CF0CD88DE7DDD5E68262AE2CE34DBF3C2307(__this, L_38, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_00f4:
|
|
{
|
|
// if( !commandSuggestionsContainer.gameObject.activeSelf )
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_39 = __this->___commandSuggestionsContainer_43;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_40;
|
|
L_40 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_39, NULL);
|
|
bool L_41;
|
|
L_41 = GameObject_get_activeSelf_m4F3E5240E138B66AAA080EA30759A3D0517DA368(L_40, NULL);
|
|
if (L_41)
|
|
{
|
|
goto IL_0117;
|
|
}
|
|
}
|
|
{
|
|
// commandSuggestionsContainer.gameObject.SetActive( true );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_42 = __this->___commandSuggestionsContainer_43;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_43;
|
|
L_43 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_42, NULL);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_43, (bool)1, NULL);
|
|
}
|
|
|
|
IL_0117:
|
|
{
|
|
// int suggestionInstancesCount = commandSuggestionInstances.Count;
|
|
List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48* L_44 = __this->___commandSuggestionInstances_91;
|
|
int32_t L_45;
|
|
L_45 = List_1_get_Count_m451B44D19BA4256832D8B46E419A6176263901A4_inline(L_44, List_1_get_Count_m451B44D19BA4256832D8B46E419A6176263901A4_RuntimeMethod_var);
|
|
V_6 = L_45;
|
|
// int suggestionsCount = matchingCommandSuggestions.Count;
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_46 = __this->___matchingCommandSuggestions_93;
|
|
int32_t L_47;
|
|
L_47 = List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_inline(L_46, List_1_get_Count_mAC64C8CD49AB36C3DB7F55F156503FDA806B18CB_RuntimeMethod_var);
|
|
V_7 = L_47;
|
|
// for( int i = 0; i < suggestionsCount; i++ )
|
|
V_8 = 0;
|
|
goto IL_02b8;
|
|
}
|
|
|
|
IL_0139:
|
|
{
|
|
// if( i >= visibleCommandSuggestionInstances )
|
|
int32_t L_48 = V_8;
|
|
int32_t L_49 = __this->___visibleCommandSuggestionInstances_92;
|
|
if ((((int32_t)L_48) < ((int32_t)L_49)))
|
|
{
|
|
goto IL_018e;
|
|
}
|
|
}
|
|
{
|
|
// if( i >= suggestionInstancesCount )
|
|
int32_t L_50 = V_8;
|
|
int32_t L_51 = V_6;
|
|
if ((((int32_t)L_50) < ((int32_t)L_51)))
|
|
{
|
|
goto IL_0168;
|
|
}
|
|
}
|
|
{
|
|
// commandSuggestionInstances.Add( (Text) Instantiate( commandSuggestionPrefab, commandSuggestionsContainer, false ) );
|
|
List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48* L_52 = __this->___commandSuggestionInstances_91;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_53 = __this->___commandSuggestionPrefab_27;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_54 = __this->___commandSuggestionsContainer_43;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_55;
|
|
L_55 = Object_Instantiate_TisText_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62_mBB3AC9020A139E16AACFD144F60315A6E3B035EF(L_53, L_54, (bool)0, Object_Instantiate_TisText_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62_mBB3AC9020A139E16AACFD144F60315A6E3B035EF_RuntimeMethod_var);
|
|
List_1_Add_m1E764F119DDC62D8B86C24186CBA7A268E9D3092_inline(L_52, L_55, List_1_Add_m1E764F119DDC62D8B86C24186CBA7A268E9D3092_RuntimeMethod_var);
|
|
goto IL_0180;
|
|
}
|
|
|
|
IL_0168:
|
|
{
|
|
// commandSuggestionInstances[i].gameObject.SetActive( true );
|
|
List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48* L_56 = __this->___commandSuggestionInstances_91;
|
|
int32_t L_57 = V_8;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_58;
|
|
L_58 = List_1_get_Item_mD575040BED5E15F408E2E182CAFDF0EF52625E87(L_56, L_57, List_1_get_Item_mD575040BED5E15F408E2E182CAFDF0EF52625E87_RuntimeMethod_var);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_59;
|
|
L_59 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_58, NULL);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_59, (bool)1, NULL);
|
|
}
|
|
|
|
IL_0180:
|
|
{
|
|
// visibleCommandSuggestionInstances++;
|
|
int32_t L_60 = __this->___visibleCommandSuggestionInstances_92;
|
|
__this->___visibleCommandSuggestionInstances_92 = ((int32_t)il2cpp_codegen_add(L_60, 1));
|
|
}
|
|
|
|
IL_018e:
|
|
{
|
|
// ConsoleMethodInfo suggestedCommand = matchingCommandSuggestions[i];
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_61 = __this->___matchingCommandSuggestions_93;
|
|
int32_t L_62 = V_8;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_63;
|
|
L_63 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_61, L_62, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
V_9 = L_63;
|
|
// sharedStringBuilder.Length = 0;
|
|
StringBuilder_t* L_64 = __this->___sharedStringBuilder_105;
|
|
StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_64, 0, NULL);
|
|
// if( caretArgumentIndex > 0 )
|
|
int32_t L_65 = V_2;
|
|
if ((((int32_t)L_65) <= ((int32_t)0)))
|
|
{
|
|
goto IL_01c2;
|
|
}
|
|
}
|
|
{
|
|
// sharedStringBuilder.Append( suggestedCommand.command );
|
|
StringBuilder_t* L_66 = __this->___sharedStringBuilder_105;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_67 = V_9;
|
|
String_t* L_68 = L_67->___command_3;
|
|
StringBuilder_t* L_69;
|
|
L_69 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_66, L_68, NULL);
|
|
goto IL_01f6;
|
|
}
|
|
|
|
IL_01c2:
|
|
{
|
|
// sharedStringBuilder.Append( commandSuggestionHighlightStart ).Append( matchingCommandSuggestions[i].command ).Append( commandSuggestionHighlightEnd );
|
|
StringBuilder_t* L_70 = __this->___sharedStringBuilder_105;
|
|
String_t* L_71 = __this->___commandSuggestionHighlightStart_38;
|
|
StringBuilder_t* L_72;
|
|
L_72 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_70, L_71, NULL);
|
|
List_1_t77A2CF97AA1B05C81783D84584405B0B9A8484F4* L_73 = __this->___matchingCommandSuggestions_93;
|
|
int32_t L_74 = V_8;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_75;
|
|
L_75 = List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1(L_73, L_74, List_1_get_Item_mF232C9872553FF345C632FB1005919A34AABD1F1_RuntimeMethod_var);
|
|
String_t* L_76 = L_75->___command_3;
|
|
StringBuilder_t* L_77;
|
|
L_77 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_72, L_76, NULL);
|
|
String_t* L_78 = __this->___commandSuggestionHighlightEnd_39;
|
|
StringBuilder_t* L_79;
|
|
L_79 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_77, L_78, NULL);
|
|
}
|
|
|
|
IL_01f6:
|
|
{
|
|
// if( suggestedCommand.parameters.Length > 0 )
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_80 = V_9;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_81 = L_80->___parameters_5;
|
|
if (!(((RuntimeArray*)L_81)->max_length))
|
|
{
|
|
goto IL_0295;
|
|
}
|
|
}
|
|
{
|
|
// sharedStringBuilder.Append( " " );
|
|
StringBuilder_t* L_82 = __this->___sharedStringBuilder_105;
|
|
StringBuilder_t* L_83;
|
|
L_83 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_82, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, NULL);
|
|
// int caretParameterIndex = caretArgumentIndex - 1;
|
|
int32_t L_84 = V_2;
|
|
V_10 = ((int32_t)il2cpp_codegen_subtract(L_84, 1));
|
|
// if( caretParameterIndex >= suggestedCommand.parameters.Length )
|
|
int32_t L_85 = V_10;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_86 = V_9;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_87 = L_86->___parameters_5;
|
|
if ((((int32_t)L_85) < ((int32_t)((int32_t)(((RuntimeArray*)L_87)->max_length)))))
|
|
{
|
|
goto IL_0233;
|
|
}
|
|
}
|
|
{
|
|
// caretParameterIndex = suggestedCommand.parameters.Length - 1;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_88 = V_9;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_89 = L_88->___parameters_5;
|
|
V_10 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_89)->max_length)), 1));
|
|
}
|
|
|
|
IL_0233:
|
|
{
|
|
// for( int j = 0; j < suggestedCommand.parameters.Length; j++ )
|
|
V_11 = 0;
|
|
goto IL_0288;
|
|
}
|
|
|
|
IL_0238:
|
|
{
|
|
// if( caretParameterIndex != j )
|
|
int32_t L_90 = V_10;
|
|
int32_t L_91 = V_11;
|
|
if ((((int32_t)L_90) == ((int32_t)L_91)))
|
|
{
|
|
goto IL_0256;
|
|
}
|
|
}
|
|
{
|
|
// sharedStringBuilder.Append( suggestedCommand.parameters[j] );
|
|
StringBuilder_t* L_92 = __this->___sharedStringBuilder_105;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_93 = V_9;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_94 = L_93->___parameters_5;
|
|
int32_t L_95 = V_11;
|
|
int32_t L_96 = L_95;
|
|
String_t* L_97 = (L_94)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_96));
|
|
StringBuilder_t* L_98;
|
|
L_98 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_92, L_97, NULL);
|
|
goto IL_0282;
|
|
}
|
|
|
|
IL_0256:
|
|
{
|
|
// sharedStringBuilder.Append( commandSuggestionHighlightStart ).Append( suggestedCommand.parameters[j] ).Append( commandSuggestionHighlightEnd );
|
|
StringBuilder_t* L_99 = __this->___sharedStringBuilder_105;
|
|
String_t* L_100 = __this->___commandSuggestionHighlightStart_38;
|
|
StringBuilder_t* L_101;
|
|
L_101 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_99, L_100, NULL);
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_102 = V_9;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_103 = L_102->___parameters_5;
|
|
int32_t L_104 = V_11;
|
|
int32_t L_105 = L_104;
|
|
String_t* L_106 = (L_103)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_105));
|
|
StringBuilder_t* L_107;
|
|
L_107 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_101, L_106, NULL);
|
|
String_t* L_108 = __this->___commandSuggestionHighlightEnd_39;
|
|
StringBuilder_t* L_109;
|
|
L_109 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_107, L_108, NULL);
|
|
}
|
|
|
|
IL_0282:
|
|
{
|
|
// for( int j = 0; j < suggestedCommand.parameters.Length; j++ )
|
|
int32_t L_110 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add(L_110, 1));
|
|
}
|
|
|
|
IL_0288:
|
|
{
|
|
// for( int j = 0; j < suggestedCommand.parameters.Length; j++ )
|
|
int32_t L_111 = V_11;
|
|
ConsoleMethodInfo_tB629AE32E4B21A9E17781BEB450E6887C2DD8D79* L_112 = V_9;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_113 = L_112->___parameters_5;
|
|
if ((((int32_t)L_111) < ((int32_t)((int32_t)(((RuntimeArray*)L_113)->max_length)))))
|
|
{
|
|
goto IL_0238;
|
|
}
|
|
}
|
|
|
|
IL_0295:
|
|
{
|
|
// commandSuggestionInstances[i].text = sharedStringBuilder.ToString();
|
|
List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48* L_114 = __this->___commandSuggestionInstances_91;
|
|
int32_t L_115 = V_8;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_116;
|
|
L_116 = List_1_get_Item_mD575040BED5E15F408E2E182CAFDF0EF52625E87(L_114, L_115, List_1_get_Item_mD575040BED5E15F408E2E182CAFDF0EF52625E87_RuntimeMethod_var);
|
|
StringBuilder_t* L_117 = __this->___sharedStringBuilder_105;
|
|
String_t* L_118;
|
|
L_118 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_117);
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_116, L_118);
|
|
// for( int i = 0; i < suggestionsCount; i++ )
|
|
int32_t L_119 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_119, 1));
|
|
}
|
|
|
|
IL_02b8:
|
|
{
|
|
// for( int i = 0; i < suggestionsCount; i++ )
|
|
int32_t L_120 = V_8;
|
|
int32_t L_121 = V_7;
|
|
if ((((int32_t)L_120) < ((int32_t)L_121)))
|
|
{
|
|
goto IL_0139;
|
|
}
|
|
}
|
|
{
|
|
// for( int i = visibleCommandSuggestionInstances - 1; i >= suggestionsCount; i-- )
|
|
int32_t L_122 = __this->___visibleCommandSuggestionInstances_92;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_122, 1));
|
|
goto IL_02eb;
|
|
}
|
|
|
|
IL_02cd:
|
|
{
|
|
// commandSuggestionInstances[i].gameObject.SetActive( false );
|
|
List_1_tF2BD894424997346355BE3D3F0A728DBF10DCF48* L_123 = __this->___commandSuggestionInstances_91;
|
|
int32_t L_124 = V_12;
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_125;
|
|
L_125 = List_1_get_Item_mD575040BED5E15F408E2E182CAFDF0EF52625E87(L_123, L_124, List_1_get_Item_mD575040BED5E15F408E2E182CAFDF0EF52625E87_RuntimeMethod_var);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_126;
|
|
L_126 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_125, NULL);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_126, (bool)0, NULL);
|
|
// for( int i = visibleCommandSuggestionInstances - 1; i >= suggestionsCount; i-- )
|
|
int32_t L_127 = V_12;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_127, 1));
|
|
}
|
|
|
|
IL_02eb:
|
|
{
|
|
// for( int i = visibleCommandSuggestionInstances - 1; i >= suggestionsCount; i-- )
|
|
int32_t L_128 = V_12;
|
|
int32_t L_129 = V_7;
|
|
if ((((int32_t)L_128) >= ((int32_t)L_129)))
|
|
{
|
|
goto IL_02cd;
|
|
}
|
|
}
|
|
{
|
|
// visibleCommandSuggestionInstances = suggestionsCount;
|
|
int32_t L_130 = V_7;
|
|
__this->___visibleCommandSuggestionInstances_92 = L_130;
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::OnEndEditCommand(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_OnEndEditCommand_m6A00CF0CD88DE7DDD5E68262AE2CE34DBF3C2307 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, String_t* ___command0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// if( commandSuggestionsContainer.gameObject.activeSelf )
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_0 = __this->___commandSuggestionsContainer_43;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_1;
|
|
L_1 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_0, NULL);
|
|
bool L_2;
|
|
L_2 = GameObject_get_activeSelf_m4F3E5240E138B66AAA080EA30759A3D0517DA368(L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
// commandSuggestionsContainer.gameObject.SetActive( false );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_3 = __this->___commandSuggestionsContainer_43;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_4;
|
|
L_4 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(L_3, NULL);
|
|
GameObject_SetActive_m638E92E1E75E519E5B24CF150B08CA8E0CDFAB92(L_4, (bool)0, NULL);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::Resize(UnityEngine.EventSystems.PointerEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_Resize_m0F28C37B4111332354C18770A29BD3D3277DD0E4 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransformUtility_t65C00A84A72F17D78B81F2E7D88C2AA98AB61244_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
float V_4 = 0.0f;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
{
|
|
// if( !RectTransformUtility.ScreenPointToLocalPointInRectangle( canvasTR, eventData.position, eventData.pressEventCamera, out localPoint ) )
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_0 = __this->___canvasTR_41;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = ___eventData0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2;
|
|
L_2 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_1, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_3 = ___eventData0;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_4;
|
|
L_4 = PointerEventData_get_pressEventCamera_m8D6A377D5CA730307D9F8ABB8656FFB8FCD56AE3(L_3, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RectTransformUtility_t65C00A84A72F17D78B81F2E7D88C2AA98AB61244_il2cpp_TypeInfo_var);
|
|
bool L_5;
|
|
L_5 = RectTransformUtility_ScreenPointToLocalPointInRectangle_m01A75CAFB6D1019F1C65BA606635EAB10AF31195(L_0, L_2, L_4, (&V_0), NULL);
|
|
if (L_5)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
// Vector2 canvasPivot = canvasTR.pivot;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_6 = __this->___canvasTR_41;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
L_7 = RectTransform_get_pivot_mA8334AF05AA7FF09A173A2430F2BB9E85E5CBFFF(L_6, NULL);
|
|
V_1 = L_7;
|
|
// Vector2 canvasSize = canvasTR.rect.size;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_8 = __this->___canvasTR_41;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_9;
|
|
L_9 = RectTransform_get_rect_mC82A60F8C3805ED9833508CCC233689641207488(L_8, NULL);
|
|
V_5 = L_9;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10;
|
|
L_10 = Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267((&V_5), NULL);
|
|
V_2 = L_10;
|
|
// Vector2 anchorMin = logWindowTR.anchorMin;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_11 = __this->___logWindowTR_40;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12;
|
|
L_12 = RectTransform_get_anchorMin_mD85363930BE38EC188F933B9F4D58320CAB72F03(L_11, NULL);
|
|
V_3 = L_12;
|
|
// if( enableHorizontalResizing )
|
|
bool L_13 = __this->___enableHorizontalResizing_7;
|
|
if (!L_13)
|
|
{
|
|
goto IL_012a;
|
|
}
|
|
}
|
|
{
|
|
// if( resizeFromRight )
|
|
bool L_14 = __this->___resizeFromRight_8;
|
|
if (!L_14)
|
|
{
|
|
goto IL_00ca;
|
|
}
|
|
}
|
|
{
|
|
// localPoint.x += canvasPivot.x * canvasSize.x + resizeButtonWidth;
|
|
float* L_15 = (&(&V_0)->___x_0);
|
|
float* L_16 = L_15;
|
|
float L_17 = *((float*)L_16);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_18 = V_1;
|
|
float L_19 = L_18.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_20 = V_2;
|
|
float L_21 = L_20.___x_0;
|
|
*((float*)L_16) = (float)((float)il2cpp_codegen_add(L_17, ((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_19, L_21)), (64.0f)))));
|
|
// if( localPoint.x < minimumWidth )
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22 = V_0;
|
|
float L_23 = L_22.___x_0;
|
|
float L_24 = __this->___minimumWidth_9;
|
|
if ((!(((float)L_23) < ((float)L_24))))
|
|
{
|
|
goto IL_0095;
|
|
}
|
|
}
|
|
{
|
|
// localPoint.x = minimumWidth;
|
|
float L_25 = __this->___minimumWidth_9;
|
|
(&V_0)->___x_0 = L_25;
|
|
}
|
|
|
|
IL_0095:
|
|
{
|
|
// Vector2 anchorMax = logWindowTR.anchorMax;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_26 = __this->___logWindowTR_40;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_27;
|
|
L_27 = RectTransform_get_anchorMax_mEF870BE2A134CEB9C2326930A71D3961271297DB(L_26, NULL);
|
|
V_6 = L_27;
|
|
// anchorMax.x = Mathf.Clamp01( localPoint.x / canvasSize.x );
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_28 = V_0;
|
|
float L_29 = L_28.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_30 = V_2;
|
|
float L_31 = L_30.___x_0;
|
|
float L_32;
|
|
L_32 = Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline(((float)(L_29/L_31)), NULL);
|
|
(&V_6)->___x_0 = L_32;
|
|
// logWindowTR.anchorMax = anchorMax;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_33 = __this->___logWindowTR_40;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_34 = V_6;
|
|
RectTransform_set_anchorMax_m52829ABEDD229ABD3DA20BCA676FA1DCA4A39B7D(L_33, L_34, NULL);
|
|
goto IL_012a;
|
|
}
|
|
|
|
IL_00ca:
|
|
{
|
|
// localPoint.x += canvasPivot.x * canvasSize.x - resizeButtonWidth;
|
|
float* L_35 = (&(&V_0)->___x_0);
|
|
float* L_36 = L_35;
|
|
float L_37 = *((float*)L_36);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_38 = V_1;
|
|
float L_39 = L_38.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_40 = V_2;
|
|
float L_41 = L_40.___x_0;
|
|
*((float*)L_36) = (float)((float)il2cpp_codegen_add(L_37, ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(L_39, L_41)), (64.0f)))));
|
|
// if( localPoint.x > canvasSize.x - minimumWidth )
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_42 = V_0;
|
|
float L_43 = L_42.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_44 = V_2;
|
|
float L_45 = L_44.___x_0;
|
|
float L_46 = __this->___minimumWidth_9;
|
|
if ((!(((float)L_43) > ((float)((float)il2cpp_codegen_subtract(L_45, L_46))))))
|
|
{
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
{
|
|
// localPoint.x = canvasSize.x - minimumWidth;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_47 = V_2;
|
|
float L_48 = L_47.___x_0;
|
|
float L_49 = __this->___minimumWidth_9;
|
|
(&V_0)->___x_0 = ((float)il2cpp_codegen_subtract(L_48, L_49));
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
// anchorMin.x = Mathf.Clamp01( localPoint.x / canvasSize.x );
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_50 = V_0;
|
|
float L_51 = L_50.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_52 = V_2;
|
|
float L_53 = L_52.___x_0;
|
|
float L_54;
|
|
L_54 = Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline(((float)(L_51/L_53)), NULL);
|
|
(&V_3)->___x_0 = L_54;
|
|
}
|
|
|
|
IL_012a:
|
|
{
|
|
// float notchHeight = -logWindowTR.sizeDelta.y; // Size of notch screen cutouts at the top of the screen
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_55 = __this->___logWindowTR_40;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_56;
|
|
L_56 = RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB(L_55, NULL);
|
|
float L_57 = L_56.___y_1;
|
|
V_4 = ((-L_57));
|
|
// localPoint.y += canvasPivot.y * canvasSize.y - resizeButtonHeight;
|
|
float* L_58 = (&(&V_0)->___y_1);
|
|
float* L_59 = L_58;
|
|
float L_60 = *((float*)L_59);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_61 = V_1;
|
|
float L_62 = L_61.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_63 = V_2;
|
|
float L_64 = L_63.___y_1;
|
|
*((float*)L_59) = (float)((float)il2cpp_codegen_add(L_60, ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(L_62, L_64)), (36.0f)))));
|
|
// if( localPoint.y > canvasSize.y - minimumHeight - notchHeight )
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_65 = V_0;
|
|
float L_66 = L_65.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_67 = V_2;
|
|
float L_68 = L_67.___y_1;
|
|
float L_69 = __this->___minimumHeight_6;
|
|
float L_70 = V_4;
|
|
if ((!(((float)L_66) > ((float)((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_subtract(L_68, L_69)), L_70))))))
|
|
{
|
|
goto IL_018a;
|
|
}
|
|
}
|
|
{
|
|
// localPoint.y = canvasSize.y - minimumHeight - notchHeight;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_71 = V_2;
|
|
float L_72 = L_71.___y_1;
|
|
float L_73 = __this->___minimumHeight_6;
|
|
float L_74 = V_4;
|
|
(&V_0)->___y_1 = ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_subtract(L_72, L_73)), L_74));
|
|
}
|
|
|
|
IL_018a:
|
|
{
|
|
// anchorMin.y = Mathf.Clamp01( localPoint.y / canvasSize.y );
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_75 = V_0;
|
|
float L_76 = L_75.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_77 = V_2;
|
|
float L_78 = L_77.___y_1;
|
|
float L_79;
|
|
L_79 = Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline(((float)(L_76/L_78)), NULL);
|
|
(&V_3)->___y_1 = L_79;
|
|
// logWindowTR.anchorMin = anchorMin;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_80 = __this->___logWindowTR_40;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_81 = V_3;
|
|
RectTransform_set_anchorMin_m931442ABE3368D6D4309F43DF1D64AB64B0F52E3(L_80, L_81, NULL);
|
|
// recycledListView.OnViewportHeightChanged();
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_82 = __this->___recycledListView_64;
|
|
DebugLogRecycledListView_OnViewportHeightChanged_mC257005C0AC4AAB23CAB212ABC2B3CD3311E2484(L_82, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::FilterLogs()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_FilterLogs_m4C6CFEB33CDA37F7C3E6C783C174916471E3876D (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_Clear_mAA7E9A2FBFD40AC07610639B5712F4FE060BDDC6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_Clear_mD2D832E651D36136AC8CAB51E17567950F882BD0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* V_13 = NULL;
|
|
bool V_14 = false;
|
|
int32_t V_15 = 0;
|
|
int32_t V_16 = 0;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* V_17 = NULL;
|
|
bool V_18 = false;
|
|
{
|
|
// indicesOfListEntriesToShow.Clear();
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_0 = __this->___indicesOfListEntriesToShow_84;
|
|
DebugLogIndexList_1_Clear_mD2D832E651D36136AC8CAB51E17567950F882BD0(L_0, DebugLogIndexList_1_Clear_mD2D832E651D36136AC8CAB51E17567950F882BD0_RuntimeMethod_var);
|
|
// if( timestampsOfListEntriesToShow != null )
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_1 = __this->___timestampsOfListEntriesToShow_85;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
// timestampsOfListEntriesToShow.Clear();
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_2 = __this->___timestampsOfListEntriesToShow_85;
|
|
DebugLogIndexList_1_Clear_mAA7E9A2FBFD40AC07610639B5712F4FE060BDDC6(L_2, DebugLogIndexList_1_Clear_mAA7E9A2FBFD40AC07610639B5712F4FE060BDDC6_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
// if( logFilter != DebugLogFilter.None )
|
|
int32_t L_3 = __this->___logFilter_75;
|
|
if (!L_3)
|
|
{
|
|
goto IL_03a2;
|
|
}
|
|
}
|
|
{
|
|
// if( logFilter == DebugLogFilter.All )
|
|
int32_t L_4 = __this->___logFilter_75;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)7))))
|
|
{
|
|
goto IL_01d4;
|
|
}
|
|
}
|
|
{
|
|
// if( isCollapseOn )
|
|
bool L_5 = __this->___isCollapseOn_74;
|
|
if (!L_5)
|
|
{
|
|
goto IL_00f1;
|
|
}
|
|
}
|
|
{
|
|
// if( !isInSearchMode )
|
|
bool L_6 = __this->___isInSearchMode_77;
|
|
if (L_6)
|
|
{
|
|
goto IL_0090;
|
|
}
|
|
}
|
|
{
|
|
// for( int i = 0, count = collapsedLogEntries.Count; i < count; i++ )
|
|
V_0 = 0;
|
|
// for( int i = 0, count = collapsedLogEntries.Count; i < count; i++ )
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_7 = __this->___collapsedLogEntries_79;
|
|
int32_t L_8;
|
|
L_8 = List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_inline(L_7, List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_RuntimeMethod_var);
|
|
V_1 = L_8;
|
|
goto IL_0087;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
// indicesOfListEntriesToShow.Add( i );
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_9 = __this->___indicesOfListEntriesToShow_84;
|
|
int32_t L_10 = V_0;
|
|
DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4(L_9, L_10, DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4_RuntimeMethod_var);
|
|
// if( timestampsOfListEntriesToShow != null )
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_11 = __this->___timestampsOfListEntriesToShow_85;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
// timestampsOfListEntriesToShow.Add( collapsedLogEntriesTimestamps[i] );
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_12 = __this->___timestampsOfListEntriesToShow_85;
|
|
List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* L_13 = __this->___collapsedLogEntriesTimestamps_80;
|
|
int32_t L_14 = V_0;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_15;
|
|
L_15 = List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8(L_13, L_14, List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8_RuntimeMethod_var);
|
|
DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855(L_12, L_15, DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
// for( int i = 0, count = collapsedLogEntries.Count; i < count; i++ )
|
|
int32_t L_16 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
// for( int i = 0, count = collapsedLogEntries.Count; i < count; i++ )
|
|
int32_t L_17 = V_0;
|
|
int32_t L_18 = V_1;
|
|
if ((((int32_t)L_17) < ((int32_t)L_18)))
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
goto IL_03a2;
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
// for( int i = 0, count = collapsedLogEntries.Count; i < count; i++ )
|
|
V_2 = 0;
|
|
// for( int i = 0, count = collapsedLogEntries.Count; i < count; i++ )
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_19 = __this->___collapsedLogEntries_79;
|
|
int32_t L_20;
|
|
L_20 = List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_inline(L_19, List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_RuntimeMethod_var);
|
|
V_3 = L_20;
|
|
goto IL_00e8;
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
// if( collapsedLogEntries[i].MatchesSearchTerm( searchTerm ) )
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_21 = __this->___collapsedLogEntries_79;
|
|
int32_t L_22 = V_2;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_23;
|
|
L_23 = List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78(L_21, L_22, List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
String_t* L_24 = __this->___searchTerm_76;
|
|
bool L_25;
|
|
L_25 = DebugLogEntry_MatchesSearchTerm_m2A8682D30E6BAA04DD077A48EB81D85287DC96A2(L_23, L_24, NULL);
|
|
if (!L_25)
|
|
{
|
|
goto IL_00e4;
|
|
}
|
|
}
|
|
{
|
|
// indicesOfListEntriesToShow.Add( i );
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_26 = __this->___indicesOfListEntriesToShow_84;
|
|
int32_t L_27 = V_2;
|
|
DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4(L_26, L_27, DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4_RuntimeMethod_var);
|
|
// if( timestampsOfListEntriesToShow != null )
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_28 = __this->___timestampsOfListEntriesToShow_85;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00e4;
|
|
}
|
|
}
|
|
{
|
|
// timestampsOfListEntriesToShow.Add( collapsedLogEntriesTimestamps[i] );
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_29 = __this->___timestampsOfListEntriesToShow_85;
|
|
List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* L_30 = __this->___collapsedLogEntriesTimestamps_80;
|
|
int32_t L_31 = V_2;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_32;
|
|
L_32 = List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8(L_30, L_31, List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8_RuntimeMethod_var);
|
|
DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855(L_29, L_32, DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00e4:
|
|
{
|
|
// for( int i = 0, count = collapsedLogEntries.Count; i < count; i++ )
|
|
int32_t L_33 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_33, 1));
|
|
}
|
|
|
|
IL_00e8:
|
|
{
|
|
// for( int i = 0, count = collapsedLogEntries.Count; i < count; i++ )
|
|
int32_t L_34 = V_2;
|
|
int32_t L_35 = V_3;
|
|
if ((((int32_t)L_34) < ((int32_t)L_35)))
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
goto IL_03a2;
|
|
}
|
|
|
|
IL_00f1:
|
|
{
|
|
// if( !isInSearchMode )
|
|
bool L_36 = __this->___isInSearchMode_77;
|
|
if (L_36)
|
|
{
|
|
goto IL_0154;
|
|
}
|
|
}
|
|
{
|
|
// for( int i = 0, count = uncollapsedLogEntriesIndices.Count; i < count; i++ )
|
|
V_4 = 0;
|
|
// for( int i = 0, count = uncollapsedLogEntriesIndices.Count; i < count; i++ )
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_37 = __this->___uncollapsedLogEntriesIndices_82;
|
|
int32_t L_38;
|
|
L_38 = DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_inline(L_37, DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
V_5 = L_38;
|
|
goto IL_0149;
|
|
}
|
|
|
|
IL_010b:
|
|
{
|
|
// indicesOfListEntriesToShow.Add( uncollapsedLogEntriesIndices[i] );
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_39 = __this->___indicesOfListEntriesToShow_84;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_40 = __this->___uncollapsedLogEntriesIndices_82;
|
|
int32_t L_41 = V_4;
|
|
int32_t L_42;
|
|
L_42 = DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A(L_40, L_41, DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var);
|
|
DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4(L_39, L_42, DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4_RuntimeMethod_var);
|
|
// if( timestampsOfListEntriesToShow != null )
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_43 = __this->___timestampsOfListEntriesToShow_85;
|
|
if (!L_43)
|
|
{
|
|
goto IL_0143;
|
|
}
|
|
}
|
|
{
|
|
// timestampsOfListEntriesToShow.Add( uncollapsedLogEntriesTimestamps[i] );
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_44 = __this->___timestampsOfListEntriesToShow_85;
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_45 = __this->___uncollapsedLogEntriesTimestamps_83;
|
|
int32_t L_46 = V_4;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_47;
|
|
L_47 = DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695(L_45, L_46, DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_RuntimeMethod_var);
|
|
DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855(L_44, L_47, DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0143:
|
|
{
|
|
// for( int i = 0, count = uncollapsedLogEntriesIndices.Count; i < count; i++ )
|
|
int32_t L_48 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_48, 1));
|
|
}
|
|
|
|
IL_0149:
|
|
{
|
|
// for( int i = 0, count = uncollapsedLogEntriesIndices.Count; i < count; i++ )
|
|
int32_t L_49 = V_4;
|
|
int32_t L_50 = V_5;
|
|
if ((((int32_t)L_49) < ((int32_t)L_50)))
|
|
{
|
|
goto IL_010b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_03a2;
|
|
}
|
|
|
|
IL_0154:
|
|
{
|
|
// for( int i = 0, count = uncollapsedLogEntriesIndices.Count; i < count; i++ )
|
|
V_6 = 0;
|
|
// for( int i = 0, count = uncollapsedLogEntriesIndices.Count; i < count; i++ )
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_51 = __this->___uncollapsedLogEntriesIndices_82;
|
|
int32_t L_52;
|
|
L_52 = DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_inline(L_51, DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
V_7 = L_52;
|
|
goto IL_01c9;
|
|
}
|
|
|
|
IL_0166:
|
|
{
|
|
// if( collapsedLogEntries[uncollapsedLogEntriesIndices[i]].MatchesSearchTerm( searchTerm ) )
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_53 = __this->___collapsedLogEntries_79;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_54 = __this->___uncollapsedLogEntriesIndices_82;
|
|
int32_t L_55 = V_6;
|
|
int32_t L_56;
|
|
L_56 = DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A(L_54, L_55, DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var);
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_57;
|
|
L_57 = List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78(L_53, L_56, List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
String_t* L_58 = __this->___searchTerm_76;
|
|
bool L_59;
|
|
L_59 = DebugLogEntry_MatchesSearchTerm_m2A8682D30E6BAA04DD077A48EB81D85287DC96A2(L_57, L_58, NULL);
|
|
if (!L_59)
|
|
{
|
|
goto IL_01c3;
|
|
}
|
|
}
|
|
{
|
|
// indicesOfListEntriesToShow.Add( uncollapsedLogEntriesIndices[i] );
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_60 = __this->___indicesOfListEntriesToShow_84;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_61 = __this->___uncollapsedLogEntriesIndices_82;
|
|
int32_t L_62 = V_6;
|
|
int32_t L_63;
|
|
L_63 = DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A(L_61, L_62, DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var);
|
|
DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4(L_60, L_63, DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4_RuntimeMethod_var);
|
|
// if( timestampsOfListEntriesToShow != null )
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_64 = __this->___timestampsOfListEntriesToShow_85;
|
|
if (!L_64)
|
|
{
|
|
goto IL_01c3;
|
|
}
|
|
}
|
|
{
|
|
// timestampsOfListEntriesToShow.Add( uncollapsedLogEntriesTimestamps[i] );
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_65 = __this->___timestampsOfListEntriesToShow_85;
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_66 = __this->___uncollapsedLogEntriesTimestamps_83;
|
|
int32_t L_67 = V_6;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_68;
|
|
L_68 = DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695(L_66, L_67, DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_RuntimeMethod_var);
|
|
DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855(L_65, L_68, DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_01c3:
|
|
{
|
|
// for( int i = 0, count = uncollapsedLogEntriesIndices.Count; i < count; i++ )
|
|
int32_t L_69 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_69, 1));
|
|
}
|
|
|
|
IL_01c9:
|
|
{
|
|
// for( int i = 0, count = uncollapsedLogEntriesIndices.Count; i < count; i++ )
|
|
int32_t L_70 = V_6;
|
|
int32_t L_71 = V_7;
|
|
if ((((int32_t)L_70) < ((int32_t)L_71)))
|
|
{
|
|
goto IL_0166;
|
|
}
|
|
}
|
|
{
|
|
goto IL_03a2;
|
|
}
|
|
|
|
IL_01d4:
|
|
{
|
|
// bool isInfoEnabled = ( logFilter & DebugLogFilter.Info ) == DebugLogFilter.Info;
|
|
int32_t L_72 = __this->___logFilter_75;
|
|
V_8 = (bool)((((int32_t)((int32_t)((int32_t)L_72&1))) == ((int32_t)1))? 1 : 0);
|
|
// bool isWarningEnabled = ( logFilter & DebugLogFilter.Warning ) == DebugLogFilter.Warning;
|
|
int32_t L_73 = __this->___logFilter_75;
|
|
V_9 = (bool)((((int32_t)((int32_t)((int32_t)L_73&2))) == ((int32_t)2))? 1 : 0);
|
|
// bool isErrorEnabled = ( logFilter & DebugLogFilter.Error ) == DebugLogFilter.Error;
|
|
int32_t L_74 = __this->___logFilter_75;
|
|
V_10 = (bool)((((int32_t)((int32_t)((int32_t)L_74&4))) == ((int32_t)4))? 1 : 0);
|
|
// if( isCollapseOn )
|
|
bool L_75 = __this->___isCollapseOn_74;
|
|
if (!L_75)
|
|
{
|
|
goto IL_02ca;
|
|
}
|
|
}
|
|
{
|
|
// for( int i = 0, count = collapsedLogEntries.Count; i < count; i++ )
|
|
V_11 = 0;
|
|
// for( int i = 0, count = collapsedLogEntries.Count; i < count; i++ )
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_76 = __this->___collapsedLogEntries_79;
|
|
int32_t L_77;
|
|
L_77 = List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_inline(L_76, List_1_get_Count_m24702D3DA4172AAB9DF4CF55E21126924D97BD7A_RuntimeMethod_var);
|
|
V_12 = L_77;
|
|
goto IL_02bc;
|
|
}
|
|
|
|
IL_021b:
|
|
{
|
|
// DebugLogEntry logEntry = collapsedLogEntries[i];
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_78 = __this->___collapsedLogEntries_79;
|
|
int32_t L_79 = V_11;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_80;
|
|
L_80 = List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78(L_78, L_79, List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
V_13 = L_80;
|
|
// if( isInSearchMode && !logEntry.MatchesSearchTerm( searchTerm ) )
|
|
bool L_81 = __this->___isInSearchMode_77;
|
|
if (!L_81)
|
|
{
|
|
goto IL_0241;
|
|
}
|
|
}
|
|
{
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_82 = V_13;
|
|
String_t* L_83 = __this->___searchTerm_76;
|
|
bool L_84;
|
|
L_84 = DebugLogEntry_MatchesSearchTerm_m2A8682D30E6BAA04DD077A48EB81D85287DC96A2(L_82, L_83, NULL);
|
|
if (!L_84)
|
|
{
|
|
goto IL_02b6;
|
|
}
|
|
}
|
|
|
|
IL_0241:
|
|
{
|
|
// bool shouldShowLog = false;
|
|
V_14 = (bool)0;
|
|
// if( logEntry.logTypeSpriteRepresentation == infoLog )
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_85 = V_13;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_86 = L_85->___logTypeSpriteRepresentation_4;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_87 = __this->___infoLog_28;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_88;
|
|
L_88 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_86, L_87, NULL);
|
|
if (!L_88)
|
|
{
|
|
goto IL_0261;
|
|
}
|
|
}
|
|
{
|
|
// if( isInfoEnabled )
|
|
bool L_89 = V_8;
|
|
if (!L_89)
|
|
{
|
|
goto IL_0285;
|
|
}
|
|
}
|
|
{
|
|
// shouldShowLog = true;
|
|
V_14 = (bool)1;
|
|
goto IL_0285;
|
|
}
|
|
|
|
IL_0261:
|
|
{
|
|
// else if( logEntry.logTypeSpriteRepresentation == warningLog )
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_90 = V_13;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_91 = L_90->___logTypeSpriteRepresentation_4;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_92 = __this->___warningLog_29;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_93;
|
|
L_93 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_91, L_92, NULL);
|
|
if (!L_93)
|
|
{
|
|
goto IL_027e;
|
|
}
|
|
}
|
|
{
|
|
// if( isWarningEnabled )
|
|
bool L_94 = V_9;
|
|
if (!L_94)
|
|
{
|
|
goto IL_0285;
|
|
}
|
|
}
|
|
{
|
|
// shouldShowLog = true;
|
|
V_14 = (bool)1;
|
|
goto IL_0285;
|
|
}
|
|
|
|
IL_027e:
|
|
{
|
|
// else if( isErrorEnabled )
|
|
bool L_95 = V_10;
|
|
if (!L_95)
|
|
{
|
|
goto IL_0285;
|
|
}
|
|
}
|
|
{
|
|
// shouldShowLog = true;
|
|
V_14 = (bool)1;
|
|
}
|
|
|
|
IL_0285:
|
|
{
|
|
// if( shouldShowLog )
|
|
bool L_96 = V_14;
|
|
if (!L_96)
|
|
{
|
|
goto IL_02b6;
|
|
}
|
|
}
|
|
{
|
|
// indicesOfListEntriesToShow.Add( i );
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_97 = __this->___indicesOfListEntriesToShow_84;
|
|
int32_t L_98 = V_11;
|
|
DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4(L_97, L_98, DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4_RuntimeMethod_var);
|
|
// if( timestampsOfListEntriesToShow != null )
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_99 = __this->___timestampsOfListEntriesToShow_85;
|
|
if (!L_99)
|
|
{
|
|
goto IL_02b6;
|
|
}
|
|
}
|
|
{
|
|
// timestampsOfListEntriesToShow.Add( collapsedLogEntriesTimestamps[i] );
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_100 = __this->___timestampsOfListEntriesToShow_85;
|
|
List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* L_101 = __this->___collapsedLogEntriesTimestamps_80;
|
|
int32_t L_102 = V_11;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_103;
|
|
L_103 = List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8(L_101, L_102, List_1_get_Item_m8A99F9C4A02B3A1D38702AD7B309F56CCFF299E8_RuntimeMethod_var);
|
|
DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855(L_100, L_103, DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_02b6:
|
|
{
|
|
// for( int i = 0, count = collapsedLogEntries.Count; i < count; i++ )
|
|
int32_t L_104 = V_11;
|
|
V_11 = ((int32_t)il2cpp_codegen_add(L_104, 1));
|
|
}
|
|
|
|
IL_02bc:
|
|
{
|
|
// for( int i = 0, count = collapsedLogEntries.Count; i < count; i++ )
|
|
int32_t L_105 = V_11;
|
|
int32_t L_106 = V_12;
|
|
if ((((int32_t)L_105) < ((int32_t)L_106)))
|
|
{
|
|
goto IL_021b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_03a2;
|
|
}
|
|
|
|
IL_02ca:
|
|
{
|
|
// for( int i = 0, count = uncollapsedLogEntriesIndices.Count; i < count; i++ )
|
|
V_15 = 0;
|
|
// for( int i = 0, count = uncollapsedLogEntriesIndices.Count; i < count; i++ )
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_107 = __this->___uncollapsedLogEntriesIndices_82;
|
|
int32_t L_108;
|
|
L_108 = DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_inline(L_107, DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
V_16 = L_108;
|
|
goto IL_0399;
|
|
}
|
|
|
|
IL_02df:
|
|
{
|
|
// DebugLogEntry logEntry = collapsedLogEntries[uncollapsedLogEntriesIndices[i]];
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_109 = __this->___collapsedLogEntries_79;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_110 = __this->___uncollapsedLogEntriesIndices_82;
|
|
int32_t L_111 = V_15;
|
|
int32_t L_112;
|
|
L_112 = DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A(L_110, L_111, DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var);
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_113;
|
|
L_113 = List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78(L_109, L_112, List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
V_17 = L_113;
|
|
// if( isInSearchMode && !logEntry.MatchesSearchTerm( searchTerm ) )
|
|
bool L_114 = __this->___isInSearchMode_77;
|
|
if (!L_114)
|
|
{
|
|
goto IL_0313;
|
|
}
|
|
}
|
|
{
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_115 = V_17;
|
|
String_t* L_116 = __this->___searchTerm_76;
|
|
bool L_117;
|
|
L_117 = DebugLogEntry_MatchesSearchTerm_m2A8682D30E6BAA04DD077A48EB81D85287DC96A2(L_115, L_116, NULL);
|
|
if (!L_117)
|
|
{
|
|
goto IL_0393;
|
|
}
|
|
}
|
|
|
|
IL_0313:
|
|
{
|
|
// bool shouldShowLog = false;
|
|
V_18 = (bool)0;
|
|
// if( logEntry.logTypeSpriteRepresentation == infoLog )
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_118 = V_17;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_119 = L_118->___logTypeSpriteRepresentation_4;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_120 = __this->___infoLog_28;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_121;
|
|
L_121 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_119, L_120, NULL);
|
|
if (!L_121)
|
|
{
|
|
goto IL_0333;
|
|
}
|
|
}
|
|
{
|
|
// if( isInfoEnabled )
|
|
bool L_122 = V_8;
|
|
if (!L_122)
|
|
{
|
|
goto IL_0357;
|
|
}
|
|
}
|
|
{
|
|
// shouldShowLog = true;
|
|
V_18 = (bool)1;
|
|
goto IL_0357;
|
|
}
|
|
|
|
IL_0333:
|
|
{
|
|
// else if( logEntry.logTypeSpriteRepresentation == warningLog )
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_123 = V_17;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_124 = L_123->___logTypeSpriteRepresentation_4;
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_125 = __this->___warningLog_29;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_126;
|
|
L_126 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_124, L_125, NULL);
|
|
if (!L_126)
|
|
{
|
|
goto IL_0350;
|
|
}
|
|
}
|
|
{
|
|
// if( isWarningEnabled )
|
|
bool L_127 = V_9;
|
|
if (!L_127)
|
|
{
|
|
goto IL_0357;
|
|
}
|
|
}
|
|
{
|
|
// shouldShowLog = true;
|
|
V_18 = (bool)1;
|
|
goto IL_0357;
|
|
}
|
|
|
|
IL_0350:
|
|
{
|
|
// else if( isErrorEnabled )
|
|
bool L_128 = V_10;
|
|
if (!L_128)
|
|
{
|
|
goto IL_0357;
|
|
}
|
|
}
|
|
{
|
|
// shouldShowLog = true;
|
|
V_18 = (bool)1;
|
|
}
|
|
|
|
IL_0357:
|
|
{
|
|
// if( shouldShowLog )
|
|
bool L_129 = V_18;
|
|
if (!L_129)
|
|
{
|
|
goto IL_0393;
|
|
}
|
|
}
|
|
{
|
|
// indicesOfListEntriesToShow.Add( uncollapsedLogEntriesIndices[i] );
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_130 = __this->___indicesOfListEntriesToShow_84;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_131 = __this->___uncollapsedLogEntriesIndices_82;
|
|
int32_t L_132 = V_15;
|
|
int32_t L_133;
|
|
L_133 = DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A(L_131, L_132, DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var);
|
|
DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4(L_130, L_133, DebugLogIndexList_1_Add_m57D59806DEFED06DD2DE08874DE4D79106D8ABC4_RuntimeMethod_var);
|
|
// if( timestampsOfListEntriesToShow != null )
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_134 = __this->___timestampsOfListEntriesToShow_85;
|
|
if (!L_134)
|
|
{
|
|
goto IL_0393;
|
|
}
|
|
}
|
|
{
|
|
// timestampsOfListEntriesToShow.Add( uncollapsedLogEntriesTimestamps[i] );
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_135 = __this->___timestampsOfListEntriesToShow_85;
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_136 = __this->___uncollapsedLogEntriesTimestamps_83;
|
|
int32_t L_137 = V_15;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_138;
|
|
L_138 = DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695(L_136, L_137, DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_RuntimeMethod_var);
|
|
DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855(L_135, L_138, DebugLogIndexList_1_Add_mD80C404BCE28CCECFBBFAB053D02ED551420B855_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0393:
|
|
{
|
|
// for( int i = 0, count = uncollapsedLogEntriesIndices.Count; i < count; i++ )
|
|
int32_t L_139 = V_15;
|
|
V_15 = ((int32_t)il2cpp_codegen_add(L_139, 1));
|
|
}
|
|
|
|
IL_0399:
|
|
{
|
|
// for( int i = 0, count = uncollapsedLogEntriesIndices.Count; i < count; i++ )
|
|
int32_t L_140 = V_15;
|
|
int32_t L_141 = V_16;
|
|
if ((((int32_t)L_140) < ((int32_t)L_141)))
|
|
{
|
|
goto IL_02df;
|
|
}
|
|
}
|
|
|
|
IL_03a2:
|
|
{
|
|
// recycledListView.DeselectSelectedLogItem();
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_142 = __this->___recycledListView_64;
|
|
DebugLogRecycledListView_DeselectSelectedLogItem_m04DC7746AB16AF9D1B7E9D9747ACA6B70787BF63(L_142, NULL);
|
|
// recycledListView.OnLogEntriesUpdated( true );
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_143 = __this->___recycledListView_64;
|
|
DebugLogRecycledListView_OnLogEntriesUpdated_m31B75B0BEFE49F0A6C735132A24575ED537259F1(L_143, (bool)1, NULL);
|
|
// ValidateScrollPosition();
|
|
DebugLogManager_ValidateScrollPosition_m2A11C6555ED058C996C5116F208E953848D479FF(__this, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.String IngameDebugConsole.DebugLogManager::GetAllLogs()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DebugLogManager_GetAllLogs_mE3A04FBEB916F84E6947FE1576EDFD1E003D7ABF (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1168E92C164109D6220480DEDA987085B2A21155);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
StringBuilder_t* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* V_7 = NULL;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 V_8;
|
|
memset((&V_8), 0, sizeof(V_8));
|
|
{
|
|
// int count = uncollapsedLogEntriesIndices.Count;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_0 = __this->___uncollapsedLogEntriesIndices_82;
|
|
int32_t L_1;
|
|
L_1 = DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_inline(L_0, DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
// int length = 0;
|
|
V_1 = 0;
|
|
// int newLineLength = System.Environment.NewLine.Length;
|
|
String_t* L_2;
|
|
L_2 = Environment_get_NewLine_m8BF68A4EFDAFFB66500984CE779629811BA98FFF(NULL);
|
|
int32_t L_3;
|
|
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
|
|
V_2 = L_3;
|
|
// for( int i = 0; i < count; i++ )
|
|
V_4 = 0;
|
|
goto IL_005e;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
// DebugLogEntry entry = collapsedLogEntries[uncollapsedLogEntriesIndices[i]];
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_4 = __this->___collapsedLogEntries_79;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_5 = __this->___uncollapsedLogEntriesIndices_82;
|
|
int32_t L_6 = V_4;
|
|
int32_t L_7;
|
|
L_7 = DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A(L_5, L_6, DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var);
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_8;
|
|
L_8 = List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78(L_4, L_7, List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
V_5 = L_8;
|
|
// length += entry.logString.Length + entry.stackTrace.Length + newLineLength * 3;
|
|
int32_t L_9 = V_1;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_10 = V_5;
|
|
String_t* L_11 = L_10->___logString_1;
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_13 = V_5;
|
|
String_t* L_14 = L_13->___stackTrace_2;
|
|
int32_t L_15;
|
|
L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL);
|
|
int32_t L_16 = V_2;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_9, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(L_12, L_15)), ((int32_t)il2cpp_codegen_multiply(L_16, 3))))));
|
|
// for( int i = 0; i < count; i++ )
|
|
int32_t L_17 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
// for( int i = 0; i < count; i++ )
|
|
int32_t L_18 = V_4;
|
|
int32_t L_19 = V_0;
|
|
if ((((int32_t)L_18) < ((int32_t)L_19)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
// if( uncollapsedLogEntriesTimestamps != null )
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_20 = __this->___uncollapsedLogEntriesTimestamps_83;
|
|
if (!L_20)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
// length += count * 12; // Timestamp: "[HH:mm:ss]: "
|
|
int32_t L_21 = V_1;
|
|
int32_t L_22 = V_0;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_21, ((int32_t)il2cpp_codegen_multiply(L_22, ((int32_t)12)))));
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
// length += 100; // Just in case...
|
|
int32_t L_23 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_23, ((int32_t)100)));
|
|
// StringBuilder sb = new StringBuilder( length );
|
|
int32_t L_24 = V_1;
|
|
StringBuilder_t* L_25 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
|
|
StringBuilder__ctor_m2619CA8D2C3476DF1A302D9D941498BB1C6164C5(L_25, L_24, NULL);
|
|
V_3 = L_25;
|
|
// for( int i = 0; i < count; i++ )
|
|
V_6 = 0;
|
|
goto IL_00ed;
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
// DebugLogEntry entry = collapsedLogEntries[uncollapsedLogEntriesIndices[i]];
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_26 = __this->___collapsedLogEntries_79;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_27 = __this->___uncollapsedLogEntriesIndices_82;
|
|
int32_t L_28 = V_6;
|
|
int32_t L_29;
|
|
L_29 = DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A(L_27, L_28, DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var);
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_30;
|
|
L_30 = List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78(L_26, L_29, List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
V_7 = L_30;
|
|
// if( uncollapsedLogEntriesTimestamps != null )
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_31 = __this->___uncollapsedLogEntriesTimestamps_83;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00c8;
|
|
}
|
|
}
|
|
{
|
|
// uncollapsedLogEntriesTimestamps[i].AppendTime( sb );
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_32 = __this->___uncollapsedLogEntriesTimestamps_83;
|
|
int32_t L_33 = V_6;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_34;
|
|
L_34 = DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695(L_32, L_33, DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_RuntimeMethod_var);
|
|
V_8 = L_34;
|
|
StringBuilder_t* L_35 = V_3;
|
|
DebugLogEntryTimestamp_AppendTime_m1613293116BEC3BBEB7E957432B2FDF34B0E593C((&V_8), L_35, NULL);
|
|
// sb.Append( ": " );
|
|
StringBuilder_t* L_36 = V_3;
|
|
StringBuilder_t* L_37;
|
|
L_37 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_36, _stringLiteral1168E92C164109D6220480DEDA987085B2A21155, NULL);
|
|
}
|
|
|
|
IL_00c8:
|
|
{
|
|
// sb.AppendLine( entry.logString ).AppendLine( entry.stackTrace ).AppendLine();
|
|
StringBuilder_t* L_38 = V_3;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_39 = V_7;
|
|
String_t* L_40 = L_39->___logString_1;
|
|
StringBuilder_t* L_41;
|
|
L_41 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_38, L_40, NULL);
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_42 = V_7;
|
|
String_t* L_43 = L_42->___stackTrace_2;
|
|
StringBuilder_t* L_44;
|
|
L_44 = StringBuilder_AppendLine_mF75744CE941C63E33188E22E936B71A24D3CBF88(L_41, L_43, NULL);
|
|
StringBuilder_t* L_45;
|
|
L_45 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_44, NULL);
|
|
// for( int i = 0; i < count; i++ )
|
|
int32_t L_46 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_46, 1));
|
|
}
|
|
|
|
IL_00ed:
|
|
{
|
|
// for( int i = 0; i < count; i++ )
|
|
int32_t L_47 = V_6;
|
|
int32_t L_48 = V_0;
|
|
if ((((int32_t)L_47) < ((int32_t)L_48)))
|
|
{
|
|
goto IL_0083;
|
|
}
|
|
}
|
|
{
|
|
// return sb.ToString();
|
|
StringBuilder_t* L_49 = V_3;
|
|
String_t* L_50;
|
|
L_50 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_49);
|
|
return L_50;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::SaveLogsToFile()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_SaveLogsToFile_mA732B3362E923B9B400117C7D6A249E2078BB3E1 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral46397406B63E1E597FEFA423B35211F7B950C788);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D2D60FB81DB361B60B9512761B3ED9FF250BB96);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
// SaveLogsToFile( Path.Combine( Application.persistentDataPath, System.DateTime.Now.ToString( "dd-MM-yyyy--HH-mm-ss" ) + ".txt" ) );
|
|
String_t* L_0;
|
|
L_0 = Application_get_persistentDataPath_mC58BD3E1A20732E0A536491DBCAE6505B1624399(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1;
|
|
L_1 = DateTime_get_Now_m636CB9651A9099D20BA1CF813A0C69637317325C(NULL);
|
|
V_0 = L_1;
|
|
String_t* L_2;
|
|
L_2 = DateTime_ToString_m6963A84785C320DA776C9FCFFEDAF26C8F1A8D78((&V_0), _stringLiteral46397406B63E1E597FEFA423B35211F7B950C788, NULL);
|
|
String_t* L_3;
|
|
L_3 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_2, _stringLiteral6D2D60FB81DB361B60B9512761B3ED9FF250BB96, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
|
|
String_t* L_4;
|
|
L_4 = Path_Combine_m1ADAC05CDA2D1D61B172DF65A81E86592696BEAE(L_0, L_3, NULL);
|
|
DebugLogManager_SaveLogsToFile_mF9FAE140F4FA5B15748622C1FBEC0760BBDE9508(__this, L_4, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::SaveLogsToFile(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_SaveLogsToFile_mF9FAE140F4FA5B15748622C1FBEC0760BBDE9508 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, String_t* ___filePath0, 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*)&_stringLiteralC890860BB91B6719189E6ABF97BF5E67F3B0AD2F);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// File.WriteAllText( filePath, GetAllLogs() );
|
|
String_t* L_0 = ___filePath0;
|
|
String_t* L_1;
|
|
L_1 = DebugLogManager_GetAllLogs_mE3A04FBEB916F84E6947FE1576EDFD1E003D7ABF(__this, NULL);
|
|
File_WriteAllText_m8AE8932A417928EF1E86F1E6B37C7A41904614D1(L_0, L_1, NULL);
|
|
// Debug.Log( "Logs saved to: " + filePath );
|
|
String_t* L_2 = ___filePath0;
|
|
String_t* L_3;
|
|
L_3 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralC890860BB91B6719189E6ABF97BF5E67F3B0AD2F, L_2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Log_m87A9A3C761FF5C43ED8A53B16190A53D08F818BB(L_3, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::CheckScreenCutout()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_CheckScreenCutout_mFC29A7A8AE07E6607FDDF23273C1C4F34A0EDF43 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// if( !avoidScreenCutout )
|
|
bool L_0 = __this->___avoidScreenCutout_24;
|
|
// return;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::PoolLogItem(IngameDebugConsole.DebugLogItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_PoolLogItem_m50869AD2E15FB447682B47A83D7B06DED349B736 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___logItem0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m8054DB29304F9BB63B9ACBD183F0E98428FDCA86_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// logItem.CanvasGroup.alpha = 0f;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_0 = ___logItem0;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_1;
|
|
L_1 = DebugLogItem_get_CanvasGroup_m54F87E5DE59659B77527BE8B0163A02963A1C0DB_inline(L_0, NULL);
|
|
CanvasGroup_set_alpha_m5C06839316D948BB4F75ED72C87FA1F1A20C333F(L_1, (0.0f), NULL);
|
|
// logItem.CanvasGroup.blocksRaycasts = false;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_2 = ___logItem0;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_3;
|
|
L_3 = DebugLogItem_get_CanvasGroup_m54F87E5DE59659B77527BE8B0163A02963A1C0DB_inline(L_2, NULL);
|
|
CanvasGroup_set_blocksRaycasts_m6C17F35782D16AE3FC42FCD1A4D68E1C4A4776E0(L_3, (bool)0, NULL);
|
|
// pooledLogItems.Add( logItem );
|
|
List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14* L_4 = __this->___pooledLogItems_101;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_5 = ___logItem0;
|
|
List_1_Add_m8054DB29304F9BB63B9ACBD183F0E98428FDCA86_inline(L_4, L_5, List_1_Add_m8054DB29304F9BB63B9ACBD183F0E98428FDCA86_RuntimeMethod_var);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// IngameDebugConsole.DebugLogItem IngameDebugConsole.DebugLogManager::PopLogItem()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* DebugLogManager_PopLogItem_m854ED51B251AD048C1097A5BF3F6E8518504E0EA (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m9CD17F82D874520655B6F7A8A5C80CE4338A0FA0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m1FB42CA14EF53D0F281649D58B4B43D0D17D2608_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m4F5E4A5103386DC79FDB5E944976BF4F2AE74D72_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_Instantiate_TisDebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230_m5AB9007F059CB3FFCE6D1C9C5607A53ACB43871B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* V_0 = NULL;
|
|
{
|
|
// if( pooledLogItems.Count > 0 )
|
|
List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14* L_0 = __this->___pooledLogItems_101;
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_m1FB42CA14EF53D0F281649D58B4B43D0D17D2608_inline(L_0, List_1_get_Count_m1FB42CA14EF53D0F281649D58B4B43D0D17D2608_RuntimeMethod_var);
|
|
if ((((int32_t)L_1) <= ((int32_t)0)))
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
// newLogItem = pooledLogItems[pooledLogItems.Count - 1];
|
|
List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14* L_2 = __this->___pooledLogItems_101;
|
|
List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14* L_3 = __this->___pooledLogItems_101;
|
|
int32_t L_4;
|
|
L_4 = List_1_get_Count_m1FB42CA14EF53D0F281649D58B4B43D0D17D2608_inline(L_3, List_1_get_Count_m1FB42CA14EF53D0F281649D58B4B43D0D17D2608_RuntimeMethod_var);
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_5;
|
|
L_5 = List_1_get_Item_m4F5E4A5103386DC79FDB5E944976BF4F2AE74D72(L_2, ((int32_t)il2cpp_codegen_subtract(L_4, 1)), List_1_get_Item_m4F5E4A5103386DC79FDB5E944976BF4F2AE74D72_RuntimeMethod_var);
|
|
V_0 = L_5;
|
|
// pooledLogItems.RemoveAt( pooledLogItems.Count - 1 );
|
|
List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14* L_6 = __this->___pooledLogItems_101;
|
|
List_1_tB8BF7A03E29B1B7F2ED48ABF90D4F6B19C804C14* L_7 = __this->___pooledLogItems_101;
|
|
int32_t L_8;
|
|
L_8 = List_1_get_Count_m1FB42CA14EF53D0F281649D58B4B43D0D17D2608_inline(L_7, List_1_get_Count_m1FB42CA14EF53D0F281649D58B4B43D0D17D2608_RuntimeMethod_var);
|
|
List_1_RemoveAt_m9CD17F82D874520655B6F7A8A5C80CE4338A0FA0(L_6, ((int32_t)il2cpp_codegen_subtract(L_8, 1)), List_1_RemoveAt_m9CD17F82D874520655B6F7A8A5C80CE4338A0FA0_RuntimeMethod_var);
|
|
// newLogItem.CanvasGroup.alpha = 1f;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_9 = V_0;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_10;
|
|
L_10 = DebugLogItem_get_CanvasGroup_m54F87E5DE59659B77527BE8B0163A02963A1C0DB_inline(L_9, NULL);
|
|
CanvasGroup_set_alpha_m5C06839316D948BB4F75ED72C87FA1F1A20C333F(L_10, (1.0f), NULL);
|
|
// newLogItem.CanvasGroup.blocksRaycasts = true;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_11 = V_0;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_12;
|
|
L_12 = DebugLogItem_get_CanvasGroup_m54F87E5DE59659B77527BE8B0163A02963A1C0DB_inline(L_11, NULL);
|
|
CanvasGroup_set_blocksRaycasts_m6C17F35782D16AE3FC42FCD1A4D68E1C4A4776E0(L_12, (bool)1, NULL);
|
|
goto IL_007c;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
// newLogItem = (DebugLogItem) Instantiate( logItemPrefab, logItemsContainer, false );
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_13 = __this->___logItemPrefab_26;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_14 = __this->___logItemsContainer_42;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_15;
|
|
L_15 = Object_Instantiate_TisDebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230_m5AB9007F059CB3FFCE6D1C9C5607A53ACB43871B(L_13, L_14, (bool)0, Object_Instantiate_TisDebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230_m5AB9007F059CB3FFCE6D1C9C5607A53ACB43871B_RuntimeMethod_var);
|
|
V_0 = L_15;
|
|
// newLogItem.Initialize( recycledListView );
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_16 = V_0;
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* L_17 = __this->___recycledListView_64;
|
|
DebugLogItem_Initialize_m97E3F360DFD58E5E911D99472A70BB4DE3B00B64(L_16, L_17, NULL);
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
// return newLogItem;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_18 = V_0;
|
|
return L_18;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager__ctor_mD38909499B725D0F6B87538420F9ED21DE1CBDF6 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2504497CC1E1D7D1E44F1FC97ACC848FEFB0A4F0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCBE844AF922BC0AC1AB4CA94466DC7FD7038D0E2);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// private bool singleton = true;
|
|
__this->___singleton_5 = (bool)1;
|
|
// private float minimumHeight = 200f;
|
|
__this->___minimumHeight_6 = (200.0f);
|
|
// private bool resizeFromRight = true;
|
|
__this->___resizeFromRight_8 = (bool)1;
|
|
// private float minimumWidth = 240f;
|
|
__this->___minimumWidth_9 = (240.0f);
|
|
// private bool enablePopup = true;
|
|
__this->___enablePopup_10 = (bool)1;
|
|
// private bool startInPopupMode = true;
|
|
__this->___startInPopupMode_11 = (bool)1;
|
|
// private KeyCode toggleKey = KeyCode.BackQuote;
|
|
__this->___toggleKey_14 = ((int32_t)96);
|
|
// private bool enableSearchbar = true;
|
|
__this->___enableSearchbar_15 = (bool)1;
|
|
// private float topSearchbarMinWidth = 360f;
|
|
__this->___topSearchbarMinWidth_16 = (360.0f);
|
|
// private bool clearCommandAfterExecution = true;
|
|
__this->___clearCommandAfterExecution_19 = (bool)1;
|
|
// private int commandHistorySize = 15;
|
|
__this->___commandHistorySize_20 = ((int32_t)15);
|
|
// private bool showCommandSuggestions = true;
|
|
__this->___showCommandSuggestions_21 = (bool)1;
|
|
// private bool avoidScreenCutout = true;
|
|
__this->___avoidScreenCutout_24 = (bool)1;
|
|
// private int maxLogLength = 10000;
|
|
__this->___maxLogLength_25 = ((int32_t)10000);
|
|
// private string commandSuggestionHighlightStart = "<color=orange>";
|
|
__this->___commandSuggestionHighlightStart_38 = _stringLiteral2504497CC1E1D7D1E44F1FC97ACC848FEFB0A4F0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___commandSuggestionHighlightStart_38), (void*)_stringLiteral2504497CC1E1D7D1E44F1FC97ACC848FEFB0A4F0);
|
|
// private string commandSuggestionHighlightEnd = "</color>";
|
|
__this->___commandSuggestionHighlightEnd_39 = _stringLiteralCBE844AF922BC0AC1AB4CA94466DC7FD7038D0E2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___commandSuggestionHighlightEnd_39), (void*)_stringLiteralCBE844AF922BC0AC1AB4CA94466DC7FD7038D0E2);
|
|
// private bool isLogWindowVisible = true;
|
|
__this->___isLogWindowVisible_65 = (bool)1;
|
|
// private bool screenDimensionsChanged = true;
|
|
__this->___screenDimensionsChanged_66 = (bool)1;
|
|
// private DebugLogFilter logFilter = DebugLogFilter.All;
|
|
__this->___logFilter_75 = 7;
|
|
// private bool snapToBottom = true;
|
|
__this->___snapToBottom_78 = (bool)1;
|
|
// private int indexOfLogEntryToSelectAndFocus = -1;
|
|
__this->___indexOfLogEntryToSelectAndFocus_86 = (-1);
|
|
// private int commandInputFieldPrevParamCount = -1;
|
|
__this->___commandInputFieldPrevParamCount_97 = (-1);
|
|
// private int commandInputFieldPrevCaretPos = -1;
|
|
__this->___commandInputFieldPrevCaretPos_98 = (-1);
|
|
// private int commandInputFieldPrevCaretArgumentIndex = -1;
|
|
__this->___commandInputFieldPrevCaretArgumentIndex_99 = (-1);
|
|
// private int commandHistoryIndex = -1;
|
|
__this->___commandHistoryIndex_103 = (-1);
|
|
MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogManager::<Awake>b__114_0()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogManager_U3CAwakeU3Eb__114_0_m8AF192569CFE92C9E05202A07FA156FF8299C909 (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// snapToBottomButton.GetComponent<Button>().onClick.AddListener( () => SetSnapToBottom( true ) );
|
|
DebugLogManager_SetSnapToBottom_m869F0D298244C064CF9C7611B3D11F198433D6BC_inline(__this, (bool)1, 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
|
|
// System.Void IngameDebugConsole.DebugLogPopup::Awake()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup_Awake_m822432202D739F363A0347F3C321E9B2B3B23495 (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisCanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094_mA3B0428368982ED39ADEBB220EE67D1E99D8B2D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisImage_tBC1D03F63BF71132E9A5E472B8742F172A011E7E_mE74EE63C85A63FC34DCFC631BC229207B420BC79_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
// popupTransform = (RectTransform) transform;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_0;
|
|
L_0 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371(__this, NULL);
|
|
__this->___popupTransform_4 = ((RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5*)CastclassSealed((RuntimeObject*)L_0, RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_il2cpp_TypeInfo_var));
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___popupTransform_4), (void*)((RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5*)CastclassSealed((RuntimeObject*)L_0, RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5_il2cpp_TypeInfo_var)));
|
|
// backgroundImage = GetComponent<Image>();
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_1;
|
|
L_1 = Component_GetComponent_TisImage_tBC1D03F63BF71132E9A5E472B8742F172A011E7E_mE74EE63C85A63FC34DCFC631BC229207B420BC79(__this, Component_GetComponent_TisImage_tBC1D03F63BF71132E9A5E472B8742F172A011E7E_mE74EE63C85A63FC34DCFC631BC229207B420BC79_RuntimeMethod_var);
|
|
__this->___backgroundImage_6 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___backgroundImage_6), (void*)L_1);
|
|
// canvasGroup = GetComponent<CanvasGroup>();
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_2;
|
|
L_2 = Component_GetComponent_TisCanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094_mA3B0428368982ED39ADEBB220EE67D1E99D8B2D2(__this, Component_GetComponent_TisCanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094_mA3B0428368982ED39ADEBB220EE67D1E99D8B2D2_RuntimeMethod_var);
|
|
__this->___canvasGroup_7 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___canvasGroup_7), (void*)L_2);
|
|
// normalColor = backgroundImage.color;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_3 = __this->___backgroundImage_6;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_4;
|
|
L_4 = VirtualFuncInvoker0< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(22 /* UnityEngine.Color UnityEngine.UI.Graphic::get_color() */, L_3);
|
|
__this->___normalColor_18 = L_4;
|
|
// halfSize = popupTransform.sizeDelta * 0.5f;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_5 = __this->___popupTransform_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB(L_5, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
L_7 = Vector2_op_Multiply_m2D984B613020089BF5165BA4CA10988E2DC771FE_inline(L_6, (0.5f), NULL);
|
|
__this->___halfSize_5 = L_7;
|
|
// Vector2 pos = popupTransform.anchoredPosition;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_8 = __this->___popupTransform_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
L_9 = RectTransform_get_anchoredPosition_m38F25A4253B0905BB058BE73DBF43C7172CE0680(L_8, NULL);
|
|
V_0 = L_9;
|
|
// if( pos.x != 0f || pos.y != 0f )
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = V_0;
|
|
float L_11 = L_10.___x_0;
|
|
if ((!(((float)L_11) == ((float)(0.0f)))))
|
|
{
|
|
goto IL_007b;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12 = V_0;
|
|
float L_13 = L_12.___y_1;
|
|
if ((((float)L_13) == ((float)(0.0f))))
|
|
{
|
|
goto IL_0089;
|
|
}
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
// normalizedPosition = pos.normalized; // Respect the initial popup position set in the prefab
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_14;
|
|
L_14 = Vector2_get_normalized_mF6722883AEFB5027690A778DF8ACC20F0FA65297_inline((&V_0), NULL);
|
|
__this->___normalizedPosition_20 = L_14;
|
|
return;
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
// normalizedPosition = new Vector2( 0.5f, 0f ); // Right edge by default
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_15;
|
|
memset((&L_15), 0, sizeof(L_15));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_15), (0.5f), (0.0f), /*hidden argument*/NULL);
|
|
__this->___normalizedPosition_20 = L_15;
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogPopup::NewLogsArrived(System.Int32,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup_NewLogsArrived_m85EAD7C7DB7DC48013913D26B818DCB25B0AF4AD (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, int32_t ___newInfo0, int32_t ___newWarning1, int32_t ___newError2, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// if( newInfo > 0 )
|
|
int32_t L_0 = ___newInfo0;
|
|
if ((((int32_t)L_0) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
// newInfoCount += newInfo;
|
|
int32_t L_1 = __this->___newInfoCount_15;
|
|
int32_t L_2 = ___newInfo0;
|
|
__this->___newInfoCount_15 = ((int32_t)il2cpp_codegen_add(L_1, L_2));
|
|
// newInfoCountText.text = newInfoCount.ToString();
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_3 = __this->___newInfoCountText_9;
|
|
int32_t* L_4 = (&__this->___newInfoCount_15);
|
|
String_t* L_5;
|
|
L_5 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5(L_4, NULL);
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_3, L_5);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
// if( newWarning > 0 )
|
|
int32_t L_6 = ___newWarning1;
|
|
if ((((int32_t)L_6) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
// newWarningCount += newWarning;
|
|
int32_t L_7 = __this->___newWarningCount_16;
|
|
int32_t L_8 = ___newWarning1;
|
|
__this->___newWarningCount_16 = ((int32_t)il2cpp_codegen_add(L_7, L_8));
|
|
// newWarningCountText.text = newWarningCount.ToString();
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_9 = __this->___newWarningCountText_10;
|
|
int32_t* L_10 = (&__this->___newWarningCount_16);
|
|
String_t* L_11;
|
|
L_11 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5(L_10, NULL);
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_9, L_11);
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
// if( newError > 0 )
|
|
int32_t L_12 = ___newError2;
|
|
if ((((int32_t)L_12) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
{
|
|
// newErrorCount += newError;
|
|
int32_t L_13 = __this->___newErrorCount_17;
|
|
int32_t L_14 = ___newError2;
|
|
__this->___newErrorCount_17 = ((int32_t)il2cpp_codegen_add(L_13, L_14));
|
|
// newErrorCountText.text = newErrorCount.ToString();
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_15 = __this->___newErrorCountText_11;
|
|
int32_t* L_16 = (&__this->___newErrorCount_17);
|
|
String_t* L_17;
|
|
L_17 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5(L_16, NULL);
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_15, L_17);
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
// if( newErrorCount > 0 )
|
|
int32_t L_18 = __this->___newErrorCount_17;
|
|
if ((((int32_t)L_18) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
// backgroundImage.color = alertColorError;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_19 = __this->___backgroundImage_6;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_20 = __this->___alertColorError_14;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_19, L_20);
|
|
return;
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
// else if( newWarningCount > 0 )
|
|
int32_t L_21 = __this->___newWarningCount_16;
|
|
if ((((int32_t)L_21) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00ae;
|
|
}
|
|
}
|
|
{
|
|
// backgroundImage.color = alertColorWarning;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_22 = __this->___backgroundImage_6;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_23 = __this->___alertColorWarning_13;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_22, L_23);
|
|
return;
|
|
}
|
|
|
|
IL_00ae:
|
|
{
|
|
// backgroundImage.color = alertColorInfo;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_24 = __this->___backgroundImage_6;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_25 = __this->___alertColorInfo_12;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_24, L_25);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogPopup::Reset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup_Reset_m10D0DAC90821975E35450A17C30CFC0ADE161D45 (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// newInfoCount = 0;
|
|
__this->___newInfoCount_15 = 0;
|
|
// newWarningCount = 0;
|
|
__this->___newWarningCount_16 = 0;
|
|
// newErrorCount = 0;
|
|
__this->___newErrorCount_17 = 0;
|
|
// newInfoCountText.text = "0";
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_0 = __this->___newInfoCountText_9;
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_0, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
|
|
// newWarningCountText.text = "0";
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_1 = __this->___newWarningCountText_10;
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_1, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
|
|
// newErrorCountText.text = "0";
|
|
Text_tD60B2346DAA6666BF0D822FF607F0B220C2B9E62* L_2 = __this->___newErrorCountText_11;
|
|
VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_2, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024);
|
|
// backgroundImage.color = normalColor;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_3 = __this->___backgroundImage_6;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_4 = __this->___normalColor_18;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_3, L_4);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Collections.IEnumerator IngameDebugConsole.DebugLogPopup::MoveToPosAnimation(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DebugLogPopup_MoveToPosAnimation_mAC680B56F6D56D11D41C8580AD1CF1B0E7DB5ADD (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___targetPos0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B* L_0 = (U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B*)il2cpp_codegen_object_new(U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B_il2cpp_TypeInfo_var);
|
|
U3CMoveToPosAnimationU3Ed__21__ctor_mEBE2673235A90D111A2DC623C41A3D2F7AFB4DC5(L_0, 0, NULL);
|
|
U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B* L_1 = L_0;
|
|
L_1->___U3CU3E4__this_2 = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this_2), (void*)__this);
|
|
U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B* L_2 = L_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___targetPos0;
|
|
L_2->___targetPos_3 = L_3;
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogPopup::OnPointerClick(UnityEngine.EventSystems.PointerEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup_OnPointerClick_mFC4D020F734EC309DC8B73FECFF382727750E616 (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___data0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// if( !isPopupBeingDragged )
|
|
bool L_0 = __this->___isPopupBeingDragged_19;
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
// debugManager.ShowLogWindow();
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_1 = __this->___debugManager_8;
|
|
DebugLogManager_ShowLogWindow_m63344BFB6A91AA1AF6E2706E403EBCF3AE394905(L_1, NULL);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogPopup::Show()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup_Show_m7768CAEB2D2EF3373F587FF5D634BDDD3E2E68E4 (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// canvasGroup.interactable = true;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_0 = __this->___canvasGroup_7;
|
|
CanvasGroup_set_interactable_m86928BB0894EF3F06BC7BE63594272FBA0DAC757(L_0, (bool)1, NULL);
|
|
// canvasGroup.blocksRaycasts = true;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_1 = __this->___canvasGroup_7;
|
|
CanvasGroup_set_blocksRaycasts_m6C17F35782D16AE3FC42FCD1A4D68E1C4A4776E0(L_1, (bool)1, NULL);
|
|
// canvasGroup.alpha = 1f;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_2 = __this->___canvasGroup_7;
|
|
CanvasGroup_set_alpha_m5C06839316D948BB4F75ED72C87FA1F1A20C333F(L_2, (1.0f), NULL);
|
|
// Reset();
|
|
DebugLogPopup_Reset_m10D0DAC90821975E35450A17C30CFC0ADE161D45(__this, NULL);
|
|
// UpdatePosition( true );
|
|
DebugLogPopup_UpdatePosition_mB0222958D440072B2379842CD02756074C379234(__this, (bool)1, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogPopup::Hide()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup_Hide_mA3055E290BA97DFAB66E85D942F0656101926F8C (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// canvasGroup.interactable = false;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_0 = __this->___canvasGroup_7;
|
|
CanvasGroup_set_interactable_m86928BB0894EF3F06BC7BE63594272FBA0DAC757(L_0, (bool)0, NULL);
|
|
// canvasGroup.blocksRaycasts = false;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_1 = __this->___canvasGroup_7;
|
|
CanvasGroup_set_blocksRaycasts_m6C17F35782D16AE3FC42FCD1A4D68E1C4A4776E0(L_1, (bool)0, NULL);
|
|
// canvasGroup.alpha = 0f;
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_2 = __this->___canvasGroup_7;
|
|
CanvasGroup_set_alpha_m5C06839316D948BB4F75ED72C87FA1F1A20C333F(L_2, (0.0f), NULL);
|
|
// isPopupBeingDragged = false;
|
|
__this->___isPopupBeingDragged_19 = (bool)0;
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogPopup::OnBeginDrag(UnityEngine.EventSystems.PointerEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup_OnBeginDrag_m8BA966F3565080AD72122268C693E12F72A626BF (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___data0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// isPopupBeingDragged = true;
|
|
__this->___isPopupBeingDragged_19 = (bool)1;
|
|
// if( moveToPosCoroutine != null )
|
|
RuntimeObject* L_0 = __this->___moveToPosCoroutine_21;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
// StopCoroutine( moveToPosCoroutine );
|
|
RuntimeObject* L_1 = __this->___moveToPosCoroutine_21;
|
|
MonoBehaviour_StopCoroutine_mF9E93B82091E804595BE13AA29F9AB7517F7E04A(__this, L_1, NULL);
|
|
// moveToPosCoroutine = null;
|
|
__this->___moveToPosCoroutine_21 = (RuntimeObject*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___moveToPosCoroutine_21), (void*)(RuntimeObject*)NULL);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogPopup::OnDrag(UnityEngine.EventSystems.PointerEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup_OnDrag_mE90A037DD7F705A66A4E644FC83D290FFD41C1D0 (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___data0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransformUtility_t65C00A84A72F17D78B81F2E7D88C2AA98AB61244_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
// if( RectTransformUtility.ScreenPointToLocalPointInRectangle( debugManager.canvasTR, data.position, data.pressEventCamera, out localPoint ) )
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_0 = __this->___debugManager_8;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_1 = L_0->___canvasTR_41;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_2 = ___data0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
|
|
L_3 = PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline(L_2, NULL);
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_4 = ___data0;
|
|
Camera_tA92CC927D7439999BC82DBEDC0AA45B470F9E184* L_5;
|
|
L_5 = PointerEventData_get_pressEventCamera_m8D6A377D5CA730307D9F8ABB8656FFB8FCD56AE3(L_4, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(RectTransformUtility_t65C00A84A72F17D78B81F2E7D88C2AA98AB61244_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = RectTransformUtility_ScreenPointToLocalPointInRectangle_m01A75CAFB6D1019F1C65BA606635EAB10AF31195(L_1, L_3, L_5, (&V_0), NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
// popupTransform.anchoredPosition = localPoint;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_7 = __this->___popupTransform_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8 = V_0;
|
|
RectTransform_set_anchoredPosition_mF903ACE04F6959B1CD67E2B94FABC0263068F965(L_7, L_8, NULL);
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogPopup::OnEndDrag(UnityEngine.EventSystems.PointerEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup_OnEndDrag_mDC541F3160B4B4DBC0D6FD8B0AA933CAAED4E4F9 (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___data0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// isPopupBeingDragged = false;
|
|
__this->___isPopupBeingDragged_19 = (bool)0;
|
|
// UpdatePosition( false );
|
|
DebugLogPopup_UpdatePosition_mB0222958D440072B2379842CD02756074C379234(__this, (bool)0, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogPopup::UpdatePosition(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup_UpdatePosition_mB0222958D440072B2379842CD02756074C379234 (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __this, bool ___immediately0, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
float V_3 = 0.0f;
|
|
float V_4 = 0.0f;
|
|
float V_5 = 0.0f;
|
|
float V_6 = 0.0f;
|
|
float V_7 = 0.0f;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_8;
|
|
memset((&V_8), 0, sizeof(V_8));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 G_B3_0;
|
|
memset((&G_B3_0), 0, sizeof(G_B3_0));
|
|
{
|
|
// Vector2 canvasSize = debugManager.canvasTR.rect.size;
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_0 = __this->___debugManager_8;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_1 = L_0->___canvasTR_41;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_2;
|
|
L_2 = RectTransform_get_rect_mC82A60F8C3805ED9833508CCC233689641207488(L_1, NULL);
|
|
V_8 = L_2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
|
|
L_3 = Rect_get_size_mFB990FFC0FE0152179C8C74A59E4AC258CB44267((&V_8), NULL);
|
|
// float canvasWidth = canvasSize.x;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = L_3;
|
|
float L_5 = L_4.___x_0;
|
|
V_0 = L_5;
|
|
// float canvasHeight = canvasSize.y;
|
|
float L_6 = L_4.___y_1;
|
|
V_1 = L_6;
|
|
// Vector2 pos = immediately ? new Vector2( normalizedPosition.x * canvasWidth, normalizedPosition.y * canvasHeight ) : popupTransform.anchoredPosition;
|
|
bool L_7 = ___immediately0;
|
|
if (L_7)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_8 = __this->___popupTransform_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
L_9 = RectTransform_get_anchoredPosition_m38F25A4253B0905BB058BE73DBF43C7172CE0680(L_8, NULL);
|
|
G_B3_0 = L_9;
|
|
goto IL_0055;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_10 = (&__this->___normalizedPosition_20);
|
|
float L_11 = L_10->___x_0;
|
|
float L_12 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_13 = (&__this->___normalizedPosition_20);
|
|
float L_14 = L_13->___y_1;
|
|
float L_15 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_16;
|
|
memset((&L_16), 0, sizeof(L_16));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_16), ((float)il2cpp_codegen_multiply(L_11, L_12)), ((float)il2cpp_codegen_multiply(L_14, L_15)), /*hidden argument*/NULL);
|
|
G_B3_0 = L_16;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
V_2 = G_B3_0;
|
|
// float distToLeft = canvasWidth * 0.5f + pos.x;
|
|
float L_17 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_18 = V_2;
|
|
float L_19 = L_18.___x_0;
|
|
V_3 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_17, (0.5f))), L_19));
|
|
// float distToRight = canvasWidth - distToLeft;
|
|
float L_20 = V_0;
|
|
float L_21 = V_3;
|
|
V_4 = ((float)il2cpp_codegen_subtract(L_20, L_21));
|
|
// float distToBottom = canvasHeight * 0.5f + pos.y;
|
|
float L_22 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_23 = V_2;
|
|
float L_24 = L_23.___y_1;
|
|
V_5 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_22, (0.5f))), L_24));
|
|
// float distToTop = canvasHeight - distToBottom;
|
|
float L_25 = V_1;
|
|
float L_26 = V_5;
|
|
V_6 = ((float)il2cpp_codegen_subtract(L_25, L_26));
|
|
// float horDistance = Mathf.Min( distToLeft, distToRight );
|
|
float L_27 = V_3;
|
|
float L_28 = V_4;
|
|
float L_29;
|
|
L_29 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_27, L_28, NULL);
|
|
// float vertDistance = Mathf.Min( distToBottom, distToTop );
|
|
float L_30 = V_5;
|
|
float L_31 = V_6;
|
|
float L_32;
|
|
L_32 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_30, L_31, NULL);
|
|
V_7 = L_32;
|
|
// if( horDistance < vertDistance )
|
|
float L_33 = V_7;
|
|
if ((!(((float)L_29) < ((float)L_33))))
|
|
{
|
|
goto IL_011e;
|
|
}
|
|
}
|
|
{
|
|
// if( distToLeft < distToRight )
|
|
float L_34 = V_3;
|
|
float L_35 = V_4;
|
|
if ((!(((float)L_34) < ((float)L_35))))
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
// pos = new Vector2( canvasWidth * -0.5f + halfSize.x, pos.y );
|
|
float L_36 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_37 = (&__this->___halfSize_5);
|
|
float L_38 = L_37->___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_39 = V_2;
|
|
float L_40 = L_39.___y_1;
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&V_2), ((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_36, (-0.5f))), L_38)), L_40, NULL);
|
|
goto IL_00e1;
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
// pos = new Vector2( canvasWidth * 0.5f - halfSize.x, pos.y );
|
|
float L_41 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_42 = (&__this->___halfSize_5);
|
|
float L_43 = L_42->___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_44 = V_2;
|
|
float L_45 = L_44.___y_1;
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&V_2), ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(L_41, (0.5f))), L_43)), L_45, NULL);
|
|
}
|
|
|
|
IL_00e1:
|
|
{
|
|
// pos.y = Mathf.Clamp( pos.y, canvasHeight * -0.5f + halfSize.y, canvasHeight * 0.5f - halfSize.y );
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_46 = V_2;
|
|
float L_47 = L_46.___y_1;
|
|
float L_48 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_49 = (&__this->___halfSize_5);
|
|
float L_50 = L_49->___y_1;
|
|
float L_51 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_52 = (&__this->___halfSize_5);
|
|
float L_53 = L_52->___y_1;
|
|
float L_54;
|
|
L_54 = Mathf_Clamp_mEB9AEA827D27D20FCC787F7375156AF46BB12BBF_inline(L_47, ((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_48, (-0.5f))), L_50)), ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(L_51, (0.5f))), L_53)), NULL);
|
|
(&V_2)->___y_1 = L_54;
|
|
goto IL_019e;
|
|
}
|
|
|
|
IL_011e:
|
|
{
|
|
// if( distToBottom < distToTop )
|
|
float L_55 = V_5;
|
|
float L_56 = V_6;
|
|
if ((!(((float)L_55) < ((float)L_56))))
|
|
{
|
|
goto IL_0146;
|
|
}
|
|
}
|
|
{
|
|
// pos = new Vector2( pos.x, canvasHeight * -0.5f + halfSize.y );
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_57 = V_2;
|
|
float L_58 = L_57.___x_0;
|
|
float L_59 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_60 = (&__this->___halfSize_5);
|
|
float L_61 = L_60->___y_1;
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&V_2), L_58, ((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_59, (-0.5f))), L_61)), NULL);
|
|
goto IL_0166;
|
|
}
|
|
|
|
IL_0146:
|
|
{
|
|
// pos = new Vector2( pos.x, canvasHeight * 0.5f - halfSize.y );
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_62 = V_2;
|
|
float L_63 = L_62.___x_0;
|
|
float L_64 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_65 = (&__this->___halfSize_5);
|
|
float L_66 = L_65->___y_1;
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&V_2), L_63, ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(L_64, (0.5f))), L_66)), NULL);
|
|
}
|
|
|
|
IL_0166:
|
|
{
|
|
// pos.x = Mathf.Clamp( pos.x, canvasWidth * -0.5f + halfSize.x, canvasWidth * 0.5f - halfSize.x );
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_67 = V_2;
|
|
float L_68 = L_67.___x_0;
|
|
float L_69 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_70 = (&__this->___halfSize_5);
|
|
float L_71 = L_70->___x_0;
|
|
float L_72 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_73 = (&__this->___halfSize_5);
|
|
float L_74 = L_73->___x_0;
|
|
float L_75;
|
|
L_75 = Mathf_Clamp_mEB9AEA827D27D20FCC787F7375156AF46BB12BBF_inline(L_68, ((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_69, (-0.5f))), L_71)), ((float)il2cpp_codegen_subtract(((float)il2cpp_codegen_multiply(L_72, (0.5f))), L_74)), NULL);
|
|
(&V_2)->___x_0 = L_75;
|
|
}
|
|
|
|
IL_019e:
|
|
{
|
|
// normalizedPosition.Set( pos.x / canvasWidth, pos.y / canvasHeight );
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_76 = (&__this->___normalizedPosition_20);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_77 = V_2;
|
|
float L_78 = L_77.___x_0;
|
|
float L_79 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_80 = V_2;
|
|
float L_81 = L_80.___y_1;
|
|
float L_82 = V_1;
|
|
Vector2_Set_m42A76E817B65A9626E1F5E900EB67F037B3E1ED0_inline(L_76, ((float)(L_78/L_79)), ((float)(L_81/L_82)), NULL);
|
|
// if( moveToPosCoroutine != null )
|
|
RuntimeObject* L_83 = __this->___moveToPosCoroutine_21;
|
|
if (!L_83)
|
|
{
|
|
goto IL_01d4;
|
|
}
|
|
}
|
|
{
|
|
// StopCoroutine( moveToPosCoroutine );
|
|
RuntimeObject* L_84 = __this->___moveToPosCoroutine_21;
|
|
MonoBehaviour_StopCoroutine_mF9E93B82091E804595BE13AA29F9AB7517F7E04A(__this, L_84, NULL);
|
|
// moveToPosCoroutine = null;
|
|
__this->___moveToPosCoroutine_21 = (RuntimeObject*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___moveToPosCoroutine_21), (void*)(RuntimeObject*)NULL);
|
|
}
|
|
|
|
IL_01d4:
|
|
{
|
|
// if( immediately )
|
|
bool L_85 = ___immediately0;
|
|
if (!L_85)
|
|
{
|
|
goto IL_01e4;
|
|
}
|
|
}
|
|
{
|
|
// popupTransform.anchoredPosition = pos;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_86 = __this->___popupTransform_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_87 = V_2;
|
|
RectTransform_set_anchoredPosition_mF903ACE04F6959B1CD67E2B94FABC0263068F965(L_86, L_87, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_01e4:
|
|
{
|
|
// moveToPosCoroutine = MoveToPosAnimation( pos );
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_88 = V_2;
|
|
RuntimeObject* L_89;
|
|
L_89 = DebugLogPopup_MoveToPosAnimation_mAC680B56F6D56D11D41C8580AD1CF1B0E7DB5ADD(__this, L_88, NULL);
|
|
__this->___moveToPosCoroutine_21 = L_89;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___moveToPosCoroutine_21), (void*)L_89);
|
|
// StartCoroutine( moveToPosCoroutine );
|
|
RuntimeObject* L_90 = __this->___moveToPosCoroutine_21;
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* L_91;
|
|
L_91 = MonoBehaviour_StartCoroutine_m4CAFF732AA28CD3BDC5363B44A863575530EC812(__this, L_90, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogPopup::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogPopup__ctor_m2C30F0B9BCA5D34C0013DBD49C3ECE0A99B17A60 (DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* __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
|
|
// System.Void IngameDebugConsole.DebugLogPopup/<MoveToPosAnimation>d__21::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CMoveToPosAnimationU3Ed__21__ctor_mEBE2673235A90D111A2DC623C41A3D2F7AFB4DC5 (U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B* __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
int32_t L_0 = ___U3CU3E1__state0;
|
|
__this->___U3CU3E1__state_0 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogPopup/<MoveToPosAnimation>d__21::System.IDisposable.Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CMoveToPosAnimationU3Ed__21_System_IDisposable_Dispose_m344CF301614A02502A304D78606DB5F4D9DC711C (U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugLogPopup/<MoveToPosAnimation>d__21::MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CMoveToPosAnimationU3Ed__21_MoveNext_m5596E59C5DDA68C4E639734DEF9A45F746AAED4D (U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* V_1 = NULL;
|
|
{
|
|
int32_t L_0 = __this->___U3CU3E1__state_0;
|
|
V_0 = L_0;
|
|
DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* L_1 = __this->___U3CU3E4__this_2;
|
|
V_1 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_0086;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
__this->___U3CU3E1__state_0 = (-1);
|
|
// float modifier = 0f;
|
|
__this->___U3CmodifierU3E5__2_4 = (0.0f);
|
|
// Vector2 initialPos = popupTransform.anchoredPosition;
|
|
DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* L_4 = V_1;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_5 = L_4->___popupTransform_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = RectTransform_get_anchoredPosition_m38F25A4253B0905BB058BE73DBF43C7172CE0680(L_5, NULL);
|
|
__this->___U3CinitialPosU3E5__3_5 = L_6;
|
|
goto IL_008d;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
// modifier += 4f * Time.unscaledDeltaTime;
|
|
float L_7 = __this->___U3CmodifierU3E5__2_4;
|
|
float L_8;
|
|
L_8 = Time_get_unscaledDeltaTime_mF057EECA857E5C0F90A3F910D26D3EE59F27C4B5(NULL);
|
|
__this->___U3CmodifierU3E5__2_4 = ((float)il2cpp_codegen_add(L_7, ((float)il2cpp_codegen_multiply((4.0f), L_8))));
|
|
// popupTransform.anchoredPosition = Vector2.Lerp( initialPos, targetPos, modifier );
|
|
DebugLogPopup_t521468752FCF53CE80E2E8989D7A42A10D8E216B* L_9 = V_1;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_10 = L_9->___popupTransform_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11 = __this->___U3CinitialPosU3E5__3_5;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12 = __this->___targetPos_3;
|
|
float L_13 = __this->___U3CmodifierU3E5__2_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_14;
|
|
L_14 = Vector2_Lerp_m1A36103F7967F653A929556E26E6D052C298C00C_inline(L_11, L_12, L_13, NULL);
|
|
RectTransform_set_anchoredPosition_mF903ACE04F6959B1CD67E2B94FABC0263068F965(L_10, L_14, NULL);
|
|
// yield return null;
|
|
__this->___U3CU3E2__current_1 = NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CU3E2__current_1), (void*)NULL);
|
|
__this->___U3CU3E1__state_0 = 1;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
__this->___U3CU3E1__state_0 = (-1);
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
// while( modifier < 1f )
|
|
float L_15 = __this->___U3CmodifierU3E5__2_4;
|
|
if ((((float)L_15) < ((float)(1.0f))))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
// }
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Object IngameDebugConsole.DebugLogPopup/<MoveToPosAnimation>d__21::System.Collections.Generic.IEnumerator<System.Object>.get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CMoveToPosAnimationU3Ed__21_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m1348F32EFE420476165F60C7356D144DC17CCE64 (U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CU3E2__current_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogPopup/<MoveToPosAnimation>d__21::System.Collections.IEnumerator.Reset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CMoveToPosAnimationU3Ed__21_System_Collections_IEnumerator_Reset_m9AAEA0464C92107730C4E9EA2367A75E793430D5 (U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CMoveToPosAnimationU3Ed__21_System_Collections_IEnumerator_Reset_m9AAEA0464C92107730C4E9EA2367A75E793430D5_RuntimeMethod_var)));
|
|
}
|
|
}
|
|
// System.Object IngameDebugConsole.DebugLogPopup/<MoveToPosAnimation>d__21::System.Collections.IEnumerator.get_Current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* U3CMoveToPosAnimationU3Ed__21_System_Collections_IEnumerator_get_Current_m6824D3815A6319AAE78876B286142BB831FAEED3 (U3CMoveToPosAnimationU3Ed__21_t1C5A630AAF7151A9EA3331E75179E529780D9E7B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CU3E2__current_1;
|
|
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
|
|
// System.Single IngameDebugConsole.DebugLogRecycledListView::get_ItemHeight()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DebugLogRecycledListView_get_ItemHeight_m4FBFACEF0C31D99C4745209391D410234EAE6A80 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public float ItemHeight { get { return logItemHeight; } }
|
|
float L_0 = __this->___logItemHeight_11;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Single IngameDebugConsole.DebugLogRecycledListView::get_SelectedItemHeight()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float DebugLogRecycledListView_get_SelectedItemHeight_m55C399776D3C681426A1E7BB96D17799AAF17358 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public float SelectedItemHeight { get { return heightOfSelectedLogEntry; } }
|
|
float L_0 = __this->___heightOfSelectedLogEntry_19;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::Awake()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_Awake_mB17543BD466BD4A736547268AAC2680CC75BC5B3 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponentInParent_TisScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E_mD5D105BD6034A3131A91D7B6534D7E74834D72AD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogRecycledListView_U3CAwakeU3Eb__25_0_m46F3DED084709344721E369E0D3AC052735594A5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityAction_1_t8FBFBC01962B7293F0E33F9D6F1CEAF2896D8669_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_AddListener_m2B74313C91E347D6AD24CE5B036E190E77E70851_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
// scrollView = viewportTransform.GetComponentInParent<ScrollRect>();
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_0 = __this->___viewportTransform_5;
|
|
ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* L_1;
|
|
L_1 = Component_GetComponentInParent_TisScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E_mD5D105BD6034A3131A91D7B6534D7E74834D72AD(L_0, Component_GetComponentInParent_TisScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E_mD5D105BD6034A3131A91D7B6534D7E74834D72AD_RuntimeMethod_var);
|
|
__this->___scrollView_10 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___scrollView_10), (void*)L_1);
|
|
// scrollView.onValueChanged.AddListener( ( pos ) => UpdateItemsInTheList( false ) );
|
|
ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* L_2 = __this->___scrollView_10;
|
|
ScrollRectEvent_t812C011901E6101F2A0FFC34C66AC5F65C0DEC26* L_3;
|
|
L_3 = ScrollRect_get_onValueChanged_mA6AF3832A97E82D31BB8C20BCD6E87A300E56C05_inline(L_2, NULL);
|
|
UnityAction_1_t8FBFBC01962B7293F0E33F9D6F1CEAF2896D8669* L_4 = (UnityAction_1_t8FBFBC01962B7293F0E33F9D6F1CEAF2896D8669*)il2cpp_codegen_object_new(UnityAction_1_t8FBFBC01962B7293F0E33F9D6F1CEAF2896D8669_il2cpp_TypeInfo_var);
|
|
UnityAction_1__ctor_m71C125B79EE35648CFC416CA7DBBC27C8DBAD45A(L_4, __this, (intptr_t)((void*)DebugLogRecycledListView_U3CAwakeU3Eb__25_0_m46F3DED084709344721E369E0D3AC052735594A5_RuntimeMethod_var), NULL);
|
|
UnityEvent_1_AddListener_m2B74313C91E347D6AD24CE5B036E190E77E70851(L_3, L_4, UnityEvent_1_AddListener_m2B74313C91E347D6AD24CE5B036E190E77E70851_RuntimeMethod_var);
|
|
// viewportHeight = viewportTransform.rect.height;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_5 = __this->___viewportTransform_5;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_6;
|
|
L_6 = RectTransform_get_rect_mC82A60F8C3805ED9833508CCC233689641207488(L_5, NULL);
|
|
V_0 = L_6;
|
|
float L_7;
|
|
L_7 = Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8((&V_0), NULL);
|
|
__this->___viewportHeight_13 = L_7;
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::Initialize(IngameDebugConsole.DebugLogManager,System.Collections.Generic.List`1<IngameDebugConsole.DebugLogEntry>,IngameDebugConsole.DebugLogIndexList`1<System.Int32>,IngameDebugConsole.DebugLogIndexList`1<IngameDebugConsole.DebugLogEntryTimestamp>,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_Initialize_mAF57AB488F6259FDDE530279AB805F5B96EC6404 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* ___manager0, List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* ___collapsedLogEntries1, DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* ___indicesOfEntriesToShow2, DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* ___timestampsOfEntriesToShow3, float ___logItemHeight4, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// this.manager = manager;
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_0 = ___manager0;
|
|
__this->___manager_9 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___manager_9), (void*)L_0);
|
|
// this.collapsedLogEntries = collapsedLogEntries;
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_1 = ___collapsedLogEntries1;
|
|
__this->___collapsedLogEntries_14 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___collapsedLogEntries_14), (void*)L_1);
|
|
// this.indicesOfEntriesToShow = indicesOfEntriesToShow;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_2 = ___indicesOfEntriesToShow2;
|
|
__this->___indicesOfEntriesToShow_15 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___indicesOfEntriesToShow_15), (void*)L_2);
|
|
// this.timestampsOfEntriesToShow = timestampsOfEntriesToShow;
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_3 = ___timestampsOfEntriesToShow3;
|
|
__this->___timestampsOfEntriesToShow_16 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___timestampsOfEntriesToShow_16), (void*)L_3);
|
|
// this.logItemHeight = logItemHeight;
|
|
float L_4 = ___logItemHeight4;
|
|
__this->___logItemHeight_11 = L_4;
|
|
// _1OverLogItemHeight = 1f / logItemHeight;
|
|
float L_5 = ___logItemHeight4;
|
|
__this->____1OverLogItemHeight_12 = ((float)((1.0f)/L_5));
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::SetCollapseMode(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_SetCollapseMode_m8B9F13CBAB315B685DBFBFFBD9FF546DC3AEAFC2 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, bool ___collapse0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// isCollapseOn = collapse;
|
|
bool L_0 = ___collapse0;
|
|
__this->___isCollapseOn_22 = L_0;
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::OnLogItemClicked(IngameDebugConsole.DebugLogItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_OnLogItemClicked_m884D345CF8F6ACB003D53075D9A8B6F8B4BB19B2 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___item0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// OnLogItemClickedInternal( item.Index, item );
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_0 = ___item0;
|
|
int32_t L_1;
|
|
L_1 = DebugLogItem_get_Index_mAE7C163DD212089A2276418AC74D1F118C4AE0E1_inline(L_0, NULL);
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_2 = ___item0;
|
|
DebugLogRecycledListView_OnLogItemClickedInternal_m9C3AA7CA2C2C65BC15F72C0AA4AA9310F724707E(__this, L_1, L_2, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::SelectAndFocusOnLogItemAtIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_SelectAndFocusOnLogItemAtIndex_m76E2D97A52AD52976B1A9ACCEBDC1253B9A07BC9 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, int32_t ___itemIndex0, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
float V_2 = 0.0f;
|
|
{
|
|
// if( indexOfSelectedLogEntry != itemIndex ) // Make sure that we aren't deselecting the target log item
|
|
int32_t L_0 = __this->___indexOfSelectedLogEntry_17;
|
|
int32_t L_1 = ___itemIndex0;
|
|
if ((((int32_t)L_0) == ((int32_t)L_1)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
// OnLogItemClickedInternal( itemIndex );
|
|
int32_t L_2 = ___itemIndex0;
|
|
DebugLogRecycledListView_OnLogItemClickedInternal_m9C3AA7CA2C2C65BC15F72C0AA4AA9310F724707E(__this, L_2, (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230*)NULL, NULL);
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
// float transformComponentCenterYAtTop = viewportHeight * 0.5f;
|
|
float L_3 = __this->___viewportHeight_13;
|
|
V_0 = ((float)il2cpp_codegen_multiply(L_3, (0.5f)));
|
|
// float transformComponentCenterYAtBottom = transformComponent.sizeDelta.y - viewportHeight * 0.5f;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_4 = __this->___transformComponent_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = RectTransform_get_sizeDelta_m822A8493F2035677384F1540A2E9E5ACE63010BB(L_4, NULL);
|
|
float L_6 = L_5.___y_1;
|
|
float L_7 = __this->___viewportHeight_13;
|
|
V_1 = ((float)il2cpp_codegen_subtract(L_6, ((float)il2cpp_codegen_multiply(L_7, (0.5f)))));
|
|
// float transformComponentTargetCenterY = itemIndex * logItemHeight + viewportHeight * 0.5f;
|
|
int32_t L_8 = ___itemIndex0;
|
|
float L_9 = __this->___logItemHeight_11;
|
|
float L_10 = __this->___viewportHeight_13;
|
|
V_2 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(((float)L_8), L_9)), ((float)il2cpp_codegen_multiply(L_10, (0.5f)))));
|
|
// if( transformComponentCenterYAtTop == transformComponentCenterYAtBottom )
|
|
float L_11 = V_0;
|
|
float L_12 = V_1;
|
|
if ((!(((float)L_11) == ((float)L_12))))
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
// scrollView.verticalNormalizedPosition = 0.5f;
|
|
ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* L_13 = __this->___scrollView_10;
|
|
ScrollRect_set_verticalNormalizedPosition_m4AF461113925E6710BF04F46A49CF1F856F7738C(L_13, (0.5f), NULL);
|
|
goto IL_0081;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
// scrollView.verticalNormalizedPosition = Mathf.Clamp01( Mathf.InverseLerp( transformComponentCenterYAtBottom, transformComponentCenterYAtTop, transformComponentTargetCenterY ) );
|
|
ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* L_14 = __this->___scrollView_10;
|
|
float L_15 = V_1;
|
|
float L_16 = V_0;
|
|
float L_17 = V_2;
|
|
float L_18;
|
|
L_18 = Mathf_InverseLerp_mBD7EC6A7173CE082226077E1557D5BC2D2AE0D9D_inline(L_15, L_16, L_17, NULL);
|
|
float L_19;
|
|
L_19 = Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline(L_18, NULL);
|
|
ScrollRect_set_verticalNormalizedPosition_m4AF461113925E6710BF04F46A49CF1F856F7738C(L_14, L_19, NULL);
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
// manager.SetSnapToBottom( false );
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_20 = __this->___manager_9;
|
|
DebugLogManager_SetSnapToBottom_m869F0D298244C064CF9C7611B3D11F198433D6BC_inline(L_20, (bool)0, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::OnLogItemClickedInternal(System.Int32,IngameDebugConsole.DebugLogItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_OnLogItemClickedInternal_m9C3AA7CA2C2C65BC15F72C0AA4AA9310F724707E (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, int32_t ___itemIndex0, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___referenceItem1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* G_B7_0 = NULL;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* G_B7_1 = NULL;
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* G_B7_2 = NULL;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* G_B6_0 = NULL;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* G_B6_1 = NULL;
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* G_B6_2 = NULL;
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 G_B8_0;
|
|
memset((&G_B8_0), 0, sizeof(G_B8_0));
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* G_B8_1 = NULL;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* G_B8_2 = NULL;
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* G_B8_3 = NULL;
|
|
{
|
|
// if( indexOfSelectedLogEntry != itemIndex )
|
|
int32_t L_0 = __this->___indexOfSelectedLogEntry_17;
|
|
int32_t L_1 = ___itemIndex0;
|
|
if ((((int32_t)L_0) == ((int32_t)L_1)))
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
}
|
|
{
|
|
// DeselectSelectedLogItem();
|
|
DebugLogRecycledListView_DeselectSelectedLogItem_m04DC7746AB16AF9D1B7E9D9747ACA6B70787BF63(__this, NULL);
|
|
// if( !referenceItem )
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_2 = ___referenceItem1;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_3;
|
|
L_3 = Object_op_Implicit_m93896EF7D68FA113C42D3FE2BC6F661FC7EF514A(L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
// if( currentTopIndex == -1 )
|
|
int32_t L_4 = __this->___currentTopIndex_23;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
// UpdateItemsInTheList( false ); // Try to generate some DebugLogItems, we need one DebugLogItem to calculate the text height
|
|
DebugLogRecycledListView_UpdateItemsInTheList_mFA3693DC343B8C587ADB84C71BEFF417EA3710EA(__this, (bool)0, NULL);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
// referenceItem = logItemsAtIndices[currentTopIndex];
|
|
Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA* L_5 = __this->___logItemsAtIndices_21;
|
|
int32_t L_6 = __this->___currentTopIndex_23;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_7;
|
|
L_7 = Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7(L_5, L_6, Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7_RuntimeMethod_var);
|
|
___referenceItem1 = L_7;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
// indexOfSelectedLogEntry = itemIndex;
|
|
int32_t L_8 = ___itemIndex0;
|
|
__this->___indexOfSelectedLogEntry_17 = L_8;
|
|
// positionOfSelectedLogEntry = itemIndex * logItemHeight;
|
|
int32_t L_9 = ___itemIndex0;
|
|
float L_10 = __this->___logItemHeight_11;
|
|
__this->___positionOfSelectedLogEntry_18 = ((float)il2cpp_codegen_multiply(((float)L_9), L_10));
|
|
// heightOfSelectedLogEntry = referenceItem.CalculateExpandedHeight( collapsedLogEntries[indicesOfEntriesToShow[itemIndex]], ( timestampsOfEntriesToShow != null ) ? timestampsOfEntriesToShow[itemIndex] : (DebugLogEntryTimestamp?) null );
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_11 = ___referenceItem1;
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_12 = __this->___collapsedLogEntries_14;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_13 = __this->___indicesOfEntriesToShow_15;
|
|
int32_t L_14 = ___itemIndex0;
|
|
int32_t L_15;
|
|
L_15 = DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A(L_13, L_14, DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var);
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_16;
|
|
L_16 = List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78(L_12, L_15, List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_17 = __this->___timestampsOfEntriesToShow_16;
|
|
G_B6_0 = L_16;
|
|
G_B6_1 = L_11;
|
|
G_B6_2 = __this;
|
|
if (L_17)
|
|
{
|
|
G_B7_0 = L_16;
|
|
G_B7_1 = L_11;
|
|
G_B7_2 = __this;
|
|
goto IL_007f;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41));
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 L_18 = V_0;
|
|
G_B8_0 = L_18;
|
|
G_B8_1 = G_B6_0;
|
|
G_B8_2 = G_B6_1;
|
|
G_B8_3 = G_B6_2;
|
|
goto IL_0090;
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_19 = __this->___timestampsOfEntriesToShow_16;
|
|
int32_t L_20 = ___itemIndex0;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_21;
|
|
L_21 = DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695(L_19, L_20, DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_RuntimeMethod_var);
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 L_22;
|
|
memset((&L_22), 0, sizeof(L_22));
|
|
Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685((&L_22), L_21, /*hidden argument*/Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685_RuntimeMethod_var);
|
|
G_B8_0 = L_22;
|
|
G_B8_1 = G_B7_0;
|
|
G_B8_2 = G_B7_1;
|
|
G_B8_3 = G_B7_2;
|
|
}
|
|
|
|
IL_0090:
|
|
{
|
|
float L_23;
|
|
L_23 = DebugLogItem_CalculateExpandedHeight_m55309AF097A86F270D520E266A7C3ACA00BA0EFC(G_B8_2, G_B8_1, G_B8_0, NULL);
|
|
G_B8_3->___heightOfSelectedLogEntry_19 = L_23;
|
|
// deltaHeightOfSelectedLogEntry = heightOfSelectedLogEntry - logItemHeight;
|
|
float L_24 = __this->___heightOfSelectedLogEntry_19;
|
|
float L_25 = __this->___logItemHeight_11;
|
|
__this->___deltaHeightOfSelectedLogEntry_20 = ((float)il2cpp_codegen_subtract(L_24, L_25));
|
|
// manager.SetSnapToBottom( false );
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_26 = __this->___manager_9;
|
|
DebugLogManager_SetSnapToBottom_m869F0D298244C064CF9C7611B3D11F198433D6BC_inline(L_26, (bool)0, NULL);
|
|
goto IL_00c1;
|
|
}
|
|
|
|
IL_00bb:
|
|
{
|
|
// DeselectSelectedLogItem();
|
|
DebugLogRecycledListView_DeselectSelectedLogItem_m04DC7746AB16AF9D1B7E9D9747ACA6B70787BF63(__this, NULL);
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
// if( indexOfSelectedLogEntry >= currentTopIndex && indexOfSelectedLogEntry <= currentBottomIndex )
|
|
int32_t L_27 = __this->___indexOfSelectedLogEntry_17;
|
|
int32_t L_28 = __this->___currentTopIndex_23;
|
|
if ((((int32_t)L_27) < ((int32_t)L_28)))
|
|
{
|
|
goto IL_00fa;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_29 = __this->___indexOfSelectedLogEntry_17;
|
|
int32_t L_30 = __this->___currentBottomIndex_24;
|
|
if ((((int32_t)L_29) > ((int32_t)L_30)))
|
|
{
|
|
goto IL_00fa;
|
|
}
|
|
}
|
|
{
|
|
// ColorLogItem( logItemsAtIndices[indexOfSelectedLogEntry], indexOfSelectedLogEntry );
|
|
Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA* L_31 = __this->___logItemsAtIndices_21;
|
|
int32_t L_32 = __this->___indexOfSelectedLogEntry_17;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_33;
|
|
L_33 = Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7(L_31, L_32, Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7_RuntimeMethod_var);
|
|
int32_t L_34 = __this->___indexOfSelectedLogEntry_17;
|
|
DebugLogRecycledListView_ColorLogItem_m46DD7992FD72641EC61AE079E99B244472429CF3(__this, L_33, L_34, NULL);
|
|
}
|
|
|
|
IL_00fa:
|
|
{
|
|
// CalculateContentHeight();
|
|
DebugLogRecycledListView_CalculateContentHeight_m88EBCC3CBDBDE451B6F798EA318B87B9D443ABCB(__this, NULL);
|
|
// HardResetItems();
|
|
DebugLogRecycledListView_HardResetItems_mFF51258835419129C8C059D5EC869EF1998DEB55(__this, NULL);
|
|
// UpdateItemsInTheList( true );
|
|
DebugLogRecycledListView_UpdateItemsInTheList_mFA3693DC343B8C587ADB84C71BEFF417EA3710EA(__this, (bool)1, NULL);
|
|
// manager.ValidateScrollPosition();
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_35 = __this->___manager_9;
|
|
DebugLogManager_ValidateScrollPosition_m2A11C6555ED058C996C5116F208E953848D479FF(L_35, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::DeselectSelectedLogItem()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_DeselectSelectedLogItem_m04DC7746AB16AF9D1B7E9D9747ACA6B70787BF63 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
float V_1 = 0.0f;
|
|
{
|
|
// int indexOfPreviouslySelectedLogEntry = indexOfSelectedLogEntry;
|
|
int32_t L_0 = __this->___indexOfSelectedLogEntry_17;
|
|
V_0 = L_0;
|
|
// indexOfSelectedLogEntry = int.MaxValue;
|
|
__this->___indexOfSelectedLogEntry_17 = ((int32_t)2147483647LL);
|
|
// positionOfSelectedLogEntry = float.MaxValue;
|
|
__this->___positionOfSelectedLogEntry_18 = ((std::numeric_limits<float>::max)());
|
|
// heightOfSelectedLogEntry = deltaHeightOfSelectedLogEntry = 0f;
|
|
float L_1 = (0.0f);
|
|
V_1 = L_1;
|
|
__this->___deltaHeightOfSelectedLogEntry_20 = L_1;
|
|
float L_2 = V_1;
|
|
__this->___heightOfSelectedLogEntry_19 = L_2;
|
|
// if( indexOfPreviouslySelectedLogEntry >= currentTopIndex && indexOfPreviouslySelectedLogEntry <= currentBottomIndex )
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4 = __this->___currentTopIndex_23;
|
|
if ((((int32_t)L_3) < ((int32_t)L_4)))
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_0;
|
|
int32_t L_6 = __this->___currentBottomIndex_24;
|
|
if ((((int32_t)L_5) > ((int32_t)L_6)))
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
// ColorLogItem( logItemsAtIndices[indexOfPreviouslySelectedLogEntry], indexOfPreviouslySelectedLogEntry );
|
|
Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA* L_7 = __this->___logItemsAtIndices_21;
|
|
int32_t L_8 = V_0;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_9;
|
|
L_9 = Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7(L_7, L_8, Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7_RuntimeMethod_var);
|
|
int32_t L_10 = V_0;
|
|
DebugLogRecycledListView_ColorLogItem_m46DD7992FD72641EC61AE079E99B244472429CF3(__this, L_9, L_10, NULL);
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::OnLogEntriesUpdated(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_OnLogEntriesUpdated_m31B75B0BEFE49F0A6C735132A24575ED537259F1 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, bool ___updateAllVisibleItemContents0, const RuntimeMethod* method)
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
// CalculateContentHeight();
|
|
DebugLogRecycledListView_CalculateContentHeight_m88EBCC3CBDBDE451B6F798EA318B87B9D443ABCB(__this, NULL);
|
|
// viewportHeight = viewportTransform.rect.height;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_0 = __this->___viewportTransform_5;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_1;
|
|
L_1 = RectTransform_get_rect_mC82A60F8C3805ED9833508CCC233689641207488(L_0, NULL);
|
|
V_0 = L_1;
|
|
float L_2;
|
|
L_2 = Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8((&V_0), NULL);
|
|
__this->___viewportHeight_13 = L_2;
|
|
// if( updateAllVisibleItemContents )
|
|
bool L_3 = ___updateAllVisibleItemContents0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
// HardResetItems();
|
|
DebugLogRecycledListView_HardResetItems_mFF51258835419129C8C059D5EC869EF1998DEB55(__this, NULL);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
// UpdateItemsInTheList( updateAllVisibleItemContents );
|
|
bool L_4 = ___updateAllVisibleItemContents0;
|
|
DebugLogRecycledListView_UpdateItemsInTheList_mFA3693DC343B8C587ADB84C71BEFF417EA3710EA(__this, L_4, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::OnCollapsedLogEntryAtIndexUpdated(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_OnCollapsedLogEntryAtIndexUpdated_m83CA66274FC922C662D9A56A137F308EC39F1DDB (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m9D7BB18AA4AB86EFE14E4557DE16B27241E87691_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* V_0 = NULL;
|
|
{
|
|
// if( logItemsAtIndices.TryGetValue( index, out logItem ) )
|
|
Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA* L_0 = __this->___logItemsAtIndices_21;
|
|
int32_t L_1 = ___index0;
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_m9D7BB18AA4AB86EFE14E4557DE16B27241E87691(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_m9D7BB18AA4AB86EFE14E4557DE16B27241E87691_RuntimeMethod_var);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
// logItem.ShowCount();
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_3 = V_0;
|
|
DebugLogItem_ShowCount_m370DD836F4F51DE3090FBA4E46F0D5DAE4F6E7A4(L_3, NULL);
|
|
// if( timestampsOfEntriesToShow != null )
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_4 = __this->___timestampsOfEntriesToShow_16;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
// logItem.UpdateTimestamp( timestampsOfEntriesToShow[index] );
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_5 = V_0;
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_6 = __this->___timestampsOfEntriesToShow_16;
|
|
int32_t L_7 = ___index0;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_8;
|
|
L_8 = DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695(L_6, L_7, DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_RuntimeMethod_var);
|
|
DebugLogItem_UpdateTimestamp_m727217AF90E45BF3F269237C89C9477D0EC3CEB0(L_5, L_8, NULL);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::OnViewportWidthChanged()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_OnViewportWidthChanged_mC15FBC039660C721E52590BFA3E6A08320AF6C4D (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* V_0 = NULL;
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* G_B7_0 = NULL;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* G_B7_1 = NULL;
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* G_B7_2 = NULL;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* G_B6_0 = NULL;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* G_B6_1 = NULL;
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* G_B6_2 = NULL;
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 G_B8_0;
|
|
memset((&G_B8_0), 0, sizeof(G_B8_0));
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* G_B8_1 = NULL;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* G_B8_2 = NULL;
|
|
DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* G_B8_3 = NULL;
|
|
{
|
|
// if( indexOfSelectedLogEntry >= indicesOfEntriesToShow.Count )
|
|
int32_t L_0 = __this->___indexOfSelectedLogEntry_17;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_1 = __this->___indicesOfEntriesToShow_15;
|
|
int32_t L_2;
|
|
L_2 = DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_inline(L_1, DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
if ((((int32_t)L_0) < ((int32_t)L_2)))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
// if( currentTopIndex == -1 )
|
|
int32_t L_3 = __this->___currentTopIndex_23;
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
// UpdateItemsInTheList( false ); // Try to generate some DebugLogItems, we need one DebugLogItem to calculate the text height
|
|
DebugLogRecycledListView_UpdateItemsInTheList_mFA3693DC343B8C587ADB84C71BEFF417EA3710EA(__this, (bool)0, NULL);
|
|
// if( currentTopIndex == -1 ) // No DebugLogItems are generated, weird
|
|
int32_t L_4 = __this->___currentTopIndex_23;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
// DebugLogItem referenceItem = logItemsAtIndices[currentTopIndex];
|
|
Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA* L_5 = __this->___logItemsAtIndices_21;
|
|
int32_t L_6 = __this->___currentTopIndex_23;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_7;
|
|
L_7 = Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7(L_5, L_6, Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7_RuntimeMethod_var);
|
|
V_0 = L_7;
|
|
// heightOfSelectedLogEntry = referenceItem.CalculateExpandedHeight( collapsedLogEntries[indicesOfEntriesToShow[indexOfSelectedLogEntry]], ( timestampsOfEntriesToShow != null ) ? timestampsOfEntriesToShow[indexOfSelectedLogEntry] : (DebugLogEntryTimestamp?) null );
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_8 = V_0;
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_9 = __this->___collapsedLogEntries_14;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_10 = __this->___indicesOfEntriesToShow_15;
|
|
int32_t L_11 = __this->___indexOfSelectedLogEntry_17;
|
|
int32_t L_12;
|
|
L_12 = DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A(L_10, L_11, DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var);
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_13;
|
|
L_13 = List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78(L_9, L_12, List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_14 = __this->___timestampsOfEntriesToShow_16;
|
|
G_B6_0 = L_13;
|
|
G_B6_1 = L_8;
|
|
G_B6_2 = __this;
|
|
if (L_14)
|
|
{
|
|
G_B7_0 = L_13;
|
|
G_B7_1 = L_8;
|
|
G_B7_2 = __this;
|
|
goto IL_0071;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41));
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 L_15 = V_1;
|
|
G_B8_0 = L_15;
|
|
G_B8_1 = G_B6_0;
|
|
G_B8_2 = G_B6_1;
|
|
G_B8_3 = G_B6_2;
|
|
goto IL_0087;
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_16 = __this->___timestampsOfEntriesToShow_16;
|
|
int32_t L_17 = __this->___indexOfSelectedLogEntry_17;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_18;
|
|
L_18 = DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695(L_16, L_17, DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_RuntimeMethod_var);
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 L_19;
|
|
memset((&L_19), 0, sizeof(L_19));
|
|
Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685((&L_19), L_18, /*hidden argument*/Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685_RuntimeMethod_var);
|
|
G_B8_0 = L_19;
|
|
G_B8_1 = G_B7_0;
|
|
G_B8_2 = G_B7_1;
|
|
G_B8_3 = G_B7_2;
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
float L_20;
|
|
L_20 = DebugLogItem_CalculateExpandedHeight_m55309AF097A86F270D520E266A7C3ACA00BA0EFC(G_B8_2, G_B8_1, G_B8_0, NULL);
|
|
G_B8_3->___heightOfSelectedLogEntry_19 = L_20;
|
|
// deltaHeightOfSelectedLogEntry = heightOfSelectedLogEntry - logItemHeight;
|
|
float L_21 = __this->___heightOfSelectedLogEntry_19;
|
|
float L_22 = __this->___logItemHeight_11;
|
|
__this->___deltaHeightOfSelectedLogEntry_20 = ((float)il2cpp_codegen_subtract(L_21, L_22));
|
|
// CalculateContentHeight();
|
|
DebugLogRecycledListView_CalculateContentHeight_m88EBCC3CBDBDE451B6F798EA318B87B9D443ABCB(__this, NULL);
|
|
// HardResetItems();
|
|
DebugLogRecycledListView_HardResetItems_mFF51258835419129C8C059D5EC869EF1998DEB55(__this, NULL);
|
|
// UpdateItemsInTheList( true );
|
|
DebugLogRecycledListView_UpdateItemsInTheList_mFA3693DC343B8C587ADB84C71BEFF417EA3710EA(__this, (bool)1, NULL);
|
|
// manager.ValidateScrollPosition();
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_23 = __this->___manager_9;
|
|
DebugLogManager_ValidateScrollPosition_m2A11C6555ED058C996C5116F208E953848D479FF(L_23, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::OnViewportHeightChanged()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_OnViewportHeightChanged_mC257005C0AC4AAB23CAB212ABC2B3CD3311E2484 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method)
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
// viewportHeight = viewportTransform.rect.height;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_0 = __this->___viewportTransform_5;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_1;
|
|
L_1 = RectTransform_get_rect_mC82A60F8C3805ED9833508CCC233689641207488(L_0, NULL);
|
|
V_0 = L_1;
|
|
float L_2;
|
|
L_2 = Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8((&V_0), NULL);
|
|
__this->___viewportHeight_13 = L_2;
|
|
// UpdateItemsInTheList( false );
|
|
DebugLogRecycledListView_UpdateItemsInTheList_mFA3693DC343B8C587ADB84C71BEFF417EA3710EA(__this, (bool)0, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::HardResetItems()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_HardResetItems_mFF51258835419129C8C059D5EC869EF1998DEB55 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// if( currentTopIndex != -1 )
|
|
int32_t L_0 = __this->___currentTopIndex_23;
|
|
if ((((int32_t)L_0) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
// DestroyLogItemsBetweenIndices( currentTopIndex, currentBottomIndex );
|
|
int32_t L_1 = __this->___currentTopIndex_23;
|
|
int32_t L_2 = __this->___currentBottomIndex_24;
|
|
DebugLogRecycledListView_DestroyLogItemsBetweenIndices_m85E1847758B9863E284951C77E3BB2DEF9A8E4A6(__this, L_1, L_2, NULL);
|
|
// currentTopIndex = -1;
|
|
__this->___currentTopIndex_23 = (-1);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::CalculateContentHeight()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_CalculateContentHeight_m88EBCC3CBDBDE451B6F798EA318B87B9D443ABCB (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
{
|
|
// float newHeight = Mathf.Max( 1f, indicesOfEntriesToShow.Count * logItemHeight + deltaHeightOfSelectedLogEntry );
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_0 = __this->___indicesOfEntriesToShow_15;
|
|
int32_t L_1;
|
|
L_1 = DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_inline(L_0, DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
float L_2 = __this->___logItemHeight_11;
|
|
float L_3 = __this->___deltaHeightOfSelectedLogEntry_20;
|
|
float L_4;
|
|
L_4 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline((1.0f), ((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(((float)L_1), L_2)), L_3)), NULL);
|
|
V_0 = L_4;
|
|
// transformComponent.sizeDelta = new Vector2( 0f, newHeight );
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_5 = __this->___transformComponent_4;
|
|
float L_6 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7;
|
|
memset((&L_7), 0, sizeof(L_7));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_7), (0.0f), L_6, /*hidden argument*/NULL);
|
|
RectTransform_set_sizeDelta_mC9A980EA6036E6725EF24CEDF3EE80A9B2B50EE5(L_5, L_7, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::UpdateItemsInTheList(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_UpdateItemsInTheList_mFA3693DC343B8C587ADB84C71BEFF417EA3710EA (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, bool ___updateAllVisibleItemContents0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
// if( indicesOfEntriesToShow.Count > 0 )
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_0 = __this->___indicesOfEntriesToShow_15;
|
|
int32_t L_1;
|
|
L_1 = DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_inline(L_0, DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
if ((((int32_t)L_1) <= ((int32_t)0)))
|
|
{
|
|
goto IL_01eb;
|
|
}
|
|
}
|
|
{
|
|
// float contentPosTop = transformComponent.anchoredPosition.y - 1f;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_2 = __this->___transformComponent_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3;
|
|
L_3 = RectTransform_get_anchoredPosition_m38F25A4253B0905BB058BE73DBF43C7172CE0680(L_2, NULL);
|
|
float L_4 = L_3.___y_1;
|
|
V_0 = ((float)il2cpp_codegen_subtract(L_4, (1.0f)));
|
|
// float contentPosBottom = contentPosTop + viewportHeight + 2f;
|
|
float L_5 = V_0;
|
|
float L_6 = __this->___viewportHeight_13;
|
|
V_1 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(L_5, L_6)), (2.0f)));
|
|
// if( positionOfSelectedLogEntry <= contentPosBottom )
|
|
float L_7 = __this->___positionOfSelectedLogEntry_18;
|
|
float L_8 = V_1;
|
|
if ((!(((float)L_7) <= ((float)L_8))))
|
|
{
|
|
goto IL_00b0;
|
|
}
|
|
}
|
|
{
|
|
// if( positionOfSelectedLogEntry <= contentPosTop )
|
|
float L_9 = __this->___positionOfSelectedLogEntry_18;
|
|
float L_10 = V_0;
|
|
if ((!(((float)L_9) <= ((float)L_10))))
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
}
|
|
{
|
|
// contentPosTop -= deltaHeightOfSelectedLogEntry;
|
|
float L_11 = V_0;
|
|
float L_12 = __this->___deltaHeightOfSelectedLogEntry_20;
|
|
V_0 = ((float)il2cpp_codegen_subtract(L_11, L_12));
|
|
// contentPosBottom -= deltaHeightOfSelectedLogEntry;
|
|
float L_13 = V_1;
|
|
float L_14 = __this->___deltaHeightOfSelectedLogEntry_20;
|
|
V_1 = ((float)il2cpp_codegen_subtract(L_13, L_14));
|
|
// if( contentPosTop < positionOfSelectedLogEntry - 1f )
|
|
float L_15 = V_0;
|
|
float L_16 = __this->___positionOfSelectedLogEntry_18;
|
|
if ((!(((float)L_15) < ((float)((float)il2cpp_codegen_subtract(L_16, (1.0f)))))))
|
|
{
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
{
|
|
// contentPosTop = positionOfSelectedLogEntry - 1f;
|
|
float L_17 = __this->___positionOfSelectedLogEntry_18;
|
|
V_0 = ((float)il2cpp_codegen_subtract(L_17, (1.0f)));
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
// if( contentPosBottom < contentPosTop + 2f )
|
|
float L_18 = V_1;
|
|
float L_19 = V_0;
|
|
if ((!(((float)L_18) < ((float)((float)il2cpp_codegen_add(L_19, (2.0f)))))))
|
|
{
|
|
goto IL_00b0;
|
|
}
|
|
}
|
|
{
|
|
// contentPosBottom = contentPosTop + 2f;
|
|
float L_20 = V_0;
|
|
V_1 = ((float)il2cpp_codegen_add(L_20, (2.0f)));
|
|
goto IL_00b0;
|
|
}
|
|
|
|
IL_008b:
|
|
{
|
|
// contentPosBottom -= deltaHeightOfSelectedLogEntry;
|
|
float L_21 = V_1;
|
|
float L_22 = __this->___deltaHeightOfSelectedLogEntry_20;
|
|
V_1 = ((float)il2cpp_codegen_subtract(L_21, L_22));
|
|
// if( contentPosBottom < positionOfSelectedLogEntry + 1f )
|
|
float L_23 = V_1;
|
|
float L_24 = __this->___positionOfSelectedLogEntry_18;
|
|
if ((!(((float)L_23) < ((float)((float)il2cpp_codegen_add(L_24, (1.0f)))))))
|
|
{
|
|
goto IL_00b0;
|
|
}
|
|
}
|
|
{
|
|
// contentPosBottom = positionOfSelectedLogEntry + 1f;
|
|
float L_25 = __this->___positionOfSelectedLogEntry_18;
|
|
V_1 = ((float)il2cpp_codegen_add(L_25, (1.0f)));
|
|
}
|
|
|
|
IL_00b0:
|
|
{
|
|
// int newTopIndex = (int) ( contentPosTop * _1OverLogItemHeight );
|
|
float L_26 = V_0;
|
|
float L_27 = __this->____1OverLogItemHeight_12;
|
|
V_2 = il2cpp_codegen_cast_double_to_int<int32_t>(((float)il2cpp_codegen_multiply(L_26, L_27)));
|
|
// int newBottomIndex = (int) ( contentPosBottom * _1OverLogItemHeight );
|
|
float L_28 = V_1;
|
|
float L_29 = __this->____1OverLogItemHeight_12;
|
|
V_3 = il2cpp_codegen_cast_double_to_int<int32_t>(((float)il2cpp_codegen_multiply(L_28, L_29)));
|
|
// if( newTopIndex < 0 )
|
|
int32_t L_30 = V_2;
|
|
if ((((int32_t)L_30) >= ((int32_t)0)))
|
|
{
|
|
goto IL_00ca;
|
|
}
|
|
}
|
|
{
|
|
// newTopIndex = 0;
|
|
V_2 = 0;
|
|
}
|
|
|
|
IL_00ca:
|
|
{
|
|
// if( newBottomIndex > indicesOfEntriesToShow.Count - 1 )
|
|
int32_t L_31 = V_3;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_32 = __this->___indicesOfEntriesToShow_15;
|
|
int32_t L_33;
|
|
L_33 = DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_inline(L_32, DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
if ((((int32_t)L_31) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_33, 1)))))
|
|
{
|
|
goto IL_00e8;
|
|
}
|
|
}
|
|
{
|
|
// newBottomIndex = indicesOfEntriesToShow.Count - 1;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_34 = __this->___indicesOfEntriesToShow_15;
|
|
int32_t L_35;
|
|
L_35 = DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_inline(L_34, DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_RuntimeMethod_var);
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(L_35, 1));
|
|
}
|
|
|
|
IL_00e8:
|
|
{
|
|
// if( currentTopIndex == -1 )
|
|
int32_t L_36 = __this->___currentTopIndex_23;
|
|
if ((!(((uint32_t)L_36) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_010f;
|
|
}
|
|
}
|
|
{
|
|
// updateAllVisibleItemContents = true;
|
|
___updateAllVisibleItemContents0 = (bool)1;
|
|
// currentTopIndex = newTopIndex;
|
|
int32_t L_37 = V_2;
|
|
__this->___currentTopIndex_23 = L_37;
|
|
// currentBottomIndex = newBottomIndex;
|
|
int32_t L_38 = V_3;
|
|
__this->___currentBottomIndex_24 = L_38;
|
|
// CreateLogItemsBetweenIndices( newTopIndex, newBottomIndex );
|
|
int32_t L_39 = V_2;
|
|
int32_t L_40 = V_3;
|
|
DebugLogRecycledListView_CreateLogItemsBetweenIndices_mDB2C5AA2319B2CBF70A1FD041F20EF1DD420FD8C(__this, L_39, L_40, NULL);
|
|
goto IL_01d5;
|
|
}
|
|
|
|
IL_010f:
|
|
{
|
|
// if( newBottomIndex < currentTopIndex || newTopIndex > currentBottomIndex )
|
|
int32_t L_41 = V_3;
|
|
int32_t L_42 = __this->___currentTopIndex_23;
|
|
if ((((int32_t)L_41) < ((int32_t)L_42)))
|
|
{
|
|
goto IL_0121;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_43 = V_2;
|
|
int32_t L_44 = __this->___currentBottomIndex_24;
|
|
if ((((int32_t)L_43) <= ((int32_t)L_44)))
|
|
{
|
|
goto IL_0143;
|
|
}
|
|
}
|
|
|
|
IL_0121:
|
|
{
|
|
// updateAllVisibleItemContents = true;
|
|
___updateAllVisibleItemContents0 = (bool)1;
|
|
// DestroyLogItemsBetweenIndices( currentTopIndex, currentBottomIndex );
|
|
int32_t L_45 = __this->___currentTopIndex_23;
|
|
int32_t L_46 = __this->___currentBottomIndex_24;
|
|
DebugLogRecycledListView_DestroyLogItemsBetweenIndices_m85E1847758B9863E284951C77E3BB2DEF9A8E4A6(__this, L_45, L_46, NULL);
|
|
// CreateLogItemsBetweenIndices( newTopIndex, newBottomIndex );
|
|
int32_t L_47 = V_2;
|
|
int32_t L_48 = V_3;
|
|
DebugLogRecycledListView_CreateLogItemsBetweenIndices_mDB2C5AA2319B2CBF70A1FD041F20EF1DD420FD8C(__this, L_47, L_48, NULL);
|
|
goto IL_01c7;
|
|
}
|
|
|
|
IL_0143:
|
|
{
|
|
// if( newTopIndex > currentTopIndex )
|
|
int32_t L_49 = V_2;
|
|
int32_t L_50 = __this->___currentTopIndex_23;
|
|
if ((((int32_t)L_49) <= ((int32_t)L_50)))
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
}
|
|
{
|
|
// DestroyLogItemsBetweenIndices( currentTopIndex, newTopIndex - 1 );
|
|
int32_t L_51 = __this->___currentTopIndex_23;
|
|
int32_t L_52 = V_2;
|
|
DebugLogRecycledListView_DestroyLogItemsBetweenIndices_m85E1847758B9863E284951C77E3BB2DEF9A8E4A6(__this, L_51, ((int32_t)il2cpp_codegen_subtract(L_52, 1)), NULL);
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
// if( newBottomIndex < currentBottomIndex )
|
|
int32_t L_53 = V_3;
|
|
int32_t L_54 = __this->___currentBottomIndex_24;
|
|
if ((((int32_t)L_53) >= ((int32_t)L_54)))
|
|
{
|
|
goto IL_0173;
|
|
}
|
|
}
|
|
{
|
|
// DestroyLogItemsBetweenIndices( newBottomIndex + 1, currentBottomIndex );
|
|
int32_t L_55 = V_3;
|
|
int32_t L_56 = __this->___currentBottomIndex_24;
|
|
DebugLogRecycledListView_DestroyLogItemsBetweenIndices_m85E1847758B9863E284951C77E3BB2DEF9A8E4A6(__this, ((int32_t)il2cpp_codegen_add(L_55, 1)), L_56, NULL);
|
|
}
|
|
|
|
IL_0173:
|
|
{
|
|
// if( newTopIndex < currentTopIndex )
|
|
int32_t L_57 = V_2;
|
|
int32_t L_58 = __this->___currentTopIndex_23;
|
|
if ((((int32_t)L_57) >= ((int32_t)L_58)))
|
|
{
|
|
goto IL_019d;
|
|
}
|
|
}
|
|
{
|
|
// CreateLogItemsBetweenIndices( newTopIndex, currentTopIndex - 1 );
|
|
int32_t L_59 = V_2;
|
|
int32_t L_60 = __this->___currentTopIndex_23;
|
|
DebugLogRecycledListView_CreateLogItemsBetweenIndices_mDB2C5AA2319B2CBF70A1FD041F20EF1DD420FD8C(__this, L_59, ((int32_t)il2cpp_codegen_subtract(L_60, 1)), NULL);
|
|
// if( !updateAllVisibleItemContents )
|
|
bool L_61 = ___updateAllVisibleItemContents0;
|
|
if (L_61)
|
|
{
|
|
goto IL_019d;
|
|
}
|
|
}
|
|
{
|
|
// UpdateLogItemContentsBetweenIndices( newTopIndex, currentTopIndex - 1 );
|
|
int32_t L_62 = V_2;
|
|
int32_t L_63 = __this->___currentTopIndex_23;
|
|
DebugLogRecycledListView_UpdateLogItemContentsBetweenIndices_m9A78E2D3DFCB338642E1CAA287A6EE18D4120490(__this, L_62, ((int32_t)il2cpp_codegen_subtract(L_63, 1)), NULL);
|
|
}
|
|
|
|
IL_019d:
|
|
{
|
|
// if( newBottomIndex > currentBottomIndex )
|
|
int32_t L_64 = V_3;
|
|
int32_t L_65 = __this->___currentBottomIndex_24;
|
|
if ((((int32_t)L_64) <= ((int32_t)L_65)))
|
|
{
|
|
goto IL_01c7;
|
|
}
|
|
}
|
|
{
|
|
// CreateLogItemsBetweenIndices( currentBottomIndex + 1, newBottomIndex );
|
|
int32_t L_66 = __this->___currentBottomIndex_24;
|
|
int32_t L_67 = V_3;
|
|
DebugLogRecycledListView_CreateLogItemsBetweenIndices_mDB2C5AA2319B2CBF70A1FD041F20EF1DD420FD8C(__this, ((int32_t)il2cpp_codegen_add(L_66, 1)), L_67, NULL);
|
|
// if( !updateAllVisibleItemContents )
|
|
bool L_68 = ___updateAllVisibleItemContents0;
|
|
if (L_68)
|
|
{
|
|
goto IL_01c7;
|
|
}
|
|
}
|
|
{
|
|
// UpdateLogItemContentsBetweenIndices( currentBottomIndex + 1, newBottomIndex );
|
|
int32_t L_69 = __this->___currentBottomIndex_24;
|
|
int32_t L_70 = V_3;
|
|
DebugLogRecycledListView_UpdateLogItemContentsBetweenIndices_m9A78E2D3DFCB338642E1CAA287A6EE18D4120490(__this, ((int32_t)il2cpp_codegen_add(L_69, 1)), L_70, NULL);
|
|
}
|
|
|
|
IL_01c7:
|
|
{
|
|
// currentTopIndex = newTopIndex;
|
|
int32_t L_71 = V_2;
|
|
__this->___currentTopIndex_23 = L_71;
|
|
// currentBottomIndex = newBottomIndex;
|
|
int32_t L_72 = V_3;
|
|
__this->___currentBottomIndex_24 = L_72;
|
|
}
|
|
|
|
IL_01d5:
|
|
{
|
|
// if( updateAllVisibleItemContents )
|
|
bool L_73 = ___updateAllVisibleItemContents0;
|
|
if (!L_73)
|
|
{
|
|
goto IL_01f1;
|
|
}
|
|
}
|
|
{
|
|
// UpdateLogItemContentsBetweenIndices( currentTopIndex, currentBottomIndex );
|
|
int32_t L_74 = __this->___currentTopIndex_23;
|
|
int32_t L_75 = __this->___currentBottomIndex_24;
|
|
DebugLogRecycledListView_UpdateLogItemContentsBetweenIndices_m9A78E2D3DFCB338642E1CAA287A6EE18D4120490(__this, L_74, L_75, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_01eb:
|
|
{
|
|
// HardResetItems();
|
|
DebugLogRecycledListView_HardResetItems_mFF51258835419129C8C059D5EC869EF1998DEB55(__this, NULL);
|
|
}
|
|
|
|
IL_01f1:
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::CreateLogItemsBetweenIndices(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_CreateLogItemsBetweenIndices_mDB2C5AA2319B2CBF70A1FD041F20EF1DD420FD8C (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, int32_t ___topIndex0, int32_t ___bottomIndex1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
// for( int i = topIndex; i <= bottomIndex; i++ )
|
|
int32_t L_0 = ___topIndex0;
|
|
V_0 = L_0;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
// CreateLogItemAtIndex( i );
|
|
int32_t L_1 = V_0;
|
|
DebugLogRecycledListView_CreateLogItemAtIndex_mDB380A0813676996CF1295C0064548546D724006(__this, L_1, NULL);
|
|
// for( int i = topIndex; i <= bottomIndex; i++ )
|
|
int32_t L_2 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
// for( int i = topIndex; i <= bottomIndex; i++ )
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4 = ___bottomIndex1;
|
|
if ((((int32_t)L_3) <= ((int32_t)L_4)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::CreateLogItemAtIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_CreateLogItemAtIndex_mDB380A0813676996CF1295C0064548546D724006 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, int32_t ___index0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m11CA9CFE0B08B5F7D60812584F934FEFEEE7CA67_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* V_0 = NULL;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
// DebugLogItem logItem = manager.PopLogItem();
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_0 = __this->___manager_9;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_1;
|
|
L_1 = DebugLogManager_PopLogItem_m854ED51B251AD048C1097A5BF3F6E8518504E0EA(L_0, NULL);
|
|
V_0 = L_1;
|
|
// Vector2 anchoredPosition = new Vector2( 1f, -index * logItemHeight );
|
|
int32_t L_2 = ___index0;
|
|
float L_3 = __this->___logItemHeight_11;
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&V_1), (1.0f), ((float)il2cpp_codegen_multiply(((float)((-L_2))), L_3)), NULL);
|
|
// if( index > indexOfSelectedLogEntry )
|
|
int32_t L_4 = ___index0;
|
|
int32_t L_5 = __this->___indexOfSelectedLogEntry_17;
|
|
if ((((int32_t)L_4) <= ((int32_t)L_5)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
// anchoredPosition.y -= deltaHeightOfSelectedLogEntry;
|
|
float* L_6 = (&(&V_1)->___y_1);
|
|
float* L_7 = L_6;
|
|
float L_8 = *((float*)L_7);
|
|
float L_9 = __this->___deltaHeightOfSelectedLogEntry_20;
|
|
*((float*)L_7) = (float)((float)il2cpp_codegen_subtract(L_8, L_9));
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
// logItem.Transform.anchoredPosition = anchoredPosition;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_10 = V_0;
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_11;
|
|
L_11 = DebugLogItem_get_Transform_mBAA5D6E01F83683FF29CE440C3D2F4D5616E6466_inline(L_10, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12 = V_1;
|
|
RectTransform_set_anchoredPosition_mF903ACE04F6959B1CD67E2B94FABC0263068F965(L_11, L_12, NULL);
|
|
// ColorLogItem( logItem, index );
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_13 = V_0;
|
|
int32_t L_14 = ___index0;
|
|
DebugLogRecycledListView_ColorLogItem_m46DD7992FD72641EC61AE079E99B244472429CF3(__this, L_13, L_14, NULL);
|
|
// logItemsAtIndices[index] = logItem;
|
|
Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA* L_15 = __this->___logItemsAtIndices_21;
|
|
int32_t L_16 = ___index0;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_17 = V_0;
|
|
Dictionary_2_set_Item_m11CA9CFE0B08B5F7D60812584F934FEFEEE7CA67(L_15, L_16, L_17, Dictionary_2_set_Item_m11CA9CFE0B08B5F7D60812584F934FEFEEE7CA67_RuntimeMethod_var);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::DestroyLogItemsBetweenIndices(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_DestroyLogItemsBetweenIndices_m85E1847758B9863E284951C77E3BB2DEF9A8E4A6 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, int32_t ___topIndex0, int32_t ___bottomIndex1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
// for( int i = topIndex; i <= bottomIndex; i++ )
|
|
int32_t L_0 = ___topIndex0;
|
|
V_0 = L_0;
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
// manager.PoolLogItem( logItemsAtIndices[i] );
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_1 = __this->___manager_9;
|
|
Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA* L_2 = __this->___logItemsAtIndices_21;
|
|
int32_t L_3 = V_0;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_4;
|
|
L_4 = Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7(L_2, L_3, Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7_RuntimeMethod_var);
|
|
DebugLogManager_PoolLogItem_m50869AD2E15FB447682B47A83D7B06DED349B736(L_1, L_4, NULL);
|
|
// for( int i = topIndex; i <= bottomIndex; i++ )
|
|
int32_t L_5 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
// for( int i = topIndex; i <= bottomIndex; i++ )
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7 = ___bottomIndex1;
|
|
if ((((int32_t)L_6) <= ((int32_t)L_7)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::UpdateLogItemContentsBetweenIndices(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_UpdateLogItemContentsBetweenIndices_m9A78E2D3DFCB338642E1CAA287A6EE18D4120490 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, int32_t ___topIndex0, int32_t ___bottomIndex1, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* G_B3_0 = NULL;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* G_B3_1 = NULL;
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* G_B2_0 = NULL;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* G_B2_1 = NULL;
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 G_B4_0;
|
|
memset((&G_B4_0), 0, sizeof(G_B4_0));
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* G_B4_1 = NULL;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* G_B4_2 = NULL;
|
|
{
|
|
// for( int i = topIndex; i <= bottomIndex; i++ )
|
|
int32_t L_0 = ___topIndex0;
|
|
V_1 = L_0;
|
|
goto IL_0076;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
// logItem = logItemsAtIndices[i];
|
|
Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA* L_1 = __this->___logItemsAtIndices_21;
|
|
int32_t L_2 = V_1;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_3;
|
|
L_3 = Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7(L_1, L_2, Dictionary_2_get_Item_m1DC8B222AF21BC8AD4757DA8F6F245232C5A7AA7_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
// logItem.SetContent( collapsedLogEntries[indicesOfEntriesToShow[i]], ( timestampsOfEntriesToShow != null ) ? timestampsOfEntriesToShow[i] : (DebugLogEntryTimestamp?) null, i, i == indexOfSelectedLogEntry );
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_4 = V_0;
|
|
List_1_tD2C16B8727E0DB675306A92C1FBBE60BFE8BE983* L_5 = __this->___collapsedLogEntries_14;
|
|
DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* L_6 = __this->___indicesOfEntriesToShow_15;
|
|
int32_t L_7 = V_1;
|
|
int32_t L_8;
|
|
L_8 = DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A(L_6, L_7, DebugLogIndexList_1_get_Item_mBD673B6FAE1EA8BC2A674EE0E0E62A3CDE59D37A_RuntimeMethod_var);
|
|
DebugLogEntry_tC2ACB64C8D5A84F9683A36DFD7F1532D1EADF5CD* L_9;
|
|
L_9 = List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78(L_5, L_8, List_1_get_Item_mAD8D296FC12456C956E6FE44ECAE3E1F11204C78_RuntimeMethod_var);
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_10 = __this->___timestampsOfEntriesToShow_16;
|
|
G_B2_0 = L_9;
|
|
G_B2_1 = L_4;
|
|
if (L_10)
|
|
{
|
|
G_B3_0 = L_9;
|
|
G_B3_1 = L_4;
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_2), sizeof(Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41));
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 L_11 = V_2;
|
|
G_B4_0 = L_11;
|
|
G_B4_1 = G_B2_0;
|
|
G_B4_2 = G_B2_1;
|
|
goto IL_004d;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
DebugLogIndexList_1_t7289A41B311FC7ED41C890065D87008A160F0D20* L_12 = __this->___timestampsOfEntriesToShow_16;
|
|
int32_t L_13 = V_1;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_14;
|
|
L_14 = DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695(L_12, L_13, DebugLogIndexList_1_get_Item_mA9248B86B3BA915825FBD000D0D4A222B9756695_RuntimeMethod_var);
|
|
Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41 L_15;
|
|
memset((&L_15), 0, sizeof(L_15));
|
|
Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685((&L_15), L_14, /*hidden argument*/Nullable_1__ctor_m745BF2FAC35C508F889804F26D66321FE3785685_RuntimeMethod_var);
|
|
G_B4_0 = L_15;
|
|
G_B4_1 = G_B3_0;
|
|
G_B4_2 = G_B3_1;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = __this->___indexOfSelectedLogEntry_17;
|
|
DebugLogItem_SetContent_mAA060346F58906FAA676D025BF7B440DEBA1C7E3(G_B4_2, G_B4_1, G_B4_0, L_16, (bool)((((int32_t)L_17) == ((int32_t)L_18))? 1 : 0), NULL);
|
|
// if( isCollapseOn )
|
|
bool L_19 = __this->___isCollapseOn_22;
|
|
if (!L_19)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
{
|
|
// logItem.ShowCount();
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_20 = V_0;
|
|
DebugLogItem_ShowCount_m370DD836F4F51DE3090FBA4E46F0D5DAE4F6E7A4(L_20, NULL);
|
|
goto IL_0072;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
// logItem.HideCount();
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_21 = V_0;
|
|
DebugLogItem_HideCount_m74445C719C5941D4DD597C50988526E5FAF7DBD2(L_21, NULL);
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
// for( int i = topIndex; i <= bottomIndex; i++ )
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
// for( int i = topIndex; i <= bottomIndex; i++ )
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = ___bottomIndex1;
|
|
if ((((int32_t)L_23) <= ((int32_t)L_24)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::ColorLogItem(IngameDebugConsole.DebugLogItem,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_ColorLogItem_m46DD7992FD72641EC61AE079E99B244472429CF3 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___logItem0, int32_t ___index1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// if( index == indexOfSelectedLogEntry )
|
|
int32_t L_0 = ___index1;
|
|
int32_t L_1 = __this->___indexOfSelectedLogEntry_17;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
// logItem.Image.color = logItemSelectedColor;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_2 = ___logItem0;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_3;
|
|
L_3 = DebugLogItem_get_Image_m19E45CDC961A393E891617E0AE8196EEC60827E2_inline(L_2, NULL);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_4 = __this->___logItemSelectedColor_8;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_3, L_4);
|
|
return;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
// else if( index % 2 == 0 )
|
|
int32_t L_5 = ___index1;
|
|
if (((int32_t)(L_5%2)))
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
// logItem.Image.color = logItemNormalColor1;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_6 = ___logItem0;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_7;
|
|
L_7 = DebugLogItem_get_Image_m19E45CDC961A393E891617E0AE8196EEC60827E2_inline(L_6, NULL);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_8 = __this->___logItemNormalColor1_6;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_7, L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
// logItem.Image.color = logItemNormalColor2;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_9 = ___logItem0;
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_10;
|
|
L_10 = DebugLogItem_get_Image_m19E45CDC961A393E891617E0AE8196EEC60827E2_inline(L_9, NULL);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_11 = __this->___logItemNormalColor2_7;
|
|
VirtualActionInvoker1< Color_tD001788D726C3A7F1379BEED0260B9591F440C1F >::Invoke(23 /* System.Void UnityEngine.UI.Graphic::set_color(UnityEngine.Color) */, L_10, L_11);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView__ctor_m187BC9A3FCE5156FCDA97401BF5431EB4BAC164A (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m66E6C05B4FDC3BEA15F9B57F7F885C886492C1D7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// private int indexOfSelectedLogEntry = int.MaxValue;
|
|
__this->___indexOfSelectedLogEntry_17 = ((int32_t)2147483647LL);
|
|
// private float positionOfSelectedLogEntry = float.MaxValue;
|
|
__this->___positionOfSelectedLogEntry_18 = ((std::numeric_limits<float>::max)());
|
|
// private readonly Dictionary<int, DebugLogItem> logItemsAtIndices = new Dictionary<int, DebugLogItem>( 256 );
|
|
Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA* L_0 = (Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA*)il2cpp_codegen_object_new(Dictionary_2_t89E54B010F23511FCFA9B00E49CFAFA701E99DCA_il2cpp_TypeInfo_var);
|
|
Dictionary_2__ctor_m66E6C05B4FDC3BEA15F9B57F7F885C886492C1D7(L_0, ((int32_t)256), Dictionary_2__ctor_m66E6C05B4FDC3BEA15F9B57F7F885C886492C1D7_RuntimeMethod_var);
|
|
__this->___logItemsAtIndices_21 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___logItemsAtIndices_21), (void*)L_0);
|
|
// private int currentTopIndex = -1, currentBottomIndex = -1;
|
|
__this->___currentTopIndex_23 = (-1);
|
|
// private int currentTopIndex = -1, currentBottomIndex = -1;
|
|
__this->___currentBottomIndex_24 = (-1);
|
|
MonoBehaviour__ctor_m592DB0105CA0BC97AA1C5F4AD27B12D68A3B7C1E(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogRecycledListView::<Awake>b__25_0(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogRecycledListView_U3CAwakeU3Eb__25_0_m46F3DED084709344721E369E0D3AC052735594A5 (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___pos0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// scrollView.onValueChanged.AddListener( ( pos ) => UpdateItemsInTheList( false ) );
|
|
DebugLogRecycledListView_UpdateItemsInTheList_mFA3693DC343B8C587ADB84C71BEFF417EA3710EA(__this, (bool)0, 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
|
|
// System.Void IngameDebugConsole.DebugLogResizeListener::UnityEngine.EventSystems.IBeginDragHandler.OnBeginDrag(UnityEngine.EventSystems.PointerEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogResizeListener_UnityEngine_EventSystems_IBeginDragHandler_OnBeginDrag_mA23891E13947BF5553F8E9463958B5733DCDAEAF (DebugLogResizeListener_tAEB6FDAE1D37AD856CBD82204674E6AC4C1764B5* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogResizeListener::UnityEngine.EventSystems.IDragHandler.OnDrag(UnityEngine.EventSystems.PointerEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogResizeListener_UnityEngine_EventSystems_IDragHandler_OnDrag_m34D99B83889FBD661DE942A7C59522A8ABB0AD3A (DebugLogResizeListener_tAEB6FDAE1D37AD856CBD82204674E6AC4C1764B5* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___eventData0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// debugManager.Resize( eventData );
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_0 = __this->___debugManager_4;
|
|
PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* L_1 = ___eventData0;
|
|
DebugLogManager_Resize_m0F28C37B4111332354C18770A29BD3D3277DD0E4(L_0, L_1, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugLogResizeListener::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugLogResizeListener__ctor_m9891E2D11D53F3900EB79C88301C937AD4FB8B33 (DebugLogResizeListener_tAEB6FDAE1D37AD856CBD82204674E6AC4C1764B5* __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
|
|
// System.Void IngameDebugConsole.DebugsOnScrollListener::OnScroll(UnityEngine.EventSystems.PointerEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugsOnScrollListener_OnScroll_m12A82295EEFBA395210BFDF1C80BA59B7438D8F2 (DebugsOnScrollListener_t2E15E040AD7FE915FC4F583966EBDE135A4C0DB0* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___data0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// if( IsScrollbarAtBottom() )
|
|
bool L_0;
|
|
L_0 = DebugsOnScrollListener_IsScrollbarAtBottom_mD32894983625F436CB103115886010DE782D5A8D(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
// debugLogManager.SetSnapToBottom( true );
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_1 = __this->___debugLogManager_5;
|
|
DebugLogManager_SetSnapToBottom_m869F0D298244C064CF9C7611B3D11F198433D6BC_inline(L_1, (bool)1, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
// debugLogManager.SetSnapToBottom( false );
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_2 = __this->___debugLogManager_5;
|
|
DebugLogManager_SetSnapToBottom_m869F0D298244C064CF9C7611B3D11F198433D6BC_inline(L_2, (bool)0, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugsOnScrollListener::OnBeginDrag(UnityEngine.EventSystems.PointerEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugsOnScrollListener_OnBeginDrag_mDA693E6910C47EFFFB1C9E749BACF843BE7680DB (DebugsOnScrollListener_t2E15E040AD7FE915FC4F583966EBDE135A4C0DB0* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___data0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// debugLogManager.SetSnapToBottom( false );
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_0 = __this->___debugLogManager_5;
|
|
DebugLogManager_SetSnapToBottom_m869F0D298244C064CF9C7611B3D11F198433D6BC_inline(L_0, (bool)0, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugsOnScrollListener::OnEndDrag(UnityEngine.EventSystems.PointerEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugsOnScrollListener_OnEndDrag_m73CCC8AC42E0FC185F490DE8829D51554E59968E (DebugsOnScrollListener_t2E15E040AD7FE915FC4F583966EBDE135A4C0DB0* __this, PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* ___data0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// if( IsScrollbarAtBottom() )
|
|
bool L_0;
|
|
L_0 = DebugsOnScrollListener_IsScrollbarAtBottom_mD32894983625F436CB103115886010DE782D5A8D(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
// debugLogManager.SetSnapToBottom( true );
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_1 = __this->___debugLogManager_5;
|
|
DebugLogManager_SetSnapToBottom_m869F0D298244C064CF9C7611B3D11F198433D6BC_inline(L_1, (bool)1, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
// debugLogManager.SetSnapToBottom( false );
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_2 = __this->___debugLogManager_5;
|
|
DebugLogManager_SetSnapToBottom_m869F0D298244C064CF9C7611B3D11F198433D6BC_inline(L_2, (bool)0, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugsOnScrollListener::OnScrollbarDragStart(UnityEngine.EventSystems.BaseEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugsOnScrollListener_OnScrollbarDragStart_mC24D5BD9F61D0BC49F91808A5D9B20E59A13D30E (DebugsOnScrollListener_t2E15E040AD7FE915FC4F583966EBDE135A4C0DB0* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___data0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// debugLogManager.SetSnapToBottom( false );
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_0 = __this->___debugLogManager_5;
|
|
DebugLogManager_SetSnapToBottom_m869F0D298244C064CF9C7611B3D11F198433D6BC_inline(L_0, (bool)0, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugsOnScrollListener::OnScrollbarDragEnd(UnityEngine.EventSystems.BaseEventData)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugsOnScrollListener_OnScrollbarDragEnd_mB867BC08242DE9B5EDD968AB6A01DBA5F96626F9 (DebugsOnScrollListener_t2E15E040AD7FE915FC4F583966EBDE135A4C0DB0* __this, BaseEventData_tE03A848325C0AE8E76C6CA15FD86395EBF83364F* ___data0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// if( IsScrollbarAtBottom() )
|
|
bool L_0;
|
|
L_0 = DebugsOnScrollListener_IsScrollbarAtBottom_mD32894983625F436CB103115886010DE782D5A8D(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
// debugLogManager.SetSnapToBottom( true );
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_1 = __this->___debugLogManager_5;
|
|
DebugLogManager_SetSnapToBottom_m869F0D298244C064CF9C7611B3D11F198433D6BC_inline(L_1, (bool)1, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
// debugLogManager.SetSnapToBottom( false );
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_2 = __this->___debugLogManager_5;
|
|
DebugLogManager_SetSnapToBottom_m869F0D298244C064CF9C7611B3D11F198433D6BC_inline(L_2, (bool)0, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean IngameDebugConsole.DebugsOnScrollListener::IsScrollbarAtBottom()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DebugsOnScrollListener_IsScrollbarAtBottom_mD32894983625F436CB103115886010DE782D5A8D (DebugsOnScrollListener_t2E15E040AD7FE915FC4F583966EBDE135A4C0DB0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// float scrollbarYPos = debugsScrollRect.verticalNormalizedPosition;
|
|
ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* L_0 = __this->___debugsScrollRect_4;
|
|
float L_1;
|
|
L_1 = ScrollRect_get_verticalNormalizedPosition_m4FE766F04272C1805FDE2A4B72D80F6190841FA1(L_0, NULL);
|
|
// if( scrollbarYPos <= 1E-6f )
|
|
if ((!(((float)L_1) <= ((float)(9.99999997E-07f)))))
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
// return true;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
// return false;
|
|
return (bool)0;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.DebugsOnScrollListener::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebugsOnScrollListener__ctor_mC599E1B72DE41CF49476C9F2C121DDAE4B9F4B1F (DebugsOnScrollListener_t2E15E040AD7FE915FC4F583966EBDE135A4C0DB0* __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
|
|
// System.String IngameDebugConsole.Commands.PlayerPrefsCommands::PlayerPrefsGetInt(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PlayerPrefsCommands_PlayerPrefsGetInt_m1AD5262F09DF794049854B79B4072FB73FB5AC0D (String_t* ___key0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFFA301E93C47E7C4218CADE5DC51C7C8F9CF76EA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
// if( !PlayerPrefs.HasKey( key ) ) return "Key Not Found";
|
|
String_t* L_0 = ___key0;
|
|
bool L_1;
|
|
L_1 = PlayerPrefs_HasKey_mCA5C64BBA6BF8B230BC3BC92B4761DD3B11D4668(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
// if( !PlayerPrefs.HasKey( key ) ) return "Key Not Found";
|
|
return _stringLiteralFFA301E93C47E7C4218CADE5DC51C7C8F9CF76EA;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
// return PlayerPrefs.GetInt( key ).ToString();
|
|
String_t* L_2 = ___key0;
|
|
int32_t L_3;
|
|
L_3 = PlayerPrefs_GetInt_m4D859DBEABAD3FB406C94485A0B2638A0C7F2987(L_2, NULL);
|
|
V_0 = L_3;
|
|
String_t* L_4;
|
|
L_4 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_0), NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.Commands.PlayerPrefsCommands::PlayerPrefsSetInt(System.String,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefsCommands_PlayerPrefsSetInt_mEF0B86F030CFDDD28CC85611A1C6A9B0BAAA3878 (String_t* ___key0, int32_t ___value1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// PlayerPrefs.SetInt( key, value );
|
|
String_t* L_0 = ___key0;
|
|
int32_t L_1 = ___value1;
|
|
PlayerPrefs_SetInt_m956D3E2DB966F20CF42F842880DDF9E2BE94D948(L_0, L_1, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.String IngameDebugConsole.Commands.PlayerPrefsCommands::PlayerPrefsGetFloat(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PlayerPrefsCommands_PlayerPrefsGetFloat_m1653BE431D3C516BB82CA035D00B165D2368CAB1 (String_t* ___key0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFFA301E93C47E7C4218CADE5DC51C7C8F9CF76EA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
{
|
|
// if( !PlayerPrefs.HasKey( key ) ) return "Key Not Found";
|
|
String_t* L_0 = ___key0;
|
|
bool L_1;
|
|
L_1 = PlayerPrefs_HasKey_mCA5C64BBA6BF8B230BC3BC92B4761DD3B11D4668(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
// if( !PlayerPrefs.HasKey( key ) ) return "Key Not Found";
|
|
return _stringLiteralFFA301E93C47E7C4218CADE5DC51C7C8F9CF76EA;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
// return PlayerPrefs.GetFloat( key ).ToString();
|
|
String_t* L_2 = ___key0;
|
|
float L_3;
|
|
L_3 = PlayerPrefs_GetFloat_m81F89D571E11218ED76DC9234CF8FAC2515FA7CB(L_2, NULL);
|
|
V_0 = L_3;
|
|
String_t* L_4;
|
|
L_4 = Single_ToString_mE282EDA9CA4F7DF88432D807732837A629D04972((&V_0), NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.Commands.PlayerPrefsCommands::PlayerPrefsSetFloat(System.String,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefsCommands_PlayerPrefsSetFloat_mEBC950176A53EFFE565893C0E65B834DB356EC00 (String_t* ___key0, float ___value1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// PlayerPrefs.SetFloat( key, value );
|
|
String_t* L_0 = ___key0;
|
|
float L_1 = ___value1;
|
|
PlayerPrefs_SetFloat_m1E8EA662BB9D8CF339D7DA2C452FCDFED88C5285(L_0, L_1, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.String IngameDebugConsole.Commands.PlayerPrefsCommands::PlayerPrefsGetString(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PlayerPrefsCommands_PlayerPrefsGetString_mCE180222D82ECB89E8BF1A9E48C6389C22B77114 (String_t* ___key0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFFA301E93C47E7C4218CADE5DC51C7C8F9CF76EA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// if( !PlayerPrefs.HasKey( key ) ) return "Key Not Found";
|
|
String_t* L_0 = ___key0;
|
|
bool L_1;
|
|
L_1 = PlayerPrefs_HasKey_mCA5C64BBA6BF8B230BC3BC92B4761DD3B11D4668(L_0, NULL);
|
|
if (L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
// if( !PlayerPrefs.HasKey( key ) ) return "Key Not Found";
|
|
return _stringLiteralFFA301E93C47E7C4218CADE5DC51C7C8F9CF76EA;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
// return PlayerPrefs.GetString( key );
|
|
String_t* L_2 = ___key0;
|
|
String_t* L_3;
|
|
L_3 = PlayerPrefs_GetString_mA4C9F842BF77E5572AB20EA087C7048F870D02AE(L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.Commands.PlayerPrefsCommands::PlayerPrefsSetString(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefsCommands_PlayerPrefsSetString_m26219A3CC8842581EBD5F90C41A49904FD0D48CA (String_t* ___key0, String_t* ___value1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// PlayerPrefs.SetString( key, value );
|
|
String_t* L_0 = ___key0;
|
|
String_t* L_1 = ___value1;
|
|
PlayerPrefs_SetString_mF4F457C81BB75F0213547C6287BA36E15E1F0256(L_0, L_1, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.Commands.PlayerPrefsCommands::PlayerPrefsDelete(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefsCommands_PlayerPrefsDelete_mB0EACD4B5284001E08974A49DE65CE248E1B5A3C (String_t* ___key0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// PlayerPrefs.DeleteKey( key );
|
|
String_t* L_0 = ___key0;
|
|
PlayerPrefs_DeleteKey_mF3A7857B52DCEF4139843CD28716788624C2AD30(L_0, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.Commands.PlayerPrefsCommands::PlayerPrefsClear()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefsCommands_PlayerPrefsClear_m9B307B9BD68A4E9834B639F622109D5D6AAAE7F2 (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// PlayerPrefs.DeleteAll();
|
|
PlayerPrefs_DeleteAll_m7687D47AE64203DB76AC6754EC276DFFD0DFAB0E(NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.Commands.PlayerPrefsCommands::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefsCommands__ctor_m1E7AD59FC034F092024E8EFB0139E15053EFFF50 (PlayerPrefsCommands_tF5F2E282C801F0F5C1CF7F530FD96CD9B70ECEC0* __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
|
|
// System.Void IngameDebugConsole.Commands.SceneCommands::LoadScene(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SceneCommands_LoadScene_mBAA44F58BB3F283CE354911CB9A48CC0B5DAA181 (String_t* ___sceneName0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// LoadSceneInternal( sceneName, false, LoadSceneMode.Single );
|
|
String_t* L_0 = ___sceneName0;
|
|
SceneCommands_LoadSceneInternal_m44750C6CBF099D1649D013DE26C8E6C838AA234B(L_0, (bool)0, 0, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.Commands.SceneCommands::LoadScene(System.String,UnityEngine.SceneManagement.LoadSceneMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SceneCommands_LoadScene_m982EF65D399214FE381233249AE819994B2CAE0E (String_t* ___sceneName0, int32_t ___mode1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// LoadSceneInternal( sceneName, false, mode );
|
|
String_t* L_0 = ___sceneName0;
|
|
int32_t L_1 = ___mode1;
|
|
SceneCommands_LoadSceneInternal_m44750C6CBF099D1649D013DE26C8E6C838AA234B(L_0, (bool)0, L_1, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.Commands.SceneCommands::LoadSceneAsync(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SceneCommands_LoadSceneAsync_m4117C64FD6C4645BFA744E942718E5B277602473 (String_t* ___sceneName0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// LoadSceneInternal( sceneName, true, LoadSceneMode.Single );
|
|
String_t* L_0 = ___sceneName0;
|
|
SceneCommands_LoadSceneInternal_m44750C6CBF099D1649D013DE26C8E6C838AA234B(L_0, (bool)1, 0, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.Commands.SceneCommands::LoadSceneAsync(System.String,UnityEngine.SceneManagement.LoadSceneMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SceneCommands_LoadSceneAsync_mC5B1FC860523EA817017662F94663E7DEA31EF38 (String_t* ___sceneName0, int32_t ___mode1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// LoadSceneInternal( sceneName, true, mode );
|
|
String_t* L_0 = ___sceneName0;
|
|
int32_t L_1 = ___mode1;
|
|
SceneCommands_LoadSceneInternal_m44750C6CBF099D1649D013DE26C8E6C838AA234B(L_0, (bool)1, L_1, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.Commands.SceneCommands::LoadSceneInternal(System.String,System.Boolean,UnityEngine.SceneManagement.LoadSceneMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SceneCommands_LoadSceneInternal_m44750C6CBF099D1649D013DE26C8E6C838AA234B (String_t* ___sceneName0, bool ___isAsync1, int32_t ___mode2, 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*)&SceneManager_tA0EF56A88ACA4A15731AF7FDC10A869FA4C698FA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14EFC2C6E9EEDD3D7AD722A958977C463EF508F0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral813C79655CE3ED707AE14612C0DEA0D767D00F51);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Scene_tA1DC762B79745EB5140F054C884855B922318356 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
// if( SceneManager.GetSceneByName( sceneName ).IsValid() )
|
|
String_t* L_0 = ___sceneName0;
|
|
il2cpp_codegen_runtime_class_init_inline(SceneManager_tA0EF56A88ACA4A15731AF7FDC10A869FA4C698FA_il2cpp_TypeInfo_var);
|
|
Scene_tA1DC762B79745EB5140F054C884855B922318356 L_1;
|
|
L_1 = SceneManager_GetSceneByName_m2A70CB2D1C586ED6747E82693785CA86F99FA9B9(L_0, NULL);
|
|
V_0 = L_1;
|
|
bool L_2;
|
|
L_2 = Scene_IsValid_m0D5200731D3E26ECBBB55803F9242965A14A4599((&V_0), NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
// Debug.Log( "Scene " + sceneName + " is already loaded" );
|
|
String_t* L_3 = ___sceneName0;
|
|
String_t* L_4;
|
|
L_4 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteral813C79655CE3ED707AE14612C0DEA0D767D00F51, L_3, _stringLiteral14EFC2C6E9EEDD3D7AD722A958977C463EF508F0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Log_m87A9A3C761FF5C43ED8A53B16190A53D08F818BB(L_4, NULL);
|
|
// return;
|
|
return;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
// if( isAsync )
|
|
bool L_5 = ___isAsync1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
// SceneManager.LoadSceneAsync( sceneName, mode );
|
|
String_t* L_6 = ___sceneName0;
|
|
int32_t L_7 = ___mode2;
|
|
il2cpp_codegen_runtime_class_init_inline(SceneManager_tA0EF56A88ACA4A15731AF7FDC10A869FA4C698FA_il2cpp_TypeInfo_var);
|
|
AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C* L_8;
|
|
L_8 = SceneManager_LoadSceneAsync_m29D55D2C6CB7A019B26DA3F44C0881FF6AC491EC(L_6, L_7, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
// SceneManager.LoadScene( sceneName, mode );
|
|
String_t* L_9 = ___sceneName0;
|
|
int32_t L_10 = ___mode2;
|
|
il2cpp_codegen_runtime_class_init_inline(SceneManager_tA0EF56A88ACA4A15731AF7FDC10A869FA4C698FA_il2cpp_TypeInfo_var);
|
|
SceneManager_LoadScene_m2841705C02C450E42A44B5EEE2A6A2C4261FA3AF(L_9, L_10, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.Commands.SceneCommands::UnloadScene(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SceneCommands_UnloadScene_m9436ABF65783D1BF8594C211C75FDBD0865CF111 (String_t* ___sceneName0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SceneManager_tA0EF56A88ACA4A15731AF7FDC10A869FA4C698FA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// SceneManager.UnloadSceneAsync( sceneName );
|
|
String_t* L_0 = ___sceneName0;
|
|
il2cpp_codegen_runtime_class_init_inline(SceneManager_tA0EF56A88ACA4A15731AF7FDC10A869FA4C698FA_il2cpp_TypeInfo_var);
|
|
AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C* L_1;
|
|
L_1 = SceneManager_UnloadSceneAsync_mF6F4161EF48C6622AA1B5BC66B4A2CA736C4D2B2(L_0, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.Commands.SceneCommands::RestartScene()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SceneCommands_RestartScene_m8B8CE9CE5F643ED7D517B7AD996328429C0ADBCF (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SceneManager_tA0EF56A88ACA4A15731AF7FDC10A869FA4C698FA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Scene_tA1DC762B79745EB5140F054C884855B922318356 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
// SceneManager.LoadScene( SceneManager.GetActiveScene().name, LoadSceneMode.Single );
|
|
il2cpp_codegen_runtime_class_init_inline(SceneManager_tA0EF56A88ACA4A15731AF7FDC10A869FA4C698FA_il2cpp_TypeInfo_var);
|
|
Scene_tA1DC762B79745EB5140F054C884855B922318356 L_0;
|
|
L_0 = SceneManager_GetActiveScene_m0B320EC4302F51A71495D1CCD1A0FF9C2ED1FDC8(NULL);
|
|
V_0 = L_0;
|
|
String_t* L_1;
|
|
L_1 = Scene_get_name_m3C818DFA663E159274DAD823B780C7616C5E2A8C((&V_0), NULL);
|
|
SceneManager_LoadScene_m2841705C02C450E42A44B5EEE2A6A2C4261FA3AF(L_1, 0, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.Commands.SceneCommands::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SceneCommands__ctor_m57CAC8925D540A6EA5DEE203881210F5C935906B (SceneCommands_tD919696B0B3F4F289ECA77E9E677A51579914472* __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
|
|
// System.Void IngameDebugConsole.Commands.TimeCommands::SetTimeScale(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeCommands_SetTimeScale_m24F47A0EF5EF561DDBE978F16B3E787FF5FCBE1A (float ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// Time.timeScale = Mathf.Max( value, 0f );
|
|
float L_0 = ___value0;
|
|
float L_1;
|
|
L_1 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(L_0, (0.0f), NULL);
|
|
Time_set_timeScale_mEF84EE4B2376A458387648079B426B267862D331(L_1, NULL);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
// System.Single IngameDebugConsole.Commands.TimeCommands::GetTimeScale()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float TimeCommands_GetTimeScale_mB93AE87BA0BCB1562443FCD021301FE0FCFC971B (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// return Time.timeScale;
|
|
float L_0;
|
|
L_0 = Time_get_timeScale_m1F45A413D4EEA08B1E0988022512C137F6C1E616(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void IngameDebugConsole.Commands.TimeCommands::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeCommands__ctor_m14FCEFDFEC4473F6F5DD7CBEE28B382E495F1534 (TimeCommands_t6DE00ACD4923F4291E15DF7C6CE0C4F9FE100901* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* AssemblyName_get_Name_m7899B9B3F289EEBAF62AEAB51D1CA91DA92C4E6A_inline (AssemblyName_t555F1570F523D87D970C6E7F27B1B44C83EADDD2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___name_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ConsoleMethodAttribute_get_Command_m5891B27830AD8D24C0BEC16F9B30F440EBB49E82_inline (ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public string Command { get { return m_command; } }
|
|
String_t* L_0 = __this->___m_command_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ConsoleMethodAttribute_get_Description_mFC1AAFE7BDA0B06A1C7AB0C9B02FD228177F7F5E_inline (ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public string Description { get { return m_description; } }
|
|
String_t* L_0 = __this->___m_description_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ConsoleMethodAttribute_get_ParameterNames_m254994229F47A4A9C4E8D8AE92AB305A8B7FCCEB_inline (ConsoleMethodAttribute_t50B586D06578DA237E0E0FDC757BAC4A01EBC734* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public string[] ParameterNames { get { return m_parameterNames; } }
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___m_parameterNames_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
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_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* DebugLogManager_get_Instance_m1CD942C2BA8B924CC5882AD6C13DD970672E1E56_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// public static DebugLogManager Instance { get; private set; }
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_0 = ((DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_il2cpp_TypeInfo_var))->___U3CInstanceU3Ek__BackingField_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Delegate_get_Target_m6E203F111C1548193A5AB7E616BD5834CD269753_inline (Delegate_t* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___m_target_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ParseFunction_Invoke_m6559BD38F8E131515CE959A7FC6D7EDE407794C1_inline (ParseFunction_tF7472462637273E57EDDE1A2DEB939EA543C6A4C* __this, String_t* ___input0, RuntimeObject** ___output1, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (RuntimeObject*, String_t*, RuntimeObject**, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___input0, ___output1, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline (int32_t ___a0, int32_t ___b1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
int32_t L_0 = ___a0;
|
|
int32_t L_1 = ___b1;
|
|
if ((((int32_t)L_0) < ((int32_t)L_1)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___b1;
|
|
G_B3_0 = L_2;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
int32_t L_3 = ___a0;
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ((Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields*)il2cpp_codegen_static_fields_for(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var))->___zeroVector_5;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ((Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields*)il2cpp_codegen_static_fields_for(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var))->___zeroVector_2;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 Vector4_get_zero_m3D61F5FA9483CD9C08977D9D8852FB448B4CE6D1_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_0 = ((Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_StaticFields*)il2cpp_codegen_static_fields_for(Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_il2cpp_TypeInfo_var))->___zeroVector_5;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3_set_Item_m79136861DEC5862CE7EC20AB3B0EF10A3957CEC3_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, int32_t ___index0, float ___value1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
switch (L_2)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
float L_3 = ___value1;
|
|
__this->___x_2 = L_3;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
float L_4 = ___value1;
|
|
__this->___y_3 = L_4;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
float L_5 = ___value1;
|
|
__this->___z_4 = L_5;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* L_6 = (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var)));
|
|
IndexOutOfRangeException__ctor_mFD06819F05B815BE2D6E826D4E04F4C449D0A425(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral27C7727EAAAD675C621F6257F2BD5190CE343979)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Vector3_set_Item_m79136861DEC5862CE7EC20AB3B0EF10A3957CEC3_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2_set_Item_mEF309880B9B3B370B542AABEB32256EEC589DD03_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, int32_t ___index0, float ___value1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
float L_4 = ___value1;
|
|
__this->___x_0 = L_4;
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
float L_5 = ___value1;
|
|
__this->___y_1 = L_5;
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* L_6 = (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var)));
|
|
IndexOutOfRangeException__ctor_mFD06819F05B815BE2D6E826D4E04F4C449D0A425(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4379B0249B80A34ABC2748B5F0D030FD7D4E007C)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Vector2_set_Item_mEF309880B9B3B370B542AABEB32256EEC589DD03_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector4_set_Item_mF24782F861A16BB0436C2262FA916B4EE69998A6_inline (Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3* __this, int32_t ___index0, float ___value1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
switch (L_2)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
float L_3 = ___value1;
|
|
__this->___x_1 = L_3;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
float L_4 = ___value1;
|
|
__this->___y_2 = L_4;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
float L_5 = ___value1;
|
|
__this->___z_3 = L_5;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
float L_6 = ___value1;
|
|
__this->___w_4 = L_6;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* L_7 = (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var)));
|
|
IndexOutOfRangeException__ctor_mFD06819F05B815BE2D6E826D4E04F4C449D0A425(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB23C3717573626FB4C3C7DF5C19EDE7689837214)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Vector4_set_Item_mF24782F861A16BB0436C2262FA916B4EE69998A6_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 Quaternion_get_identity_m7E701AE095ED10FD5EA0B50ABCFDE2EEFF2173A5_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_0 = ((Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_StaticFields*)il2cpp_codegen_static_fields_for(Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974_il2cpp_TypeInfo_var))->___identityQuaternion_4;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Quaternion_set_Item_mFEF628DD58AC71A1E712A6F3F9642D5DA00675CE_inline (Quaternion_tDA59F214EF07D7700B26E40E562F267AF7306974* __this, int32_t ___index0, float ___value1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
switch (L_2)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
float L_3 = ___value1;
|
|
__this->___x_0 = L_3;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
float L_4 = ___value1;
|
|
__this->___y_1 = L_4;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
float L_5 = ___value1;
|
|
__this->___z_2 = L_5;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
float L_6 = ___value1;
|
|
__this->___w_3 = L_6;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* L_7 = (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var)));
|
|
IndexOutOfRangeException__ctor_mFD06819F05B815BE2D6E826D4E04F4C449D0A425(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral973C45718ACB19FB28D206360A3094F43D27EDED)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Quaternion_set_Item_mFEF628DD58AC71A1E712A6F3F9642D5DA00675CE_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_get_black_mB50217951591A045844C61E7FF31EEE3FEF16737_inline (const RuntimeMethod* method)
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline((&L_0), (0.0f), (0.0f), (0.0f), (1.0f), /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color_set_Item_mB7A7D9F6632CDA2F9CE2E817776010653C2A20B2_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* __this, int32_t ___index0, float ___value1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
switch (L_2)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
float L_3 = ___value1;
|
|
__this->___r_0 = L_3;
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
float L_4 = ___value1;
|
|
__this->___g_1 = L_4;
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
float L_5 = ___value1;
|
|
__this->___b_2 = L_5;
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
float L_6 = ___value1;
|
|
__this->___a_3 = L_6;
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
String_t* L_7;
|
|
L_7 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&___index0), NULL);
|
|
String_t* L_8;
|
|
L_8 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD44B1DB50942F5EE9433DEDDCC33BEC04733834)), L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9FE2D0640908C4E0A09AF5BF88E4681FB8257B4C)), NULL);
|
|
IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* L_9 = (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var)));
|
|
IndexOutOfRangeException__ctor_mFD06819F05B815BE2D6E826D4E04F4C449D0A425(L_9, L_8, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Color_set_Item_mB7A7D9F6632CDA2F9CE2E817776010653C2A20B2_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color32__ctor_mC9C6B443F0C7CA3F8B174158B2AF6F05E18EAC4E_inline (Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B* __this, uint8_t ___r0, uint8_t ___g1, uint8_t ___b2, uint8_t ___a3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___rgba_0 = 0;
|
|
uint8_t L_0 = ___r0;
|
|
__this->___r_1 = L_0;
|
|
uint8_t L_1 = ___g1;
|
|
__this->___g_2 = L_1;
|
|
uint8_t L_2 = ___b2;
|
|
__this->___b_3 = L_2;
|
|
uint8_t L_3 = ___a3;
|
|
__this->___a_4 = L_3;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline (float ___f0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
float L_0 = ___f0;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
double L_1;
|
|
L_1 = bankers_round(((double)L_0));
|
|
V_0 = il2cpp_codegen_cast_double_to_int<int32_t>(L_1);
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 Vector3Int_get_zero_m0D0DA069A4982B8DB9F5EE1A26E4CAEEA454FEE2_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 L_0 = ((Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_StaticFields*)il2cpp_codegen_static_fields_for(Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_il2cpp_TypeInfo_var))->___s_Zero_3;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3Int_set_Item_m54C03389E56D4403F81C5560671011599599B67D_inline (Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376* __this, int32_t ___index0, int32_t ___value1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
switch (L_2)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_3 = ___value1;
|
|
Vector3Int_set_x_m8745C5976D035EBBAC6F6191B5838D58631D8685_inline(__this, L_3, NULL);
|
|
goto IL_0056;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_4 = ___value1;
|
|
Vector3Int_set_y_mA856F32D1BF187BD4091DDF3C6872FD01F7D3377_inline(__this, L_4, NULL);
|
|
goto IL_0056;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
int32_t L_5 = ___value1;
|
|
Vector3Int_set_z_m5782180F67C4257C505F124971985D99C3422F74_inline(__this, L_5, NULL);
|
|
goto IL_0056;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), (uint32_t)1);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = L_6;
|
|
int32_t L_8 = ___index0;
|
|
int32_t L_9 = L_8;
|
|
RuntimeObject* L_10 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_9);
|
|
ArrayElementTypeCheck (L_7, L_10);
|
|
(L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_10);
|
|
String_t* L_11;
|
|
L_11 = UnityString_Format_m98A0629641086A1BE20BBF7F4EADDE3FE3877D85(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral122D902F8C2D9ED0271BCE63CA76BE9AEE68CC14)), L_7, NULL);
|
|
IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* L_12 = (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var)));
|
|
IndexOutOfRangeException__ctor_mFD06819F05B815BE2D6E826D4E04F4C449D0A425(L_12, L_11, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Vector3Int_set_Item_m54C03389E56D4403F81C5560671011599599B67D_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A Vector2Int_get_zero_mF92C338E9CB9434105090E675E04D20A29649553_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A L_0 = ((Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_StaticFields*)il2cpp_codegen_static_fields_for(Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_il2cpp_TypeInfo_var))->___s_Zero_2;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2Int_set_Item_mDC8B5A6DBB600C2AEB15712F0D02A434E7831B5B_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, int32_t ___index0, int32_t ___value1, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = ___index0;
|
|
V_1 = L_0;
|
|
int32_t L_1 = V_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_3) == ((int32_t)1)))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
int32_t L_4 = ___value1;
|
|
Vector2Int_set_x_m291ECF246536852F0B8EE049C4A3768E4999CDC8_inline(__this, L_4, NULL);
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_5 = ___value1;
|
|
Vector2Int_set_y_mF81881204EEE272BA409728C7EBFDE3A979DDF6A_inline(__this, L_5, NULL);
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
int32_t L_6 = ___index0;
|
|
int32_t L_7 = L_6;
|
|
RuntimeObject* L_8 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_7);
|
|
String_t* L_9;
|
|
L_9 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEFFB7168E3613E48A681A1CF8ABA8CE48952519A)), L_8, NULL);
|
|
IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82* L_10 = (IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IndexOutOfRangeException_t7ECB35264FB6CA8FAA516BD958F4B2ADC78E8A82_il2cpp_TypeInfo_var)));
|
|
IndexOutOfRangeException__ctor_mFD06819F05B815BE2D6E826D4E04F4C449D0A425(L_10, L_9, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Vector2Int_set_Item_mDC8B5A6DBB600C2AEB15712F0D02A434E7831B5B_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DebugLogItemCopyWebGL_Initialize_m669E97D390AA126308D66275688AACC868D3168F_inline (DebugLogItemCopyWebGL_t8AA5AA13095948F1BB56AE3EF7E817D20ED36BF3* __this, DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* ___logItem0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// this.logItem = logItem;
|
|
DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* L_0 = ___logItem0;
|
|
__this->___logItem_4 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___logItem_4), (void*)L_0);
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DebugLogRecycledListView_get_SelectedItemHeight_m55C399776D3C681426A1E7BB96D17799AAF17358_inline (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public float SelectedItemHeight { get { return heightOfSelectedLogEntry; } }
|
|
float L_0 = __this->___heightOfSelectedLogEntry_19;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___x0, float ___y1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___x0;
|
|
__this->___x_0 = L_0;
|
|
float L_1 = ___y1;
|
|
__this->___y_1 = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Subtraction_m44475FCDAD2DA2F98D78A6625EC2DCDFE8803837_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___b1, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___a0;
|
|
float L_1 = L_0.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___b1;
|
|
float L_3 = L_2.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___a0;
|
|
float L_5 = L_4.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___b1;
|
|
float L_7 = L_6.___y_1;
|
|
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)), /*hidden argument*/NULL);
|
|
V_0 = L_8;
|
|
goto IL_0023;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float DebugLogRecycledListView_get_ItemHeight_m4FBFACEF0C31D99C4745209391D410234EAE6A80_inline (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public float ItemHeight { get { return logItemHeight; } }
|
|
float L_0 = __this->___logItemHeight_11;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline (float ___a0, float ___b1, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
float L_0 = ___a0;
|
|
float L_1 = ___b1;
|
|
if ((((float)L_0) > ((float)L_1)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
float L_2 = ___b1;
|
|
G_B3_0 = L_2;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
float L_3 = ___a0;
|
|
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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool PointerEventData_get_dragging_mE0AD837F228E3830D4A74657AD3D47F53F6C87E9_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public bool dragging { get; set; }
|
|
bool L_0 = __this->___U3CdraggingU3Ek__BackingField_22;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DebugLogManager_set_Instance_m8AAA1D33AF4369E3F6479AF6B0B6DF97015AE73A_inline (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* ___value0, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
// public static DebugLogManager Instance { get; private set; }
|
|
DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* L_0 = ___value0;
|
|
((DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_il2cpp_TypeInfo_var))->___U3CInstanceU3Ek__BackingField_4 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_StaticFields*)il2cpp_codegen_static_fields_for(DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8_il2cpp_TypeInfo_var))->___U3CInstanceU3Ek__BackingField_4), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* DebugLogItem_get_Transform_mBAA5D6E01F83683FF29CE440C3D2F4D5616E6466_inline (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public RectTransform Transform { get { return transformComponent; } }
|
|
RectTransform_t6C5DA5E41A89E0F488B001E45E58963480E543A5* L_0 = __this->___transformComponent_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Addition_m8136742CE6EE33BA4EB81C5F584678455917D2AE_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___b1, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___a0;
|
|
float L_1 = L_0.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___b1;
|
|
float L_3 = L_2.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___a0;
|
|
float L_5 = L_4.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___b1;
|
|
float L_7 = L_6.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8;
|
|
memset((&L_8), 0, sizeof(L_8));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_8), ((float)il2cpp_codegen_add(L_1, L_3)), ((float)il2cpp_codegen_add(L_5, L_7)), /*hidden argument*/NULL);
|
|
V_0 = L_8;
|
|
goto IL_0023;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR OnChangeEvent_tE4829F88300B0E0E0D1B78B453AF25FC1AA55E2F* InputField_get_onValueChanged_mA9ABE178FE3EB05AEF3DC20C11349427C59916AE_inline (InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public OnChangeEvent onValueChanged { get { return m_OnValueChanged; } set { SetPropertyUtility.SetClass(ref m_OnValueChanged, value); } }
|
|
OnChangeEvent_tE4829F88300B0E0E0D1B78B453AF25FC1AA55E2F* L_0 = __this->___m_OnValueChanged_35;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B* InputField_get_onValidateInput_m370D93274B6040422092981DD3A34E4B88E96EBC_inline (InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public OnValidateInput onValidateInput { get { return m_OnValidateInput; } set { SetPropertyUtility.SetClass(ref m_OnValidateInput, value); } }
|
|
OnValidateInput_t48916A4E9C9FD6204401FF0808C2B7A93D73418B* L_0 = __this->___m_OnValidateInput_36;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EndEditEvent_t946A962BA13CF60BB0BE7AD091DA041FD788E655* InputField_get_onEndEdit_m92C86FF7CA6108C4B14392CED20C9ED9D39AD9A3_inline (InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public EndEditEvent onEndEdit { get { return m_OnDidEndEdit; } set { SetPropertyUtility.SetClass(ref m_OnDidEndEdit, value); } }
|
|
EndEditEvent_t946A962BA13CF60BB0BE7AD091DA041FD788E655* L_0 = __this->___m_OnDidEndEdit_34;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonClickedEvent_t8EA72E90B3BD1392FB3B3EF167D5121C23569E4C* Button_get_onClick_m701712A7F7F000CC80D517C4510697E15722C35C_inline (Button_t6786514A57F7AFDEE5431112FEA0CAB24F5AE098* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// get { return m_OnClick; }
|
|
ButtonClickedEvent_t8EA72E90B3BD1392FB3B3EF167D5121C23569E4C* L_0 = __this->___m_OnClick_20;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool InputField_get_isFocused_m19BD51E842077CA087824025F294C4078B2DAC50_inline (InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// get { return m_AllowInput; }
|
|
bool L_0 = __this->___m_AllowInput_53;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputField_get_text_m6E0796350FF559505E4DF17311803962699D6704_inline (InputField_tABEA115F23FBD374EBE80D4FAC1D15BD6E37A140* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// return m_Text;
|
|
String_t* L_0 = __this->___m_Text_40;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline (float ___a0, float ___b1, 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 = ___b1;
|
|
float L_1 = ___a0;
|
|
float L_2;
|
|
L_2 = fabsf(((float)il2cpp_codegen_subtract(L_0, L_1)));
|
|
float L_3 = ___a0;
|
|
float L_4;
|
|
L_4 = fabsf(L_3);
|
|
float L_5 = ___b1;
|
|
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_0;
|
|
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;
|
|
}
|
|
}
|
|
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_1)((Il2CppObject*)__this->___method_code_6, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DebugLogManager_SetSnapToBottom_m869F0D298244C064CF9C7611B3D11F198433D6BC_inline (DebugLogManager_t4D04EF5680196548275960FC70628E2E857857A8* __this, bool ___snapToBottom0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// this.snapToBottom = snapToBottom;
|
|
bool L_0 = ___snapToBottom0;
|
|
__this->___snapToBottom_78 = L_0;
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DebugLogRecycledListView_SetCollapseMode_m8B9F13CBAB315B685DBFBFFBD9FF546DC3AEAFC2_inline (DebugLogRecycledListView_t0A7F681EE9C1FB66CB45C36B2F919B018A18FEE2* __this, bool ___collapse0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// isCollapseOn = collapse;
|
|
bool L_0 = ___collapse0;
|
|
__this->___isCollapseOn_22 = L_0;
|
|
// }
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 PointerEventData_get_position_m5BE71C28EB72EFB8435749E4E6E839213AEF458C_inline (PointerEventData_t9670F3C7D823CCB738A1604C72A1EB90292396FB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public Vector2 position { get; set; }
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CpositionU3Ek__BackingField_13;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline (float ___value0, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
float V_1 = 0.0f;
|
|
bool V_2 = false;
|
|
{
|
|
float L_0 = ___value0;
|
|
V_0 = (bool)((((float)L_0) < ((float)(0.0f)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (0.0f);
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
float L_2 = ___value0;
|
|
V_2 = (bool)((((float)L_2) > ((float)(1.0f)))? 1 : 0);
|
|
bool L_3 = V_2;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (1.0f);
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
float L_4 = ___value0;
|
|
V_1 = L_4;
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
float L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* DebugLogItem_get_CanvasGroup_m54F87E5DE59659B77527BE8B0163A02963A1C0DB_inline (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public CanvasGroup CanvasGroup { get { return canvasGroupComponent; } }
|
|
CanvasGroup_t048C1461B14628CFAEBE6E7353093ADB04EBC094* L_0 = __this->___canvasGroupComponent_6;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Multiply_m2D984B613020089BF5165BA4CA10988E2DC771FE_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, float ___d1, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___a0;
|
|
float L_1 = L_0.___x_0;
|
|
float L_2 = ___d1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___a0;
|
|
float L_4 = L_3.___y_1;
|
|
float L_5 = ___d1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_6), ((float)il2cpp_codegen_multiply(L_1, L_2)), ((float)il2cpp_codegen_multiply(L_4, L_5)), /*hidden argument*/NULL);
|
|
V_0 = L_6;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_get_normalized_mF6722883AEFB5027690A778DF8ACC20F0FA65297_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
float L_0 = __this->___x_0;
|
|
float L_1 = __this->___y_1;
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&V_0), L_0, L_1, NULL);
|
|
Vector2_Normalize_m56DABCAB5967DF37A6B96710477D3660D800C652_inline((&V_0), NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = V_0;
|
|
V_1 = L_2;
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline (float ___a0, float ___b1, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
float L_0 = ___a0;
|
|
float L_1 = ___b1;
|
|
if ((((float)L_0) < ((float)L_1)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
float L_2 = ___b1;
|
|
G_B3_0 = L_2;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
float L_3 = ___a0;
|
|
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;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp_mEB9AEA827D27D20FCC787F7375156AF46BB12BBF_inline (float ___value0, float ___min1, float ___max2, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
float V_2 = 0.0f;
|
|
{
|
|
float L_0 = ___value0;
|
|
float L_1 = ___min1;
|
|
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 = ___min1;
|
|
___value0 = L_3;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
float L_4 = ___value0;
|
|
float L_5 = ___max2;
|
|
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 = ___max2;
|
|
___value0 = L_7;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
float L_8 = ___value0;
|
|
V_2 = L_8;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
float L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2_Set_m42A76E817B65A9626E1F5E900EB67F037B3E1ED0_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___newX0, float ___newY1, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___newX0;
|
|
__this->___x_0 = L_0;
|
|
float L_1 = ___newY1;
|
|
__this->___y_1 = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_Lerp_m1A36103F7967F653A929556E26E6D052C298C00C_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___b1, float ___t2, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
float L_0 = ___t2;
|
|
float L_1;
|
|
L_1 = Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline(L_0, NULL);
|
|
___t2 = L_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___a0;
|
|
float L_3 = L_2.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___b1;
|
|
float L_5 = L_4.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___a0;
|
|
float L_7 = L_6.___x_0;
|
|
float L_8 = ___t2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = ___a0;
|
|
float L_10 = L_9.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11 = ___b1;
|
|
float L_12 = L_11.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_13 = ___a0;
|
|
float L_14 = L_13.___y_1;
|
|
float L_15 = ___t2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_16;
|
|
memset((&L_16), 0, sizeof(L_16));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_16), ((float)il2cpp_codegen_add(L_3, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_5, L_7)), L_8)))), ((float)il2cpp_codegen_add(L_10, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_12, L_14)), L_15)))), /*hidden argument*/NULL);
|
|
V_0 = L_16;
|
|
goto IL_003d;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_17 = V_0;
|
|
return L_17;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ScrollRectEvent_t812C011901E6101F2A0FFC34C66AC5F65C0DEC26* ScrollRect_get_onValueChanged_mA6AF3832A97E82D31BB8C20BCD6E87A300E56C05_inline (ScrollRect_t17D2F2939CA8953110180DF53164CFC3DC88D70E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public ScrollRectEvent onValueChanged { get { return m_OnValueChanged; } set { m_OnValueChanged = value; } }
|
|
ScrollRectEvent_t812C011901E6101F2A0FFC34C66AC5F65C0DEC26* L_0 = __this->___m_OnValueChanged_19;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DebugLogItem_get_Index_mAE7C163DD212089A2276418AC74D1F118C4AE0E1_inline (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public int Index { get { return entryIndex; } }
|
|
int32_t L_0 = __this->___entryIndex_14;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_InverseLerp_mBD7EC6A7173CE082226077E1557D5BC2D2AE0D9D_inline (float ___a0, float ___b1, float ___value2, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
float V_1 = 0.0f;
|
|
{
|
|
float L_0 = ___a0;
|
|
float L_1 = ___b1;
|
|
V_0 = (bool)((((int32_t)((((float)L_0) == ((float)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
float L_3 = ___value2;
|
|
float L_4 = ___a0;
|
|
float L_5 = ___b1;
|
|
float L_6 = ___a0;
|
|
float L_7;
|
|
L_7 = Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline(((float)(((float)il2cpp_codegen_subtract(L_3, L_4))/((float)il2cpp_codegen_subtract(L_5, L_6)))), NULL);
|
|
V_1 = L_7;
|
|
goto IL_0023;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
V_1 = (0.0f);
|
|
goto IL_0023;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
float L_8 = V_1;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* DebugLogItem_get_Image_m19E45CDC961A393E891617E0AE8196EEC60827E2_inline (DebugLogItem_t88B4590FC214B8270C22089685CFF96ED51D5230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public Image Image { get { return imageComponent; } }
|
|
Image_tBC1D03F63BF71132E9A5E472B8742F172A011E7E* L_0 = __this->___imageComponent_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = (int32_t)__this->____size_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = (int32_t)__this->____version_3;
|
|
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
if (!true)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = (int32_t)__this->____size_2;
|
|
V_0 = L_1;
|
|
__this->____size_2 = 0;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
|
|
int32_t L_4 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
__this->____size_2 = 0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = (int32_t)__this->____version_3;
|
|
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = (int32_t)__this->____size_2;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
|
|
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_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
RuntimeObject* L_8 = ___item0;
|
|
(L_6)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeObject* L_9 = ___item0;
|
|
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m0248A96C5334E9A93E6994B7780478BCD994EA3D_gshared_inline (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73* __this, int32_t ___item0, const RuntimeMethod* method)
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = (int32_t)__this->____version_3;
|
|
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)__this->____items_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = (int32_t)__this->____size_2;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = V_0;
|
|
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_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
int32_t L_8 = ___item0;
|
|
(L_6)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_7), (int32_t)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_9 = ___item0;
|
|
(( void (*) (List_1_t05915E9237850A58106982B7FE4BC5DA4E872E73*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m72F8CCD2B9960B32D61CFA8DDFB3A8B66E75E78D_gshared_inline (Nullable_1_tE058FF1EF75E02B10E5B388F885D29B83C8F2B41* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = (bool)__this->___hasValue_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DynamicCircularBuffer_1_get_Count_mBC6B55C5E12C64A1317928696874620368ECDDCF_gshared_inline (DynamicCircularBuffer_1_tBF936640484CF43115B5EB2600C146DACC75D965* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public int Count { get; private set; }
|
|
int32_t L_0 = (int32_t)__this->___U3CCountU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t DebugLogIndexList_1_get_Count_m46CDE42795EF3FAC3875E976F29B28B2C83BB383_gshared_inline (DebugLogIndexList_1_tEEDE92BFACFE51B19B2D06107792886E42AE2B7F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public int Count { get { return size; } }
|
|
int32_t L_0 = (int32_t)__this->___size_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t CircularBuffer_1_get_Count_mD43A95B88B324220E62C43C054A08F5D4D0EE748_gshared_inline (CircularBuffer_1_tCE48A157807D790AE588042B34881E85CC57CEB6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
// public int Count { get; private set; }
|
|
int32_t L_0 = (int32_t)__this->___U3CCountU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m285FF9023DA9D5F2308CB2B578F0DFF7025F0363_gshared_inline (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* __this, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 ___item0, const RuntimeMethod* method)
|
|
{
|
|
DebugLogEntryTimestampU5BU5D_t8E5BB7892CC61C2FD0065B78005D54E21811CDA8* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = (int32_t)__this->____version_3;
|
|
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
DebugLogEntryTimestampU5BU5D_t8E5BB7892CC61C2FD0065B78005D54E21811CDA8* L_1 = (DebugLogEntryTimestampU5BU5D_t8E5BB7892CC61C2FD0065B78005D54E21811CDA8*)__this->____items_1;
|
|
V_0 = L_1;
|
|
int32_t L_2 = (int32_t)__this->____size_2;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
DebugLogEntryTimestampU5BU5D_t8E5BB7892CC61C2FD0065B78005D54E21811CDA8* L_4 = V_0;
|
|
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_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
DebugLogEntryTimestampU5BU5D_t8E5BB7892CC61C2FD0065B78005D54E21811CDA8* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_8 = ___item0;
|
|
(L_6)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_7), (DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97 L_9 = ___item0;
|
|
(( void (*) (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6*, DebugLogEntryTimestamp_t30582C9C3760265FDEF8895133213267986BFA97, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_mFB9655FC4FC26BA5CEC0B55A5D2072D534BF550A_gshared_inline (List_1_tB8FCB3FF6EF5999674312ED4AB0DBCCC0252FBA6* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = (int32_t)__this->____version_3;
|
|
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
if (!false)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = (int32_t)__this->____size_2;
|
|
V_0 = L_1;
|
|
__this->____size_2 = 0;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
DebugLogEntryTimestampU5BU5D_t8E5BB7892CC61C2FD0065B78005D54E21811CDA8* L_3 = (DebugLogEntryTimestampU5BU5D_t8E5BB7892CC61C2FD0065B78005D54E21811CDA8*)__this->____items_1;
|
|
int32_t L_4 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
__this->____size_2 = 0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
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 = (int32_t)__this->____version_3;
|
|
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
if (!false)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = (int32_t)__this->____size_2;
|
|
V_0 = L_1;
|
|
__this->____size_2 = 0;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)__this->____items_1;
|
|
int32_t L_4 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
__this->____size_2 = 0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
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 = (int32_t)__this->____size_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* __this, float ___r0, float ___g1, float ___b2, float ___a3, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___r0;
|
|
__this->___r_0 = L_0;
|
|
float L_1 = ___g1;
|
|
__this->___g_1 = L_1;
|
|
float L_2 = ___b2;
|
|
__this->___b_2 = L_2;
|
|
float L_3 = ___a3;
|
|
__this->___a_3 = L_3;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3Int_set_x_m8745C5976D035EBBAC6F6191B5838D58631D8685_inline (Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376* __this, int32_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___value0;
|
|
__this->___m_X_0 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3Int_set_y_mA856F32D1BF187BD4091DDF3C6872FD01F7D3377_inline (Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376* __this, int32_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___value0;
|
|
__this->___m_Y_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3Int_set_z_m5782180F67C4257C505F124971985D99C3422F74_inline (Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376* __this, int32_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___value0;
|
|
__this->___m_Z_2 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2Int_set_x_m291ECF246536852F0B8EE049C4A3768E4999CDC8_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, int32_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___value0;
|
|
__this->___m_X_0 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2Int_set_y_mF81881204EEE272BA409728C7EBFDE3A979DDF6A_inline (Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* __this, int32_t ___value0, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___value0;
|
|
__this->___m_Y_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2_Normalize_m56DABCAB5967DF37A6B96710477D3660D800C652_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
bool V_1 = false;
|
|
{
|
|
float L_0;
|
|
L_0 = Vector2_get_magnitude_m5C59B4056420AEFDB291AD0914A3F675330A75CE_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
float L_1 = V_0;
|
|
V_1 = (bool)((((float)L_1) > ((float)(9.99999975E-06f)))? 1 : 0);
|
|
bool L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = (*(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)__this);
|
|
float L_4 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = Vector2_op_Division_m57A2DCD71E0CE7420851D705D1951F9238902AAB_inline(L_3, L_4, NULL);
|
|
*(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)__this = L_5;
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = Vector2_get_zero_m32506C40EC2EE7D5D4410BF40D3EE683A3D5F32C_inline(NULL);
|
|
*(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)__this = L_6;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Vector2_get_magnitude_m5C59B4056420AEFDB291AD0914A3F675330A75CE_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___x_0;
|
|
float L_1 = __this->___x_0;
|
|
float L_2 = __this->___y_1;
|
|
float L_3 = __this->___y_1;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
double L_4;
|
|
L_4 = sqrt(((double)((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_0, L_1)), ((float)il2cpp_codegen_multiply(L_2, L_3))))));
|
|
V_0 = ((float)L_4);
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
float L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Division_m57A2DCD71E0CE7420851D705D1951F9238902AAB_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___a0, float ___d1, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___a0;
|
|
float L_1 = L_0.___x_0;
|
|
float L_2 = ___d1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___a0;
|
|
float L_4 = L_3.___y_1;
|
|
float L_5 = ___d1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_6), ((float)(L_1/L_2)), ((float)(L_4/L_5)), /*hidden argument*/NULL);
|
|
V_0 = L_6;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|