-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathKitModule.cs
More file actions
69 lines (54 loc) · 2.12 KB
/
Copy pathKitModule.cs
File metadata and controls
69 lines (54 loc) · 2.12 KB
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
#region License
/*
* This file is part of uEssentials project.
* https://uessentials.github.io/
*
* Copyright (C) 2015-2018 leonardosnt
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#endregion
using Essentials.Api.Module;
using Essentials.Api.Task;
using SDG.Unturned;
using static Essentials.Api.UEssentials;
namespace Essentials.NativeModules.Kit {
[ModuleInfo(Name = "Kits")]
public class KitModule : NativeModule {
private const string CommandsNamespace = "Essentials.NativeModules.Kit.Commands";
public KitManager KitManager { get; internal set; }
public static KitModule Instance { get; internal set; }
public override void OnLoad() {
Instance = this;
KitManager = new KitManager();
Level.onPostLevelLoaded += Instance.onPostLevelLoaded;
if (Level.isLoaded) {
onPostLevelLoaded(0);
}
CommandManager.RegisterAll(CommandsNamespace);
EventManager.RegisterAll<KitEventHandler>();
}
public override void OnUnload() {
Level.onPostLevelLoaded -= onPostLevelLoaded;
CommandManager.UnregisterAll(CommandsNamespace);
EventManager.UnregisterAll<KitEventHandler>();
KitManager.Save();
}
public void onPostLevelLoaded(int level) {
KitManager.Load();
Logger.LogInfo($"Loaded {KitManager.Count} kits");
}
}
}