-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWasdTest.cs
89 lines (78 loc) · 2.51 KB
/
WasdTest.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
using CounterStrikeSharp.API.Core;
using CounterStrikeSharp.API.Core.Attributes.Registration;
using CounterStrikeSharp.API.Core.Capabilities;
using CounterStrikeSharp.API.Modules.Commands;
using WASDSharedAPI;
namespace WasdSharedAPITest;
public class WasdTest : BasePlugin
{
public override string ModuleName => "WasdMenuTest";
public override string ModuleVersion => "1.0.0";
public override string ModuleAuthor => "Interesting";
public static IWasdMenuManager? MenuManager;
public override void Load(bool hotReload)
{
}
public IWasdMenuManager? GetMenuManager()
{
if (MenuManager == null)
MenuManager = new PluginCapability<IWasdMenuManager>("wasdmenu:manager").Get();
return MenuManager;
}
[ConsoleCommand("css_test_menu")]
public void TestMenu(CCSPlayerController? player, CommandInfo? info)
{
var manager = GetMenuManager();
if(manager == null)
return;
IWasdMenu menu = manager.CreateMenu("Test menu");
menu.Add("Option 1", (p, option) =>
{
p.PrintToChat("You chose option 1!");
manager.CloseMenu(p);
});
menu.Add("Option 2", (p, option) =>
{
p.PrintToChat("You chose option 2!");
manager.CloseMenu(p);
});
IWasdMenu? subMenu = CreateTestSubMenu();
if (subMenu != null)
{
subMenu.Prev = menu.Add("Sub menu 1", (p, option) =>
{
manager.OpenSubMenu(p, subMenu);
});
}
menu.Add("sub menu 2", (p, option) =>
{
IWasdMenu? subMenu2 = CreateTestSubMenu();
if(subMenu2 == null)
manager.CloseMenu(p);
else
{
subMenu2.Prev = option.Parent?.Options?.Find(option);
manager.OpenSubMenu(p, subMenu2);
}
});
manager.OpenMainMenu(player, menu);
}
public IWasdMenu? CreateTestSubMenu()
{
var manager = GetMenuManager();
if(manager == null)
return null;
IWasdMenu sub = manager.CreateMenu("sub menu");
sub.Add("sub option1", (player, option) =>
{
player.PrintToChat("you chose sub option 1");
manager.CloseSubMenu(player);
});
sub.Add("sub option2", (player, option) =>
{
player.PrintToChat("you chose sub option 2");
manager.CloseSubMenu(player);
});
return sub;
}
}