示例#1
0
        public bool SendAUMIMessage(IpcMessage_t ipMessage, ref IpcReply_t outReply)
        {
            // Implementation Copy-pasted from UndertaleModTool/MainWindow.xaml.cs

            // By Archie
            const int replySize = 132;

            // Create the pipe
            using var pPipeServer = new NamedPipeServerStream("AUMI-IPC", PipeDirection.InOut, 1, PipeTransmissionMode.Byte, PipeOptions.Asynchronous);

            // Wait 1/8th of a second for AUMI to connect.
            // If it doesn't connect in time (which it should), just return false to avoid a deadlock.
            if (!pPipeServer.IsConnected)
            {
                pPipeServer.WaitForConnectionAsync();
                Thread.Sleep(125);
                if (!pPipeServer.IsConnected)
                {
                    pPipeServer.DisposeAsync();
                    return(false);
                }
            }

            try
            {
                //Send the message
                pPipeServer.Write(ipMessage.RawBytes());
                pPipeServer.Flush();
            }
            catch (Exception e)
            {
                // Catch any errors that might arise if the connection is broken
                ScriptError("Could not write data to the pipe!\nError: " + e.Message);
                return(false);
            }

            // Read the reply, the length of which is always a pre-set amount of bytes.
            byte[] bBuffer = new byte[replySize];
            pPipeServer.Read(bBuffer, 0, replySize);

            outReply = IpcReply_t.FromBytes(bBuffer);
            return(true);
        }
        public byte[] CreateGMLBytecode(string sCode, bool UseAUMI = false)
        {
            // By Archie
            EnsureDataLoaded();

            var Context = UndertaleModLib.Compiler.Compiler.CompileGMLText(sCode, Data, null); // We don't need UndertaleCode

            using (var smStream = new MemoryStream())
            {
                using UndertaleWriter writer = new UndertaleWriter(smStream);

                foreach (var Instruction in Context.ResultAssembly)
                {
                    Instruction.Serialize(writer);

                    if (Instruction.Destination != null)
                    {
                        uint Override = (uint)(Instruction.Destination.Target.VarID + 100000);
                        writer.Position -= 4;
                        writer.WriteUInt24(Override);
                        writer.Position++;
                    }

                    else if (Instruction.Value is UndertaleInstruction.Reference <UndertaleVariable> && Instruction.Value != null)
                    {
                        uint Override = (uint)(((UndertaleInstruction.Reference <UndertaleVariable>)Instruction.Value).Target.VarID + 100000);
                        writer.Position -= 4;
                        writer.WriteUInt24(Override);
                        writer.Position++;
                    }

                    //From AUMI, if not injected, this will fail!
                    if (UseAUMI)
                    {
                        if (Instruction.Function != null)
                        {
                            if (Instruction.Function.Target == null)
                            {
                                continue;
                            }

                            if (Instruction.Function.Target.Name == null)
                            {
                                continue;
                            }

                            if (Instruction.Function.Target.Name.Content == null)
                            {
                                continue;
                            }

                            string Name      = Instruction.Function.Target.Name.Content;
                            byte[] NameBytes = System.Text.Encoding.ASCII.GetBytes(Name);

                            IpcMessage_t ipMessage; IpcReply_t ipReply = new IpcReply_t();

                            ipMessage.FuncID = 3; // IPCID_GetFunctionByName
                            ipMessage.Buffer = new byte[512];

                            Buffer.BlockCopy(NameBytes, 0, ipMessage.Buffer, 0, NameBytes.Length);

                            SendAUMIMessage(ipMessage, ref ipReply);

                            if (ipReply.AUMIResult != 0) // AUMI_OK
                            {
                                ScriptError("AUMI - Failed to find function " + Name + " - result: " + ipReply.AUMIResult.ToString());
                            }
                            else
                            {
                                byte[] IndexBytes = new byte[4];
                                Buffer.BlockCopy(ipReply.Buffer, 0, IndexBytes, 0, 4); // Incompatible with old AUMI versions! Use commit ebd58007 or newer!
                                uint Index = BitConverter.ToUInt32(IndexBytes);
                                writer.Position -= 4;
                                writer.WriteUInt24(Index);
                                writer.Position++;
                            }
                        }
                    }
                }

                writer.Flush();

                byte[] Code = smStream.ToArray();
                return(Code);
            }
        }
示例#3
0
 public bool SendAUMIMessage(IpcMessage_t ipMessage, ref IpcReply_t outReply)
 {
     return(true);
 }