-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGUI.cs
196 lines (168 loc) · 7.39 KB
/
GUI.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
using System;
using System.Drawing;
using System.Runtime.InteropServices;
using System.Text.RegularExpressions;
using System.Windows.Forms;
using AutoIt;
using PxgBot.Helpers;
namespace PxgBot.Classes
{
static class GUI
{
public static Rectangle WindowRect { get; set; }
public static Rectangle ScreenRect { get; set; }
public static Rectangle BattleRect { get; set; }
public static Rectangle PokemonRect { get; set; }
public static Rectangle ChatRect { get; set; }
public static double sqmWidth { get; set; }
public static double sqmHeight { get; set; }
public static Rectangle[,] ScreenGrid { get; set; }
/// Player center rect = [7,5]
public static Point PokeballPosition { get; set; }
[DllImport("User32.dll")]
private static extern bool GetWindowRect(IntPtr hwnd, ref Rectangle WindowRect);
[DllImport("User32.dll")]
private static extern IntPtr GetDC(IntPtr hwnd);
[DllImport("User32.dll")]
private static extern int ReleaseDC(IntPtr hwnd, IntPtr dc);
public static void DrawOnScreen(Rectangle rect)
{
IntPtr desktop = GetDC(IntPtr.Zero);
using (Graphics g = Graphics.FromHdc(desktop))
{
g.DrawRectangle(Pens.Red, rect);
}
ReleaseDC(IntPtr.Zero, desktop);
}
public static void OpenBattleList()
{
if (ImageHandler.UseImageSearch("Battle.png", tolerance: 20) == null)
{
InputHandler.SendKeys(new string[] { "{b}" }, 50);
}
}
public static string GetBattleTesseract()
{
try
{
DrawOnScreen(BattleRect);
Bitmap print = ImageHandler.GetPxgScreenshoot(BattleRect);
Bitmap resizedImage1 = new Bitmap(print, new Size(print.Width * 3, Convert.ToInt32(print.Height * 1.5)));
Bitmap resizedImage2 = new Bitmap(print, new Size(print.Width * 8, print.Height * 5));
Random rnd = new Random();
int newNumber = rnd.Next(0, 999999);
resizedImage1.Save("resized1" + newNumber + ".bmp");
resizedImage2.Save("resized2" + newNumber + ".bmp");
string resizedText1 = ImageHandler.Tesseract("resized1" + newNumber + ".bmp");
string resizedText2 = ImageHandler.Tesseract("resized2" + newNumber + ".bmp");
resizedText1 = Regex.Replace(resizedText1, @"[^0-9a-zA-Z:,\n]+", "");
resizedText2 = Regex.Replace(resizedText2, @"[^0-9a-zA-Z:,\n]+", "");
print.Dispose();
resizedImage1.Dispose();
resizedImage2.Dispose();
System.IO.File.Delete("resized1" + newNumber + ".bmp");
System.IO.File.Delete("resized2" + newNumber + ".bmp");
return resizedText1 + '\n' + resizedText2;
}
catch (Exception ex)
{
MessageBox.Show("GUI: GetBattleList: " + ex.Message);
return "error";
}
}
public static void GetChatBorders()
{
int[] chatInit = ImageHandler.UseImageSearch("Screen\\ChatTop.png");
if (chatInit == null)
{
chatInit = ImageHandler.UseImageSearch("Screen\\ChatTopWhite.png");
}
int[] chatEnd = ImageHandler.UseImageSearch("Screen\\ChatBottom.png");
if (chatInit == null || chatEnd == null)
{
Console.WriteLine("Failed to find chat");
return;
}
ChatRect = new Rectangle(chatInit[0], chatInit[1], chatEnd[0] - chatInit[0] + 50, chatEnd[1] - chatInit[1]);
Console.WriteLine("Chat set");
}
public static void GetBattleBorders()
{
OpenBattleList();
int[] battleIcon = ImageHandler.UseImageSearch("Battle.png", tolerance: 20);
if (battleIcon == null)
{
Console.WriteLine("Battle Icon not found");
return;
}
int[] battleListEnd = ImageHandler.UseImageSearch("Screen\\BattleBottomRight.png", x: battleIcon[0], y: battleIcon[1], tolerance: 15);
if (battleListEnd == null)
{
battleListEnd = ImageHandler.UseImageSearch("Screen\\BattleBottomRightWhite.png", x: battleIcon[0], y: battleIcon[1], tolerance: 15);
}
if (battleListEnd == null)
{
Console.WriteLine("Battle list end not found: " + battleIcon[0] + ", " + battleIcon[1] + ", " + GUI.WindowRect.Width + ", " + GUI.WindowRect.Height);
return;
}
int startX = battleIcon[0];
int startY = battleIcon[1] + 40;
int endX = battleListEnd[0];
int endY = battleListEnd[1];
BattleRect = new Rectangle(startX, startY, endX - startX, endY - startY + 15);
//Console.WriteLine("Battle borders set: " + startX + ", " + startY + ", " + endX + ", " + endY);
}
public static void GetScreenBorders()
{
int[] topLeft = ImageHandler.UseImageSearch("Screen\\ScreenTopLeftBorder.png", transparency: "0xFFFFFF");
int[] bottomRight = ImageHandler.UseImageSearch("Screen\\ScreenBottomRightBorder.png", transparency: "0xFFFFFF");
Image screenBottom = Image.FromFile("Images\\Screen\\ScreenBottomRightBorder.png");
if (topLeft == null || bottomRight == null)
{
Console.WriteLine("Screen borders not set");
return;
}
ScreenRect = new Rectangle(topLeft[0], topLeft[1], (bottomRight[0] + screenBottom.Width) - topLeft[0], (bottomRight[1] + screenBottom.Height) - topLeft[1]);
//Console.WriteLine("Screen borders set");
}
public static void GetScreenGrid()
{
ScreenGrid = new Rectangle[15, 11];
sqmWidth = ScreenRect.Width / 15;
sqmHeight = ScreenRect.Height / 11;
double height = ScreenRect.Y;
for (int y = 0; y < 11; y++)
{
double width = ScreenRect.X;
for (int x = 0; x < 15; x++)
{
Rectangle rec = new Rectangle(Convert.ToInt32(width), Convert.ToInt32(height), Convert.ToInt32(sqmWidth), Convert.ToInt32(sqmHeight));
ScreenGrid[x, y] = rec;
width += sqmWidth;
}
height += sqmHeight;
}
}
public static void GetWindowRect()
{
Rectangle outRect = new Rectangle();
bool windowFound = GetWindowRect(Addresses.PxgHandle, ref outRect);
if (windowFound)
{
//Console.WriteLine("Window Rect found");
if (Settings.Debug) { Settings.DebugText += "\n Window Rect found"; }
outRect.X += 10;
outRect.Y += 10;
WindowRect = outRect;
}
else
{
if (Settings.Debug) { Settings.DebugText += "\n SetWindowRect: Window not found"; }
}
}
public static bool isPxgActive()
{
return AutoItX.WinActive(Addresses.PxgClientName) == 1 || AutoItX.WinActive(title: "PXG Bot") == 1;
}
}
}