#region License Information (GPL v3) /* ShareX - A program that allows you to take screenshots and share any file type Copyright (c) 2007-2015 ShareX Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Optionally you can also view the license at . */ #endregion License Information (GPL v3) using System; using System.Collections.Generic; using System.Threading; using System.Windows.Forms; namespace ShareX.HelpersLib { public class Function { public string Name { get; set; } public string[] Parameters { get; set; } public int Loop { get; set; } public FunctionManager FunctionManager { protected get; set; } public Function() { Loop = 1; } public virtual void Run() { Method(); } public virtual void Prepare() { } public virtual void Method() { } } public class Function_Method : Function { public override void Run() { base.Run(); if (FunctionManager.LineDelay > 0) { Thread.Sleep(FunctionManager.LineDelay); } } } public class Function_Call : Function { public override void Prepare() { int index; if (!int.TryParse(Parameters[0], out index)) { index = FunctionManager.FindFunctionIndex(Parameters[0]); if (index > -1) { Parameters[0] = (index + 1).ToString(); } } } public override void Method() { int lineIndex; if (int.TryParse(Parameters[0], out lineIndex) && lineIndex > 0) { FunctionManager.Run(lineIndex); } } } public class Function_Wait : Function { public override void Method() { int delay; if (int.TryParse(Parameters[0], out delay)) { Thread.Sleep(delay); } } } public class Function_KeyDown : Function_Method { public override void Method() { VirtualKeyCode keyCode = (VirtualKeyCode)(Keys)Enum.Parse(typeof(Keys), Parameters[0], true); InputHelpers.SendKeyDown(keyCode); } } public class Function_KeyUp : Function_Method { public override void Method() { VirtualKeyCode keyCode = (VirtualKeyCode)(Keys)Enum.Parse(typeof(Keys), Parameters[0], true); InputHelpers.SendKeyUp(keyCode); } } public class Function_KeyPress : Function_Method { public override void Method() { if (Parameters.Length > 1) { VirtualKeyCode keyCode = (VirtualKeyCode)(Keys)Enum.Parse(typeof(Keys), Parameters[Parameters.Length - 1], true); List modifiers = new List(); for (int i = 0; i < Parameters.Length - 1; i++) { VirtualKeyCode vk; string parameter = Parameters[i]; if (parameter.Equals("shift", StringComparison.InvariantCultureIgnoreCase)) { vk = VirtualKeyCode.SHIFT; } else if (parameter.Equals("ctrl", StringComparison.InvariantCultureIgnoreCase) || parameter.Equals("control", StringComparison.InvariantCultureIgnoreCase)) { vk = VirtualKeyCode.CONTROL; } else if (parameter.Equals("alt", StringComparison.InvariantCultureIgnoreCase) || parameter.Equals("menu", StringComparison.InvariantCultureIgnoreCase)) { vk = VirtualKeyCode.MENU; } else { return; } modifiers.Add(vk); } InputHelpers.SendKeyPressModifiers(keyCode, modifiers.ToArray()); } else { VirtualKeyCode keyCode = (VirtualKeyCode)(Keys)Enum.Parse(typeof(Keys), Parameters[0], true); InputHelpers.SendKeyPress(keyCode); } } } public class Function_KeyPressText : Function_Method { public override void Method() { InputHelpers.SendKeyPressText(Parameters[0]); } } public class Function_MouseDown : Function_Method { public override void Method() { MouseButtons button = (MouseButtons)Enum.Parse(typeof(MouseButtons), Parameters[0], true); InputHelpers.SendMouseDown(button); } } public class Function_MouseUp : Function_Method { public override void Method() { MouseButtons button = (MouseButtons)Enum.Parse(typeof(MouseButtons), Parameters[0], true); InputHelpers.SendMouseUp(button); } } public class Function_MouseClick : Function_Method { public override void Method() { MouseButtons button; if (Parameters.Length == 3) { int x, y; if (int.TryParse(Parameters[0], out x) && int.TryParse(Parameters[1], out y)) { button = (MouseButtons)Enum.Parse(typeof(MouseButtons), Parameters[2], true); InputHelpers.SendMouseClick(x, y, button); } } else { button = (MouseButtons)Enum.Parse(typeof(MouseButtons), Parameters[0], true); InputHelpers.SendMouseClick(button); } } } public class Function_MouseMove : Function_Method { public override void Method() { int x, y; if (int.TryParse(Parameters[0], out x) && int.TryParse(Parameters[1], out y)) { InputHelpers.SendMouseMove(x, y); } } } public class Function_MouseWheel : Function_Method { public override void Method() { int delta; if (int.TryParse(Parameters[0], out delta)) { InputHelpers.SendMouseWheel(delta); } } } }