Initial commit

This commit is contained in:
2019-11-01 00:01:42 +01:00
commit 3531b72793
22 changed files with 1471 additions and 0 deletions

View File

@@ -0,0 +1,96 @@
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using VAR.ScreenAutomation.Bots;
using VAR.ScreenAutomation.Code;
using VAR.ScreenAutomation.Interfaces;
namespace VAR.ScreenAutomation
{
public partial class FrmScreenAutomation : Form
{
private bool _running = false;
private IAutomationBot _automationBot = new DummyBot();
private Timer timTicker;
private Bitmap bmpScreen = null;
public FrmScreenAutomation()
{
AutoScaleMode = AutoScaleMode.None;
AutoScaleDimensions = new SizeF(1, 1);
InitializeComponent();
}
private void FrmScreenAutomation_Load(object sender, EventArgs e)
{
SetStyle(ControlStyles.UserPaint, true);
SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
SetStyle(ControlStyles.SupportsTransparentBackColor, true);
TransparencyKey = Color.LimeGreen;
picCapturer.BackColor = Color.LimeGreen;
if (components == null) { components = new Container(); }
timTicker = new Timer(components)
{
Interval = 16,
};
timTicker.Tick += TimTicker_Tick;
timTicker.Enabled = true;
timTicker.Start();
WindowHandling.WindowSetTopLevel(this);
}
private void TimTicker_Tick(object sender, EventArgs e)
{
timTicker.Stop();
bmpScreen = Screenshoter.CaptureControl(picCapturer, bmpScreen);
if (_automationBot != null && _running)
{
bmpScreen = _automationBot.Process(bmpScreen, ctrOutput);
string responseKeys = _automationBot.ResponseKeys();
if (string.IsNullOrEmpty(responseKeys) == false && WindowHandling.ApplicationIsActivated() == false)
{
SendKeys.Send(responseKeys);
}
}
picPreview.ImageShow = bmpScreen;
timTicker.Start();
}
private void BtnStartEnd_Click(object sender, EventArgs e)
{
if (_running)
{
End();
}
else
{
Start();
}
}
private void Start()
{
if (_running) { return; }
_running = true;
btnStartEnd.Text = "End";
_automationBot?.Init(ctrOutput);
Point pointCapturerCenter = picCapturer.PointToScreen(new Point(picCapturer.Width / 2, picCapturer.Height / 2));
Mouse.SetPosition((uint)pointCapturerCenter.X, (uint)pointCapturerCenter.Y);
Mouse.Click(Mouse.MouseButtons.Left);
}
private void End()
{
if (_running == false) { return; }
_running = false;
btnStartEnd.Text = "Start";
}
}
}