Пример #1
0
        public static object GetValue(BehaviorValue input)
        {
            object result = null;

            switch (input.valueType)
            {
            case Example.BehaviorValue.ValueType.INTEGER:
                result = input.IntValue;
                break;

            case Example.BehaviorValue.ValueType.FLOAT:
                result = input.FloatValue;
                break;

            case Example.BehaviorValue.ValueType.BOOLEAN:
                result = input.BoolValue;
                break;

            case Example.BehaviorValue.ValueType.STRING:
                result = input.StrValue;
                break;
            }


            return(result);
        }
Пример #2
0
 public static void SetValue(object input, ref BehaviorValue output)
 {
     if (input is int)
     {
         output.IntValue  = (int)input;
         output.valueType = Example.BehaviorValue.ValueType.INTEGER;
     }
     else if (input is float)
     {
         output.FloatValue = (float)input;
         output.valueType  = Example.BehaviorValue.ValueType.FLOAT;
     }
     else if (input is bool)
     {
         output.BoolValue = (bool)input;
         output.valueType = Example.BehaviorValue.ValueType.BOOLEAN;
     }
     else if (input is string)
     {
         output.StrValue  = (string)input;
         output.valueType = Example.BehaviorValue.ValueType.STRING;
     }
 }
Пример #3
0
        public static Example.BehaviorValue Serialize(BehaviorValue input)
        {
            Example.BehaviorValue result = new Example.BehaviorValue();
            result.valueType = input.valueType;
            switch (input.valueType)
            {
            case Example.BehaviorValue.ValueType.INTEGER:
                result.IntValue = input.IntValue;
                break;

            case Example.BehaviorValue.ValueType.FLOAT:
                result.FloatValue = input.FloatValue;
                break;

            case Example.BehaviorValue.ValueType.BOOLEAN:
                result.BoolValue = input.BoolValue;
                break;

            case Example.BehaviorValue.ValueType.STRING:
                result.StrValue = input.StrValue;
                break;
            }
            return(result);
        }