コード例 #1
0
        public async void SendInput(string inputText, WriterSettings settings, SetKeyTitle setKeyTitleFunction, bool areMacrosSupported = true)
        {
            if (String.IsNullOrEmpty(inputText))
            {
                Logger.Instance.LogMessage(TracingLevel.WARN, $"SendInput: Text is null");
                return;
            }

            if (settings == null)
            {
                Logger.Instance.LogMessage(TracingLevel.ERROR, $"SendInput: Settings is null");
                return;
            }

            InputRunning = true;
            await Task.Run(() =>
            {
                InputSimulator iis = new InputSimulator();
                string text        = inputText;

                if (settings.IgnoreNewline)
                {
                    text = text.Replace("\r\n", "\n").Replace("\n", "");
                }
                else if (settings.EnterMode)
                {
                    text = text.Replace("\r\n", "\n");
                }

                for (int idx = 0; idx < text.Length && !ForceStop; idx++)
                {
                    if (settings.EnterMode && text[idx] == '\n')
                    {
                        iis.Keyboard.KeyPress(WindowsInput.Native.VirtualKeyCode.RETURN);
                    }
                    else if (text[idx] == CommandTools.MACRO_START_CHAR)
                    {
                        string macro = CommandTools.ExtractMacro(text, idx);
                        if (!areMacrosSupported || String.IsNullOrWhiteSpace(macro)) // Not a macro, just input the character
                        {
                            InputChar(iis, text[idx], settings);
                        }
                        else if (macro == COMMENT_MACRO) // Comment, ignore everything until the next newline
                        {
                            var newPos = text.IndexOf('\n', idx);
                            // If no newline exists, skip the entire rest of the text
                            if (newPos < 0)
                            {
                                newPos = text.Length;
                            }
                            idx = newPos;
                        }
                        else // This is a macro, run it
                        {
                            idx  += macro.Length - 1;
                            macro = macro.Substring(1, macro.Length - 2);

                            HandleMacro(macro, settings, setKeyTitleFunction);
                        }
                    }
                    else
                    {
                        InputChar(iis, text[idx], settings);
                    }
                    Thread.Sleep(settings.Delay);
                }
            });

            InputRunning = false;
        }
コード例 #2
0
        public async void SendStickyInput(string inputText, WriterSettings settings, SetKeyTitle setKeyTitleFunction, bool areMacrosSupported = true)
        {
            if (String.IsNullOrEmpty(inputText))
            {
                Logger.Instance.LogMessage(TracingLevel.WARN, $"SendStickyInput: Text is null");
                return;
            }

            if (settings == null)
            {
                Logger.Instance.LogMessage(TracingLevel.ERROR, $"SendStickyInput: Settings is null");
                return;
            }

            InputRunning = true;
            await Task.Run(() =>
            {
                InputSimulator iis = new InputSimulator();
                string text        = inputText;

                if (settings.IgnoreNewline)
                {
                    text = text.Replace("\r\n", "\n").Replace("\n", "");
                }
                else if (settings.EnterMode)
                {
                    text = text.Replace("\r\n", "\n");
                }

                int autoStopNum     = settings.AutoStopNum;
                bool isAutoStopMode = autoStopNum > 0;
                int counter         = autoStopNum;
                while (StickyEnabled)
                {
                    for (int idx = 0; idx < text.Length; idx++)
                    {
                        if (!StickyEnabled && !settings.RunUntilEnd) // Stop as soon as user presses button
                        {
                            break;
                        }
                        if (settings.EnterMode && text[idx] == '\n')
                        {
                            iis.Keyboard.KeyPress(WindowsInput.Native.VirtualKeyCode.RETURN);
                        }
                        else if (text[idx] == CommandTools.MACRO_START_CHAR)
                        {
                            string macro = CommandTools.ExtractMacro(text, idx);
                            if (!areMacrosSupported || String.IsNullOrWhiteSpace(macro)) // Not a macro, just input the character
                            {
                                iis.Keyboard.TextEntry(text[idx]);
                            }
                            else // This is a macro, run it
                            {
                                idx  += macro.Length - 1;
                                macro = macro.Substring(1, macro.Length - 2);

                                HandleMacro(macro, settings, setKeyTitleFunction);
                            }
                        }
                        else
                        {
                            iis.Keyboard.TextEntry(text[idx]);
                        }
                        Thread.Sleep(settings.Delay);
                    }
                    if (isAutoStopMode)
                    {
                        counter--; // First decrease, then check if equals zero
                        if (counter <= 0)
                        {
                            StickyEnabled = false;
                        }
                    }
                }
            });

            InputRunning = false;
        }