Esempio n. 1
0
        // NOTE: Intentionally no meta!

        /// <summary>Adapts a command entry to CIL.</summary>
        /// <param name="values">The adaptation-relevant values.</param>
        /// <param name="entry">The present entry ID.</param>
        public override void AdaptToCIL(CILAdaptationValues values, int entry)
        {
            // TODO: Type verification? (Can this type be modified in the way being attempted?)
            values.MarkCommand(entry);
            CommandEntry cent  = values.Entry.Entries[entry];
            bool         debug = cent.DBMode.ShouldShow(DebugMode.FULL);
            string       vn    = cent.Arguments[0].ToString().ToLowerFast();

            string[] split   = vn.Split('.');
            string   mainVar = split[0];

            if (!cent.VarLookup.TryGetValue(mainVar, out SingleCILVariable locVar))
            {
                throw new ErrorInducedException("Unknown variable name '" + mainVar + "' - cannot set its value.");
            }
            TagReturnType varType       = locVar.Type;
            string        mode          = cent.Arguments[1].ToString();
            var           operationType = mode switch
            {
                "=" => ObjectOperation.SET,
                "+=" => ObjectOperation.ADD,
                "-=" => ObjectOperation.SUBTRACT,
                "*=" => ObjectOperation.MULTIPLY,
                "/=" => ObjectOperation.DIVIDE,
                _ => throw new ErrorInducedException("That setter mode (" + mode + ") does not exist!"),
            };

            if (split.Length > 1)
            {
                values.LoadLocalVariable(locVar.Index);
                if (locVar.Type.IsRaw)
                {                                                                               // TODO: Work directly with raws
                    values.ILGen.Emit(OpCodes.Newobj, locVar.Type.Type.RawInternalConstructor); // Handle raw translation if needed.
                }
                if (split.Length == 2)
                {
                    values.ILGen.Emit(OpCodes.Dup);
                }
                values.ILGen.Emit(OpCodes.Ldstr, split[1]);
                if (varType.Type.Operation_GetSubSettable.Method.GetParameters().Length == 3)
                {
                    values.LoadQueue();
                    values.LoadEntry(entry);
                    values.ILGen.Emit(OpCodes.Call, Method_GetOES);
                }
                values.ILGen.Emit(OpCodes.Call, varType.Type.Operation_GetSubSettable.Method);
                for (int i = 2; i < split.Length; i++)
                {
                    if (i + 1 == split.Length)
                    {
                        values.ILGen.Emit(OpCodes.Dup);
                    }
                    values.LoadEntry(entry);
                    values.LoadQueue();
                    values.ILGen.Emit(OpCodes.Ldstr, split[i]);
                    values.ILGen.Emit(OpCodes.Call, Method_GetSubObject);
                }
                values.LoadArgumentObject(entry, 2);
                values.ILGen.Emit(OpCodes.Ldstr, split[^ 1]);
Esempio n. 2
0
        /// <summary>Adapts a command entry to CIL.</summary>
        /// <param name="values">The adaptation-relevant values.</param>
        /// <param name="entry">The relevant entry ID.</param>
        public override void AdaptToCIL(CILAdaptationValues values, int entry)
        {
            CommandEntry cent  = values.CommandAt(entry);
            bool         debug = cent.DBMode.ShouldShow(DebugMode.FULL);

            values.MarkCommand(entry);
            TagReturnType     returnType = ArgumentCompiler.ReturnType(cent.Arguments[2], values);
            string            lvarname   = cent.Arguments[0].ToString().ToLowerFast();
            SingleCILVariable locVar     = cent.VarLookup[lvarname];

            // This method:
            // runnable.Var = TYPE.CREATE_FOR(tagdata, runnable.entry.arg2());
            // or:
            // runnable.Var = runnable.entry.arg2();
            values.LoadRunnable();
            values.LoadArgumentObject(entry, 2);
            if (cent.Arguments.Length > 4)
            {
                string        type_name           = cent.Arguments[4].ToString().ToLowerFast();
                TagType       specifiedType       = cent.System.TagSystem.Types.RegisteredTypes[type_name];
                TagReturnType specifiedReturnType = new(specifiedType, specifiedType.Meta.RawInternal);
                values.EnsureType(returnType, specifiedReturnType); // Ensure the correct object type.
                returnType = specifiedReturnType;
            }
            else
            {
                TagReturnType specifiedReturnType = new(returnType.Type, returnType.Type.Meta.RawInternal);
                values.EnsureType(returnType, specifiedReturnType); // Ensure the correct object type.
                returnType = specifiedReturnType;
            }
            values.ILGen.Emit(OpCodes.Stfld, locVar.Field); // Push the result into the local var
            if (debug)                                      // If in debug mode...
            {
                values.LoadLocalVariable(locVar.Index);     // Load variable.
                if (returnType.IsRaw)
                {
                    values.ILGen.Emit(OpCodes.Newobj, returnType.Type.RawInternalConstructor); // Handle raw translation if needed.
                }
                values.ILGen.Emit(OpCodes.Ldstr, lvarname);                                    // Load the variable name as a string.
                values.ILGen.Emit(OpCodes.Ldstr, returnType.Type.TypeName);                    // Load the variable type name as a string.
                values.LoadQueue();                                                            // Load the queue
                values.LoadEntry(entry);                                                       // Load the entry
                values.ILGen.Emit(OpCodes.Call, Method_DebugHelper);                           // Call the debug method
            }
        }