-
Notifications
You must be signed in to change notification settings - Fork 2
/
PluginCore.cs
281 lines (248 loc) · 9.1 KB
/
PluginCore.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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
using System;
using System.IO;
using Decal.Adapter;
using Decal.Adapter.Wrappers;
namespace TreeStats
{
[FriendlyName("TreeStats")]
public class PluginCore : PluginBase
{
public static PluginHost MyHost;
public static CoreManager MyCore;
// Establish base URL for all queries
public static string urlBase = "http://treestats.net/";
protected override void Startup()
{
try
{
string dir = setupPluginDir();
Logging.Init(dir + "\\messages.txt", dir + "\\errors.txt");
MigrateLegacyPluginDirLocation(dir);
MyHost = Host;
MyCore = Core;
// Plugin setup
Account.Init(MyCore);
Character.Init(MyCore, MyHost);
Settings.Init(dir + "\\settings.txt");
Util.Init(MyHost);
Settings.Load();
MainView.ViewInit(Path.ToString() + "//icon.bmp");
// Bind events
Core.CharacterFilter.LoginComplete += new EventHandler(CharacterFilter_LoginComplete);
Core.CommandLineText += new EventHandler<ChatParserInterceptEventArgs>(Core_CommandLineText);
Core.EchoFilter.ServerDispatch += new EventHandler<NetworkMessageEventArgs>(EchoFilter_ServerDispatch);
}
catch (Exception ex)
{
Logging.LogError(ex);
}
}
protected override void Shutdown()
{
try
{
MyHost = null;
MyCore = null;
Account.Destroy();
Character.Destroy();
Util.Destroy();
Settings.Destroy();
MainView.ViewDestroy();
// Unbind events
Core.CharacterFilter.LoginComplete -= new EventHandler(CharacterFilter_LoginComplete);
Core.EchoFilter.ServerDispatch -= new EventHandler<NetworkMessageEventArgs>(EchoFilter_ServerDispatch);
Core.CommandLineText -= new EventHandler<ChatParserInterceptEventArgs>(Core_CommandLineText);
Logging.Destroy();
}
catch (Exception ex)
{
Logging.LogError(ex);
}
}
/**
* Attempt to find a suitable place to store log and setting files and ensure
* that directory exists.
*
* Falls back to the same folder as the TreeStats DLL.
*/
string setupPluginDir()
{
string dir = null;
try {
dir = string.Format(@"{0}\{1}\{2}",
Environment.GetFolderPath(Environment.SpecialFolder.Personal),
"Decal Plugins",
"TreeStats");
Directory.CreateDirectory(dir);
}
catch (Exception ex)
{
// noop
}
finally
{
if (dir == null)
{
dir = Path;
}
}
try
{
if (!Directory.Exists(dir))
{
dir = Path;
}
} catch (Exception ex)
{
// noop
}
return dir;
}
void CharacterFilter_LoginComplete(object sender, EventArgs e)
{
try
{
Logging.LogMessage("LoginComplete");
Logging.LogMessage(" Server:" + Core.CharacterFilter.Server);
Logging.LogMessage(" Character: " + Core.CharacterFilter.Name);
Logging.LogMessage(" ShouldSend() : " + Settings.ShouldSendCharacter(Core.CharacterFilter.Server + "-" + Core.CharacterFilter.Name).ToString());
Logging.LogMessage(" ShouldLogin() " + Account.ShouldLogin().ToString());
// Log in (if applicable)
if (Account.ShouldLogin())
{
Account.Login(Settings.accountName, Settings.accountPassword);
}
else
{
// Then upload (if we should)
if (Settings.ShouldSendCharacter(Core.CharacterFilter.Server + "-" + Core.CharacterFilter.Name))
{
Character.DoUpdate();
}
}
}
catch (Exception ex)
{
Logging.LogError(ex);
}
}
void Core_CommandLineText(object sender, ChatParserInterceptEventArgs e)
{
try
{
string text = e.Text.ToLower();
if (text.StartsWith("@treestats") || text.StartsWith("/treestats"))
{
e.Eat = true;
string[] tokens = text.Split(' ');
if (tokens.Length <= 1)
{
Settings.ShowHelp();
}
else if (tokens.Length >= 2)
{
string command = tokens[1];
if (command == "help")
{
Settings.ShowHelp();
}
else if (command == "send")
{
Character.TryUpdate(true);
}
else if (command == "mode")
{
Settings.ToggleMode();
Settings.Save();
}
else if (command == "loc")
{
Settings.ToggleLocation();
Settings.Save();
}
else if (command == "add")
{
Settings.AddCharacter(Core.CharacterFilter.Server + "-" + Core.CharacterFilter.Name);
Settings.Save();
}
else if (command == "rem")
{
Settings.RemoveCharacter(Core.CharacterFilter.Server + "-" + Core.CharacterFilter.Name);
Settings.Save();
}
else if (command == "account")
{
// @treestats login name password
if (tokens.Length < 5)
{
Settings.ShowHelp();
return;
}
string subcommand = tokens[2];
if (subcommand == "create")
{
Account.Create(tokens[3], tokens[4]);
return;
}
else if (subcommand == "login")
{
Account.Login(tokens[3], tokens[4]);
Settings.useAccount = true;
return;
}
}
}
}
}
catch (Exception ex)
{
Logging.LogError(ex);
}
}
void EchoFilter_ServerDispatch(object sender, NetworkMessageEventArgs e)
{
try
{
if (e.Message.Type == 0xF7B0) // Game Event
{
if ((int)e.Message["event"] == 0x0029) // Titles list
{
Character.ProcessTitlesMessage(e);
}
else if ((int)e.Message["event"] == 0x0013) // Login Character
{
Character.ProcessCharacterPropertyData(e);
}
else if ((int)e.Message["event"] == 0x0020) // Allegiance info
{
Character.ProcessAllegianceInfoMessage(e);
}
else if ((int)e.Message["event"] == 0x002b) // Set title
{
Character.ProcessSetTitleMessage(e);
}
}
}
catch (Exception ex)
{
Logging.LogError(ex);
}
}
private void MigrateLegacyPluginDirLocation(string pluginDir)
{
string oldSettingsPath = Path + "\\settings.txt";
string currentSettingsPath = pluginDir + "\\settings.txt";
if (File.Exists(oldSettingsPath) && !File.Exists(currentSettingsPath))
{
try
{
File.Copy(oldSettingsPath, currentSettingsPath);
}
catch (Exception ex)
{
Logging.LogError(ex);
}
}
}
}
}