mirror of
https://github.com/ZuneDev/Xune.git
synced 2026-07-27 13:13:10 -07:00
240 lines
9.6 KiB
C#
240 lines
9.6 KiB
C#
// Decompiled with JetBrains decompiler
|
|
// Type: Microsoft.Iris.Markup.UIX.Int32Schema
|
|
// Assembly: UIX, Version=4.8.0.0, Culture=neutral, PublicKeyToken=ddd0da4d3e678217
|
|
// MVID: A56C6C9D-B7F6-46A9-8BDE-B3D9B8D60B11
|
|
// Assembly location: C:\Program Files\Zune\UIX.dll
|
|
|
|
using Microsoft.Iris.CodeModel.Cpp;
|
|
using Microsoft.Iris.Library;
|
|
using System;
|
|
using System.Globalization;
|
|
|
|
namespace Microsoft.Iris.Markup.UIX
|
|
{
|
|
internal static class Int32Schema
|
|
{
|
|
public static RangeValidator ValidateNotNegative = new RangeValidator(RangeValidateNotNegative);
|
|
public static UIXTypeSchema Type;
|
|
|
|
private static object GetMinValue(object instanceObj) => Int32Boxes.MinValueBox;
|
|
|
|
private static object GetMaxValue(object instanceObj) => Int32Boxes.MaxValueBox;
|
|
|
|
private static object Construct() => Int32Boxes.ZeroBox;
|
|
|
|
private static void EncodeBinary(ManagedByteCodeWriter writer, object instanceObj)
|
|
{
|
|
int num = (int)instanceObj;
|
|
writer.WriteInt32(num);
|
|
}
|
|
|
|
private static object DecodeBinary(ManagedByteCodeReader reader) => reader.ReadInt32();
|
|
|
|
private static Result ConvertFromString(object valueObj, out object instanceObj)
|
|
{
|
|
string s = (string)valueObj;
|
|
instanceObj = null;
|
|
int result;
|
|
if (!int.TryParse(s, NumberStyles.Integer, NumberFormatInfo.InvariantInfo, out result))
|
|
return Result.Fail("Unable to convert \"{0}\" to type '{1}'", s, "Int32");
|
|
instanceObj = result;
|
|
return Result.Success;
|
|
}
|
|
|
|
private static Result ConvertFromBoolean(object valueObj, out object instanceObj)
|
|
{
|
|
bool flag = (bool)valueObj;
|
|
instanceObj = null;
|
|
int num = flag ? 1 : 0;
|
|
instanceObj = num;
|
|
return Result.Success;
|
|
}
|
|
|
|
private static Result ConvertFromByte(object valueObj, out object instanceObj)
|
|
{
|
|
byte num1 = (byte)valueObj;
|
|
instanceObj = null;
|
|
int num2 = num1;
|
|
instanceObj = num2;
|
|
return Result.Success;
|
|
}
|
|
|
|
private static Result ConvertFromSingle(object valueObj, out object instanceObj)
|
|
{
|
|
float num1 = (float)valueObj;
|
|
instanceObj = null;
|
|
int num2 = (int)num1;
|
|
instanceObj = num2;
|
|
return Result.Success;
|
|
}
|
|
|
|
private static Result ConvertFromInt64(object valueObj, out object instanceObj)
|
|
{
|
|
long num1 = (long)valueObj;
|
|
instanceObj = null;
|
|
int num2 = (int)num1;
|
|
instanceObj = num2;
|
|
return Result.Success;
|
|
}
|
|
|
|
private static Result ConvertFromDouble(object valueObj, out object instanceObj)
|
|
{
|
|
double num1 = (double)valueObj;
|
|
instanceObj = null;
|
|
int num2 = (int)num1;
|
|
instanceObj = num2;
|
|
return Result.Success;
|
|
}
|
|
|
|
private static object CallToStringString(object instanceObj, object[] parameters) => ((int)instanceObj).ToString((string)parameters[0]);
|
|
|
|
private static bool IsConversionSupported(TypeSchema fromType) => BooleanSchema.Type.IsAssignableFrom(fromType) || ByteSchema.Type.IsAssignableFrom(fromType) || (DoubleSchema.Type.IsAssignableFrom(fromType) || Int64Schema.Type.IsAssignableFrom(fromType)) || (SingleSchema.Type.IsAssignableFrom(fromType) || StringSchema.Type.IsAssignableFrom(fromType) || fromType.IsEnum);
|
|
|
|
private static Result TryConvertFrom(
|
|
object from,
|
|
TypeSchema fromType,
|
|
out object instance)
|
|
{
|
|
Result result = Result.Fail("Unsupported");
|
|
instance = null;
|
|
if (BooleanSchema.Type.IsAssignableFrom(fromType))
|
|
{
|
|
result = ConvertFromBoolean(from, out instance);
|
|
if (!result.Failed)
|
|
return result;
|
|
}
|
|
if (ByteSchema.Type.IsAssignableFrom(fromType))
|
|
{
|
|
result = ConvertFromByte(from, out instance);
|
|
if (!result.Failed)
|
|
return result;
|
|
}
|
|
if (DoubleSchema.Type.IsAssignableFrom(fromType))
|
|
{
|
|
result = ConvertFromDouble(from, out instance);
|
|
if (!result.Failed)
|
|
return result;
|
|
}
|
|
if (Int64Schema.Type.IsAssignableFrom(fromType))
|
|
{
|
|
result = ConvertFromInt64(from, out instance);
|
|
if (!result.Failed)
|
|
return result;
|
|
}
|
|
if (SingleSchema.Type.IsAssignableFrom(fromType))
|
|
{
|
|
result = ConvertFromSingle(from, out instance);
|
|
if (!result.Failed)
|
|
return result;
|
|
}
|
|
if (StringSchema.Type.IsAssignableFrom(fromType))
|
|
{
|
|
result = ConvertFromString(from, out instance);
|
|
if (!result.Failed)
|
|
return result;
|
|
}
|
|
if (!fromType.IsEnum)
|
|
return result;
|
|
instance = !(from is DllEnumProxy dllEnumProxy) ? (int)from : (object)dllEnumProxy.Value;
|
|
return Result.Success;
|
|
}
|
|
|
|
private static bool IsOperationSupported(OperationType op)
|
|
{
|
|
switch (op)
|
|
{
|
|
case OperationType.MathAdd:
|
|
case OperationType.MathSubtract:
|
|
case OperationType.MathMultiply:
|
|
case OperationType.MathDivide:
|
|
case OperationType.MathModulus:
|
|
case OperationType.RelationalEquals:
|
|
case OperationType.RelationalNotEquals:
|
|
case OperationType.RelationalLessThan:
|
|
case OperationType.RelationalGreaterThan:
|
|
case OperationType.RelationalLessThanEquals:
|
|
case OperationType.RelationalGreaterThanEquals:
|
|
case OperationType.MathNegate:
|
|
return true;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
private static object ExecuteOperation(object leftObj, object rightObj, OperationType op)
|
|
{
|
|
int num1 = (int)leftObj;
|
|
if (op == OperationType.MathNegate)
|
|
return -num1;
|
|
int num2 = (int)rightObj;
|
|
switch (op - 1)
|
|
{
|
|
case 0:
|
|
return num1 + num2;
|
|
case OperationType.MathAdd:
|
|
return num1 - num2;
|
|
case OperationType.MathSubtract:
|
|
return num1 * num2;
|
|
case OperationType.MathMultiply:
|
|
return num1 / num2;
|
|
case OperationType.MathDivide:
|
|
return num1 % num2;
|
|
case OperationType.LogicalOr:
|
|
return BooleanBoxes.Box(num1 == num2);
|
|
case OperationType.RelationalEquals:
|
|
return BooleanBoxes.Box(num1 != num2);
|
|
case OperationType.RelationalNotEquals:
|
|
return BooleanBoxes.Box(num1 < num2);
|
|
case OperationType.RelationalLessThan:
|
|
return BooleanBoxes.Box(num1 > num2);
|
|
case OperationType.RelationalGreaterThan:
|
|
return BooleanBoxes.Box(num1 <= num2);
|
|
case OperationType.RelationalLessThanEquals:
|
|
return BooleanBoxes.Box(num1 >= num2);
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
private static object CallTryParseStringInt32(object instanceObj, object[] parameters)
|
|
{
|
|
string parameter1 = (string)parameters[0];
|
|
int parameter2 = (int)parameters[1];
|
|
object instanceObj1;
|
|
return ConvertFromString(parameter1, out instanceObj1).Failed ? parameter2 : instanceObj1;
|
|
}
|
|
|
|
private static Result RangeValidateNotNegative(object value)
|
|
{
|
|
int num = (int)value;
|
|
return num < 0 ? Result.Fail("Expecting a non-negative value, but got {0}", num.ToString()) : Result.Success;
|
|
}
|
|
|
|
public static void Pass1Initialize() => Type = new UIXTypeSchema(115, "Int32", "int", 153, typeof(int), UIXTypeFlags.Immutable);
|
|
|
|
public static void Pass2Initialize()
|
|
{
|
|
UIXPropertySchema uixPropertySchema1 = new UIXPropertySchema(115, "MinValue", 115, -1, ExpressionRestriction.None, false, null, false, new GetValueHandler(GetMinValue), null, true);
|
|
UIXPropertySchema uixPropertySchema2 = new UIXPropertySchema(115, "MaxValue", 115, -1, ExpressionRestriction.None, false, null, false, new GetValueHandler(GetMaxValue), null, true);
|
|
UIXMethodSchema uixMethodSchema1 = new UIXMethodSchema(115, "ToString", new short[1]
|
|
{
|
|
208
|
|
}, 208, new InvokeHandler(CallToStringString), false);
|
|
UIXMethodSchema uixMethodSchema2 = new UIXMethodSchema(115, "TryParse", new short[2]
|
|
{
|
|
208,
|
|
115
|
|
}, 115, new InvokeHandler(CallTryParseStringInt32), true);
|
|
Type.Initialize(new DefaultConstructHandler(Construct), null, new PropertySchema[2]
|
|
{
|
|
uixPropertySchema2,
|
|
uixPropertySchema1
|
|
}, new MethodSchema[2]
|
|
{
|
|
uixMethodSchema1,
|
|
uixMethodSchema2
|
|
}, null, null, new TypeConverterHandler(TryConvertFrom), new SupportsTypeConversionHandler(IsConversionSupported), new EncodeBinaryHandler(EncodeBinary), new DecodeBinaryHandler(DecodeBinary), new PerformOperationHandler(ExecuteOperation), new SupportsOperationHandler(IsOperationSupported));
|
|
}
|
|
}
|
|
}
|