-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInput.cs
69 lines (59 loc) · 1.9 KB
/
Input.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
using AMXWrapperCore;
using discordamx.Scripting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace discordamx
{
internal static partial class Program
{
public static void ProcessLocalInput()
{
string input = Console.ReadLine()!;
if (input != null && m_Setup)
{
string[] split = input.Split(' ');
if (split[0].Length > 0)
{
Type type = typeof(Program);
//Use Func to call func instead of this old way.
MethodInfo theMethod = type.GetMethod(split[0].ToLower())!;
if (theMethod != null)
{
theMethod.Invoke(typeof(Program), new object[] { input });
}
else
{
//Call OnConsoleInput for every script
AMXPublic p = null!;
foreach (Script scr in Scripting.Manager.m_Scripts)
{
p = scr.m_Amx.FindPublic("OnConsoleInput");
if (p != null)
{
var tmp1 = p.AMX.Push(split[0]);
p.Execute();
p.AMX.Release(tmp1);
}
p = null!;
}
}
}
}
}
public static void reloadall(string args)
{
foreach (Script script in Manager.m_Scripts)
{
Manager.UnloadScript(script);
}
}
public static void clr(string args)
{
Console.Clear();
}
}
}