-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
214 lines (185 loc) · 8.88 KB
/
Program.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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;
using Memory;
using Console = Colorful.Console;
namespace Intralism_Bot_2020
{
class Program
{
/// <summary>
/// <para>This Method returns the MD5 Hash of the current Proccess this gets called out</para>
/// Example: 46F91A02FF51B1C39A7651603D3F0BEB
/// </summary>
private static string GetMD5()
{
System.Security.Cryptography.MD5CryptoServiceProvider md5 = new System.Security.Cryptography.MD5CryptoServiceProvider();
System.IO.FileStream stream = new System.IO.FileStream(System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName, System.IO.FileMode.Open, System.IO.FileAccess.Read);
md5.ComputeHash(stream);
stream.Close();
System.Text.StringBuilder sb = new System.Text.StringBuilder();
for (int i = 0; i < md5.Hash.Length; i++)
sb.Append(md5.Hash[i].ToString("x2"));
return sb.ToString().ToUpperInvariant();
}
/// <summary>
/// This is only here if you are too lazy to write 'Console.WriteLine();' every time you want to have some space between two displayed strings
/// </summary>
/// <param name="amounts">Used to create X new empty lines. Default: 1</param>
private static void NewLine(int amounts = 1)
{
for (int amount = 1; amount <= amounts; amount++)
Console.WriteLine();
}
/// <summary>
/// You want to write centered? Well, this function does it for you.
/// </summary>
/// <param name="content">The content you want to write in the center of the Consoleline</param>
/// <param name="newLine">If true use 'Console.WriteLine()' instead of 'Console.Write()'.</param>
/// <param name="color">You want to use a Color? No Problem.</param>
private static void WriteCentered(string content, bool newLine = true, Color color = new Color())
{
Console.SetCursorPosition((Console.WindowWidth - content.Length) / 2, Console.CursorTop);
if (newLine)
{
if (color.IsEmpty)
Console.WriteLine(content);
else
Console.WriteLine(content, color);
}
else
{
if (color.IsEmpty)
Console.Write(content);
else
Console.Write(content, color);
}
}
/// <summary>
/// I wanted to keep the Code clean so I moved the Header Part to this method here.
/// </summary>
private static void DisplayHeader(string title, string buildVersion, string gameVersion, string md5Hash, Color titleForegroundColor, Color md5HashForegroundColor)
{
List<string> signature = new List<string>(new string[] {
" _ _ ",
" _| | |_ _____ _____ _____ _____ _____ _____ _____ _____ _____ __ _____ _____ ",
"|_ _|_ _| __| _ | | | __| | | __ | __| | | | | | __|",
"|_ _| | | | __| | | | | | __| | -| __| | | | |__| | |__ |",
" |_|_| |_| |_____|__|__|_|_|_| |_____|__|__|__|__|_____|_|___|_____|_____|_____|",
" "
});
for (int signatureIndex = 0; signatureIndex < signature.Count; signatureIndex++)
{
WriteCentered(signature[signatureIndex], true, titleForegroundColor);
}
NewLine();
WriteCentered(title);
WriteCentered(String.Format(("{0} > {1}"), buildVersion, gameVersion));
WriteCentered(String.Format("MD5:{0}", md5Hash), true, md5HashForegroundColor);
}
/// <summary>
/// Get the process at index 0 of all processes named after the parameter 'pName'.
/// </summary>
/// <param name="pName">The Process Name you are looking for.</param>
public static bool GetProcessesByName(string pName, out System.Diagnostics.Process process)
{
System.Diagnostics.Process[] pList = System.Diagnostics.Process.GetProcessesByName(pName);
process = pList.Length > 0 ? pList[0] : null;
return process != null;
}
/// <summary>
/// Clear whole current Consoleline.
/// </summary>
public static void ClearCurrentConsoleLine()
{
int currentLineCursor = Console.CursorTop;
Console.SetCursorPosition(0, Console.CursorTop);
for (int i = 0; i < Console.WindowWidth; i++)
Console.Write(" ");
Console.SetCursorPosition(0, currentLineCursor);
}
public static Mem m = new Mem();
static void Main(string[] args)
{
string title = "Intralism Bot - Private Build";
string buildVersion = "Build: 16.07.2020";
string gameVersion = "Game Version: v.5.5.2.0659 b.4815754";
string md5Hash = GetMD5();
// Change them based on the Game
Color titleForegroundColor = Color.FromArgb(66, 66, 66); // Original: 34, 31, 48
Color md5HashForegroundColor = Color.FromArgb(255, 61, 64); // Original: 50, 168, 82
Console.CursorVisible = false;
DisplayHeader(title, buildVersion, gameVersion, md5Hash, titleForegroundColor, md5HashForegroundColor);
ConsoleSpinner spin = new ConsoleSpinner();
NewLine(3);
WriteCentered("Looking for Intralism.exe...", false);
while (true)
{
System.Diagnostics.Process process;
if (GetProcessesByName("Intralism", out process))
{
ClearCurrentConsoleLine();
WriteCentered("Status: Running");
WriteCentered($"Intralism.exe [{process.Id}]");
break;
}
spin.Turn();
Thread.Sleep(100);
}
if (m.OpenProcess("Intralism"))
{
Thread readMemory = new Thread(new ThreadStart(MemoryReader));
readMemory.Start();
}
Console.ReadLine();
Environment.Exit(0);
}
private static void MemoryReader()
{
string oldPath = "", newPath = "";
while (true)
{
// A lot of Errors here (since the fields only have a value when you are in a Map), we need to use try here.
// I am too lazy to handle the Errors, a catch that does nothing should do the trick.
try
{
// Current Time
Patchables.currentTime = m.ReadFloat(Patchables.currenTimePointer.Get());
// Map Path / Config Location
// Actually doing it for the first time right and use the length pointer instead of hardcoding the length to 100
Patchables.fullevelPathLength = m.ReadInt(Patchables.fullLevelPathLengthPointer.Get());
byte[] fullLevelPathValueInBytes = m.ReadBytes(Patchables.fullLevelPathValuePointer.Get(), Patchables.fullevelPathLength * 2);
Patchables.fullevelPathValue = Encoding.Unicode.GetString(fullLevelPathValueInBytes);
Patchables.musicTime = m.ReadFloat(Patchables.musicTimePointer.Get());
Patchables.configVersion = m.ReadInt(Patchables.configVersionPointer.Get());
Patchables.handCount = m.ReadInt(Patchables.handCountPointer.Get());
Patchables.arcsDelay = m.ReadFloat(Patchables.arcsDelayPointer.Get());
// TODO: Read all the other Values we might need too
newPath = Patchables.fullevelPathValue;
if (oldPath != newPath)
{
oldPath = newPath;
Bot.OpenConfig();
}
}
catch
{
// Do Nothing
}
finally
{
TimeSpan time = TimeSpan.FromSeconds(Patchables.currentTime);
TimeSpan time2 = TimeSpan.FromSeconds(Patchables.musicTime);
Console.Title = $"Time: {time.ToString("hh':'mm':'ss")}/{time2.ToString("hh':'mm':'ss")} | Map: {Patchables.fullevelPathValue}";
}
}
}
}
}