362 lines
12 KiB
C#
362 lines
12 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Test_Merge
|
|
{
|
|
public partial class Settings : Form
|
|
{
|
|
private string _grandPrixUrl = "";
|
|
private string _grandPrixName = "";
|
|
private int _grandPrixYear = 2000;
|
|
private List<string> _driverList = new List<string>();
|
|
|
|
private F1TVEmulator Emulator = null;
|
|
private ConfigurationTool Config = null;
|
|
|
|
private bool CreatingZone = false;
|
|
private Point ZoneP1;
|
|
private Point ZoneP2;
|
|
|
|
private bool CreatingWindow = false;
|
|
private Point WindowP1;
|
|
private Point WindowP2;
|
|
|
|
List<Rectangle> WindowsToAdd = new List<Rectangle>();
|
|
|
|
public string GrandPrixUrl { get => _grandPrixUrl; private set => _grandPrixUrl = value; }
|
|
public string GrandPrixName { get => _grandPrixName; private set => _grandPrixName = value; }
|
|
public int GrandPrixYear { get => _grandPrixYear; private set => _grandPrixYear = value; }
|
|
public List<string> DriverList { get => _driverList; private set => _driverList = value; }
|
|
|
|
public Settings()
|
|
{
|
|
InitializeComponent();
|
|
Load();
|
|
}
|
|
private void Load()
|
|
{
|
|
RefreshUI();
|
|
}
|
|
private void RefreshUI()
|
|
{
|
|
lsbDrivers.DataSource = null;
|
|
lsbDrivers.DataSource = DriverList;
|
|
|
|
if (CreatingZone)
|
|
{
|
|
if (ZoneP1 == new Point(-1, -1))
|
|
{
|
|
lblZonePointsRemaning.Text = "2 points Remaining";
|
|
}
|
|
else
|
|
{
|
|
lblZonePointsRemaning.Text = "1 point Remaining";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
lblZonePointsRemaning.Text = "";
|
|
}
|
|
|
|
if (CreatingWindow)
|
|
{
|
|
if (WindowP1 == new Point(-1, -1))
|
|
{
|
|
lblWindowPointsRemaining.Text = "2 points Remaining";
|
|
}
|
|
else
|
|
{
|
|
lblWindowPointsRemaining.Text = "1 point Remaining";
|
|
}
|
|
lblWindowPointsRemaining.Text = ConfigurationTool.NUMBER_OF_ZONES - WindowsToAdd.Count() + " Windows remaining";
|
|
}
|
|
else
|
|
{
|
|
lblWindowPointsRemaining.Text = "";
|
|
lblWindowsRemaining.Text = "";
|
|
}
|
|
if (Config != null)
|
|
{
|
|
pbxMain.Image = Config.MainZone.Draw();
|
|
pbxDriverZone.Image = Config.MainZone.Zones[0].ZoneImage;
|
|
}
|
|
}
|
|
private void CreateNewZone(Point p1, Point p2)
|
|
{
|
|
Rectangle dimensions = CreateAbsoluteRectangle(p1, p2);
|
|
Config = new ConfigurationTool((Bitmap)pbxMain.Image, dimensions);
|
|
RefreshUI();
|
|
}
|
|
private void CreateWindows(List<Rectangle> dimensions)
|
|
{
|
|
if (Config != null)
|
|
{
|
|
Config.AddWindows(dimensions);
|
|
}
|
|
}
|
|
private void tbxGpUrl_TextChanged(object sender, EventArgs e)
|
|
{
|
|
GrandPrixUrl = tbxGpUrl.Text;
|
|
}
|
|
|
|
private void tbxGpName_TextChanged(object sender, EventArgs e)
|
|
{
|
|
GrandPrixName = tbxGpName.Text;
|
|
}
|
|
|
|
private void tbxGpYear_TextChanged(object sender, EventArgs e)
|
|
{
|
|
int year;
|
|
try
|
|
{
|
|
year = Convert.ToInt32(tbxGpYear.Text);
|
|
}
|
|
catch
|
|
{
|
|
year = 1545;
|
|
}
|
|
GrandPrixYear = year;
|
|
}
|
|
|
|
private void btnAddDriver_Click(object sender, EventArgs e)
|
|
{
|
|
string newDriver = tbxDriverName.Text;
|
|
DriverList.Add(newDriver);
|
|
RefreshUI();
|
|
}
|
|
|
|
private void btnRemoveDriver_Click(object sender, EventArgs e)
|
|
{
|
|
if (lsbDrivers.SelectedIndex >= 0)
|
|
{
|
|
DriverList.RemoveAt(lsbDrivers.SelectedIndex);
|
|
}
|
|
RefreshUI();
|
|
}
|
|
private void SwitchZoneCreation()
|
|
{
|
|
if (CreatingZone)
|
|
{
|
|
CreatingZone = false;
|
|
lblZonePointsRemaning.Text = "";
|
|
}
|
|
else
|
|
{
|
|
CreatingZone = true;
|
|
if (CreatingWindow)
|
|
SwitchWindowCreation();
|
|
|
|
if (Emulator != null && Emulator.Ready)
|
|
{
|
|
Config = null;
|
|
pbxMain.Image = Emulator.Screenshot();
|
|
}
|
|
|
|
ZoneP1 = new Point(-1, -1);
|
|
ZoneP2 = new Point(-1, -1);
|
|
|
|
lblZonePointsRemaning.Text = "2 Points left";
|
|
}
|
|
RefreshUI();
|
|
}
|
|
private void SwitchWindowCreation()
|
|
{
|
|
if (CreatingWindow)
|
|
{
|
|
CreatingWindow = false;
|
|
}
|
|
else
|
|
{
|
|
CreatingWindow = true;
|
|
|
|
if (CreatingZone)
|
|
SwitchZoneCreation();
|
|
|
|
WindowP1 = new Point(-1, -1);
|
|
WindowP2 = new Point(-1, -1);
|
|
|
|
WindowsToAdd = new List<Rectangle>();
|
|
}
|
|
RefreshUI();
|
|
}
|
|
private void btnCreatZone_Click(object sender, EventArgs e)
|
|
{
|
|
SwitchZoneCreation();
|
|
}
|
|
private void btnCreateWindow_Click(object sender, EventArgs e)
|
|
{
|
|
SwitchWindowCreation();
|
|
}
|
|
private void pbxMain_Click(object sender, EventArgs e)
|
|
{
|
|
if (CreatingZone && pbxMain.Image != null)
|
|
{
|
|
Point coordinates = pbxMain.PointToClient(new Point(MousePosition.X, MousePosition.Y));
|
|
float xOffset = (float)pbxMain.Image.Width / (float)pbxMain.Width;
|
|
float yOffset = (float)pbxMain.Image.Height / (float)pbxMain.Height;
|
|
Point newPoint = new Point(Convert.ToInt32((float)coordinates.X * xOffset), Convert.ToInt32((float)coordinates.Y * yOffset));
|
|
|
|
//Point newPoint = new Point(coordinates.X - pbxMain.Left, coordinates.Y - pbxMain.Top);
|
|
//newPoint = new Point(Convert.ToInt32((float)newPoint.X * xOffset),Convert.ToInt32((float)newPoint.Y * yOffset));
|
|
|
|
MessageBox.Show("Coordinates" + Environment.NewLine + "Old : " + coordinates.ToString() + Environment.NewLine + "New : " + newPoint.ToString());
|
|
|
|
if (ZoneP1 == new Point(-1, -1))
|
|
{
|
|
ZoneP1 = newPoint;
|
|
}
|
|
else
|
|
{
|
|
ZoneP2 = newPoint;
|
|
|
|
/*
|
|
//Correction
|
|
if(ZoneP1.Y > ZoneP2.Y)
|
|
{
|
|
ZoneP1 = new Point(ZoneP1.X,ZoneP1.Y + pbxMain.Top);
|
|
}
|
|
else
|
|
{
|
|
ZoneP2 = new Point(ZoneP2.X, ZoneP2.Y - pbxMain.Top);
|
|
}
|
|
*/
|
|
|
|
CreateNewZone(ZoneP1, ZoneP2);
|
|
SwitchZoneCreation();
|
|
}
|
|
RefreshUI();
|
|
}
|
|
}
|
|
|
|
private void pbxDriverZone_Click(object sender, EventArgs e)
|
|
{
|
|
if (CreatingWindow && pbxDriverZone.Image != null)
|
|
{
|
|
Point coordinates = pbxDriverZone.PointToClient(new Point(MousePosition.X, MousePosition.Y));
|
|
|
|
float xOffset = (float)pbxDriverZone.Image.Width / (float)pbxDriverZone.Width;
|
|
float yOffset = (float)pbxDriverZone.Image.Height / (float)pbxDriverZone.Height;
|
|
|
|
Point newPoint = new Point(Convert.ToInt32((float)coordinates.X * xOffset), Convert.ToInt32((float)coordinates.Y * yOffset));
|
|
|
|
if (WindowP1 == new Point(-1, -1))
|
|
{
|
|
WindowP1 = newPoint;
|
|
}
|
|
else
|
|
{
|
|
WindowP2 = newPoint;
|
|
WindowsToAdd.Add(CreateAbsoluteRectangle(WindowP1, WindowP2));
|
|
|
|
if (WindowsToAdd.Count < ConfigurationTool.NUMBER_OF_ZONES)
|
|
{
|
|
WindowP1 = new Point(-1, -1);
|
|
WindowP2 = new Point(-1, -1);
|
|
}
|
|
else
|
|
{
|
|
CreateWindows(WindowsToAdd);
|
|
}
|
|
}
|
|
RefreshUI();
|
|
}
|
|
}
|
|
private Rectangle CreateAbsoluteRectangle(Point p1, Point p2)
|
|
{
|
|
Point newP1 = new Point();
|
|
Point newP2 = new Point();
|
|
|
|
if (p1.X < p2.X)
|
|
{
|
|
newP1.X = p1.X;
|
|
newP2.X = p2.X;
|
|
}
|
|
else
|
|
{
|
|
newP1.X = p2.X;
|
|
newP2.X = p1.X;
|
|
}
|
|
|
|
if (p1.Y < p2.Y)
|
|
{
|
|
newP1.Y = p1.Y;
|
|
newP2.Y = p2.Y;
|
|
}
|
|
else
|
|
{
|
|
newP1.Y = p2.Y;
|
|
newP2.Y = p1.Y;
|
|
}
|
|
return new Rectangle(newP1.X, newP1.Y, newP2.X - newP1.X, newP2.Y - newP1.Y);
|
|
}
|
|
|
|
private async void btnRefresh_Click(object sender, EventArgs e)
|
|
{
|
|
btnRefresh.Enabled = false;
|
|
if (Emulator == null || Emulator.GrandPrixUrl != tbxGpUrl.Text)
|
|
{
|
|
Emulator = new F1TVEmulator(tbxGpUrl.Text);
|
|
}
|
|
|
|
if (!Emulator.Ready)
|
|
{
|
|
Task<int> start = Task.Run(() => Emulator.Start());
|
|
int errorCode = await start;
|
|
if (errorCode != 0)
|
|
{
|
|
string message;
|
|
switch (errorCode)
|
|
{
|
|
case 101:
|
|
message = "Error " + errorCode + " Could not start the driver. It could be because an other instance is runnin make sure you closed them all before trying again";
|
|
break;
|
|
case 102:
|
|
message = "Error " + errorCode + " Could not navigate on the F1TV site. Make sure the correct URL has been given and that you logged from chrome. It can take a few minutes to update";
|
|
break;
|
|
case 103:
|
|
message = "Error " + errorCode + " The url is not a valid url";
|
|
break;
|
|
case 104:
|
|
message = "Error " + errorCode + " The url is not a valid url";
|
|
break;
|
|
case 105:
|
|
message = "Error " + errorCode + " There has been an error trying to emulate button presses. Please try again";
|
|
break;
|
|
case 106:
|
|
message = "Error " + errorCode + " There has been an error trying to emulate button presses. Please try again";
|
|
break;
|
|
default:
|
|
message = "Could not start the emulator Error " + errorCode;
|
|
break;
|
|
}
|
|
MessageBox.Show(message);
|
|
}
|
|
else
|
|
{
|
|
pbxMain.Image = Emulator.Screenshot();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
pbxMain.Image = Emulator.Screenshot();
|
|
}
|
|
btnRefresh.Enabled = true;
|
|
}
|
|
|
|
private void Settings_FormClosing(object sender, FormClosingEventArgs e)
|
|
{
|
|
if (Emulator != null)
|
|
{
|
|
Emulator.Stop();
|
|
}
|
|
}
|
|
}
|
|
}
|