-
Notifications
You must be signed in to change notification settings - Fork 2
/
AliasEditorPanel.cpp
512 lines (460 loc) · 13.6 KB
/
AliasEditorPanel.cpp
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
// wx includes
#include <wx/wx.h>
#include <wx/string.h>
#include <wx/regex.h>
#include <wx/menu.h>
// Statsgen Includes
#include "AliasEditorPanel.h"
#include "GlobalStatistics.h"
#include "StaticFunctions.h"
BEGIN_EVENT_TABLE(AliasEditorPanel, wxPanel)
EVT_SIZE(AliasEditorPanel::OnResize)
EVT_TREE_ITEM_RIGHT_CLICK(WINDOW_ID_ALIASTREE,
AliasEditorPanel::OnAliasRightClick)
EVT_LIST_ITEM_RIGHT_CLICK(WINDOW_ID_PLAYERCACHE,
AliasEditorPanel::OnPlayerRightClick)
EVT_MENU(ALIAS_POPUP_DELETE_PARENT,AliasEditorPanel::OnPopupMenu)
EVT_MENU(ALIAS_POPUP_DELETE_CHILD,AliasEditorPanel::OnPopupMenu)
EVT_MENU(ALIAS_POPUP_REPARENT,AliasEditorPanel::OnPopupMenu)
EVT_MENU(PLAYER_POPUP_NEW_ALIAS,AliasEditorPanel::OnPopupMenu)
EVT_MENU(PLAYER_POPUP_ADD_ALIAS,AliasEditorPanel::OnPopupMenu)
EVT_TEXT(WINDOW_ID_TEXTCTRL_CONFIGVALUE,AliasEditorPanel::OnTextChange)
END_EVENT_TABLE()
AliasEditorPanel::AliasEditorPanel()
{
playerCache=NULL;
aliasList=NULL;
// Lets load up the current Alias List into
// the global statistics - we can transfer
// it across into the tree during creation
globalStatistics.ReadAliasList();
}
bool AliasEditorPanel::Create(wxWindow *parent,
wxWindowID id,
const wxPoint &pos,
const wxSize &size,
long style,
const wxString &name)
{
wxString dummyConfigKey="/tmp/tmp";
wxString labelText="Player Filter";
long treeCtrlStyle=wxTR_HAS_BUTTONS;
wxString configKey;
wxPanel::Create( parent, id,
pos,
size,
style,
name);
playerCache=new PlayerCachePanel(dummyConfigKey,labelText);
playerCache->SetFilterType(PlayerCachePanel::FILTER_TYPE_NO_CASE);
playerCache->Create(this,
WINDOW_ID_PLAYERCACHE,
wxDefaultPosition,
wxDefaultSize);
aliasList=new wxTreeCtrl(this,
WINDOW_ID_ALIASTREE,
wxDefaultPosition,
wxDefaultSize,
treeCtrlStyle,
wxDefaultValidator);
aliasConfigs=new GroupedConfigItemsPanel("Alias");
aliasConfigs->Create(this,WINDOW_ID_TEXTCTRL_CONFIGVALUE,wxDefaultPosition,wxDefaultSize);
configKey=globalStatistics.AutomaticAliasConfigKey();
aliasConfigs->AddBoolean("Use Automatic Aliasing During Log Processing",
configKey,
false);
configKey="/tmp/aliasfilter";
aliasConfigs->Add("Alias List Player Filter",
configKey,
"",
-1);
playerCache->SetFilterCallBack(FilterNameCallBack);
RefreshAliasTree();
return (true);
}
void AliasEditorPanel::OnResize(wxSizeEvent &event)
{
wxSize itemSize;
int playerCacheWidth;
int playerCacheHeight;
int panelWidth;
int panelHeight;
int aliasWidth;
int aliasHeight;
int aliasConfigsHeight;
int aliasConfigsWidth;
wxString msg;
itemSize=GetSize();
panelWidth=itemSize.GetWidth();
panelHeight=itemSize.GetHeight();
playerCacheWidth=(panelWidth*3)/5;
playerCacheHeight=panelHeight;
aliasWidth=panelWidth-playerCacheWidth;
aliasHeight=panelHeight;
if (aliasList!=NULL)
{
aliasConfigsHeight=20;
aliasConfigsWidth=panelWidth;
aliasConfigs->SetSize(0,0,aliasConfigsWidth,aliasConfigsHeight);
itemSize=aliasConfigs->GetSize();
aliasConfigsHeight=itemSize.GetHeight()+20;
aliasConfigsHeight=aliasConfigs->PreferredHeight();
aliasHeight-=aliasConfigsHeight;
playerCacheHeight-=aliasConfigsHeight;
aliasConfigs->SetSize(0,0,aliasConfigsWidth,aliasConfigsHeight);
aliasList->SetSize(0,aliasConfigsHeight,aliasWidth,aliasHeight);
playerCache->SetSize(aliasWidth,aliasConfigsHeight,playerCacheWidth,playerCacheHeight);
}
}
wxTreeItemId AliasEditorPanel::AddPlayerToTree(
wxTreeItemId &parentItem,
wxString &guid,
wxString &name)
{
wxString playerString;
wxString foundPlayerString;
wxTreeItemId childItem;
wxTreeItemIdValue cookie;
bool found=false;
playerString.Printf("(%s) %s",
guid.GetData(),
name.GetData());
found=false;
childItem=aliasList->GetFirstChild(parentItem,cookie);
while (childItem.IsOk())
{
foundPlayerString=aliasList->GetItemText(childItem);
if (foundPlayerString.Cmp(playerString)==0)
{
found=true;
break;
}
childItem=aliasList->GetNextChild(parentItem,cookie);
}
if (!found)
{
childItem=aliasList->AppendItem(parentItem,playerString);
}
return (childItem);
}
void AliasEditorPanel::AddAlias(AliasListEntry &aliasEntry)
{
wxTreeItemId rootItem;
wxTreeItemId parentItem;
wxTreeItemId childItem;
rootItem=aliasList->GetRootItem();
parentItem=AddPlayerToTree( rootItem,
aliasEntry.primaryGUID,
aliasEntry.primaryName);
childItem=AddPlayerToTree( parentItem,
aliasEntry.aliasGUID,
aliasEntry.aliasName);
aliasList->Expand(rootItem);
}
void AliasEditorPanel::RefreshAliasTree()
{
AliasListEntry aliasEntry;
int aliasCount;
int aliasIndex;
wxTreeItemId rootItem;
wxString rootText="Alias List";
wxString decolouredAlias;
wxString decolouredName;
bool dontFilter;
aliasList->Hide();
aliasList->DeleteAllItems();
rootItem=aliasList->AddRoot(rootText);
aliasCount=globalStatistics.aliasList.GetCount();
for (aliasIndex=0;aliasIndex<aliasCount;aliasIndex++)
{
aliasEntry=globalStatistics.aliasList.Item(aliasIndex);
decolouredAlias=aliasEntry.aliasName;
decolouredName=aliasEntry.primaryName;
decolouredAlias=DecolouriseName(decolouredAlias.MakeLower());
decolouredName=DecolouriseName(decolouredName.MakeLower());
dontFilter=true;
if (aliasFilter.Length()>0)
{
dontFilter=((decolouredAlias.Find(aliasFilter)>=0) ||
(decolouredName.Find(aliasFilter)>=0));
}
if (dontFilter)
{
AddAlias(aliasEntry);
}
}
aliasList->Expand(rootItem);
aliasList->Show();
}
void AliasEditorPanel::GetShownPlayers(wxArrayInt &shownPlayers)
{
playerCache->GetShownPlayers(shownPlayers);
}
void AliasEditorPanel::OnAliasRightClick(wxTreeEvent &event)
{
wxString msg;
wxTreeItemId rootItem;
wxTreeItemId parentItem;
wxTreeItemId clickedItem;
wxMenu popupMenu(_T(""));
wxString menuItem;
wxString parentString;
wxString childString;
// What have we right clicked on - parent or child?
rootItem=aliasList->GetRootItem();
clickedItem=event.GetItem();
if (clickedItem!=rootItem)
{
parentItem=aliasList->GetItemParent(clickedItem);
if (parentItem==rootItem)
{
parentString=aliasList->GetItemText(clickedItem);
// Clicked on a parent
menuItem="Delete All Alias Entries for "+parentString;
popupMenu.Append(ALIAS_POPUP_DELETE_PARENT,menuItem);
}
else
{
// Clicked on a child
childString=aliasList->GetItemText(clickedItem);
parentString=aliasList->GetItemText(parentItem);
menuItem="Delete Alias Entry "+childString;
popupMenu.Append(ALIAS_POPUP_DELETE_CHILD,menuItem);
menuItem="Make "+childString+" the new parent";
popupMenu.Append(ALIAS_POPUP_REPARENT,menuItem);
}
popupMenu.Append(ALIAS_POPUP_CANCEL,_T("Cancel"));
PopupMenu(&popupMenu);
}
}
void AliasEditorPanel::OnPlayerRightClick(wxListEvent &event)
{
wxString msg;
wxString menuItem;
wxMenu popupMenu(_T(""));
// Right clicked on an item in the Player Cache
menuItem="Create New Alias";
popupMenu.Append(PLAYER_POPUP_NEW_ALIAS,menuItem);
menuItem="Add To Alias";
popupMenu.Append(PLAYER_POPUP_ADD_ALIAS,menuItem);
popupMenu.Append(ALIAS_POPUP_CANCEL,_T("Cancel"));
PopupMenu(&popupMenu);
}
void AliasEditorPanel::AliasItemSplit(wxTreeItemId &treeItem,AliasListEntry &aliasEntry)
{
wxString combinedText;
wxTreeItemId rootItem;
wxTreeItemId parentItem;
wxTreeItemId childItem;
wxString guid;
rootItem=aliasList->GetRootItem();
parentItem=aliasList->GetItemParent(treeItem);
if (parentItem!=rootItem)
{
childItem=treeItem;
}
else
{
parentItem=treeItem;
}
if (childItem.IsOk())
{
combinedText=aliasList->GetItemText(childItem);
aliasEntry.aliasGUID=combinedText.BeforeFirst(' ');
aliasEntry.aliasGUID=aliasEntry.aliasGUID.AfterFirst('(');
aliasEntry.aliasGUID=aliasEntry.aliasGUID.BeforeLast(')');
aliasEntry.aliasName=combinedText.AfterFirst(' ');
}
if (parentItem.IsOk())
{
combinedText=aliasList->GetItemText(parentItem);
aliasEntry.primaryGUID=combinedText.BeforeFirst(' ');
aliasEntry.primaryGUID=aliasEntry.primaryGUID.AfterFirst('(');
aliasEntry.primaryGUID=aliasEntry.primaryGUID.BeforeLast(')');
aliasEntry.primaryName=combinedText.AfterFirst(' ');
}
}
void AliasEditorPanel::DeleteAlias(wxTreeItemId &parentItem,
wxTreeItemId &childItem)
{
int childCount;
AliasListEntry aliasEntry;
wxString msg;
AliasItemSplit(childItem,aliasEntry);
aliasList->Delete(childItem);
childCount=aliasList->GetChildrenCount(parentItem);
if (childCount==0)
{
// No children - so delete parent
aliasList->Delete(parentItem);
}
globalStatistics.DeleteAlias(aliasEntry);
}
void AliasEditorPanel::AddCacheToParent(wxTreeItemId &parentItem,
PlayerCacheEntry &cacheEntry)
{
AliasListEntry aliasEntry;
AliasItemSplit(parentItem,aliasEntry);
aliasEntry.aliasGUID=cacheEntry.guid;
aliasEntry.aliasName=cacheEntry.name;
AddAlias(aliasEntry);
globalStatistics.AddAlias(aliasEntry);
}
void AliasEditorPanel::AddAliasTree(wxTreeItemId &parentItem)
{
wxTreeItemId childItem;
wxTreeItemIdValue cookie;
AliasListEntry aliasEntry;
STATSGEN_DEBUG_FUNCTION_START("AliasEditorPanel","AddAliasTree")
childItem=aliasList->GetFirstChild(parentItem,cookie);
while (childItem.IsOk())
{
STATSGEN_DEBUG(DEBUG_ALWAYS,"Adding alias to global area")
AliasItemSplit(childItem,aliasEntry);
globalStatistics.AddAlias(aliasEntry);
childItem=aliasList->GetNextChild(parentItem,cookie);
}
STATSGEN_DEBUG_FUNCTION_END
}
void AliasEditorPanel::OnPopupMenu(wxCommandEvent &event)
{
wxString msg;
int id;
wxArrayInt selectedPlayers;
wxTreeItemId selectedAlias;
wxTreeItemId parentItem;
wxTreeItemId childItem;
wxTreeItemId rootItem;
wxTreeItemIdValue cookie;
PlayerCacheEntry cacheEntry;
int cacheCount;
int cacheIndex;
int selectedIndex;
STATSGEN_DEBUG_FUNCTION_START("AliasEditorPanel","OnPopupMenu")
int playerIndex;
AliasListEntry aliasEntry;
wxString parentString;
wxString childString;
id=event.GetId();
msg.Printf("AliasEditorPanel::OnPopupMenu():Event Received %d",id);
playerCache->GetSelectedPlayers(selectedPlayers);
cacheCount=selectedPlayers.GetCount();
selectedAlias=aliasList->GetSelection();
rootItem=aliasList->GetRootItem();
switch (event.GetId())
{
case ALIAS_POPUP_DELETE_PARENT:
STATSGEN_DEBUG(DEBUG_ALWAYS,"Delete Parent")
parentItem=selectedAlias;
childItem=aliasList->GetFirstChild(parentItem,cookie);
while (childItem.IsOk())
{
AliasItemSplit(childItem,aliasEntry);
globalStatistics.DeleteAlias(aliasEntry);
childItem=aliasList->GetNextChild(parentItem,cookie);
}
aliasList->DeleteChildren(parentItem);
aliasList->Delete(parentItem);
playerCache->ApplyFilter();
break;
case ALIAS_POPUP_DELETE_CHILD:
STATSGEN_DEBUG(DEBUG_ALWAYS,"Delete Child")
childItem=selectedAlias;
parentItem=aliasList->GetItemParent(childItem);
DeleteAlias(parentItem,childItem);
playerCache->ApplyFilter();
break;
case ALIAS_POPUP_REPARENT:
STATSGEN_DEBUG(DEBUG_ALWAYS,"Reparent")
childItem=selectedAlias;
parentItem=aliasList->GetItemParent(childItem);
// Let us delete aliases from the global area first
childItem=aliasList->GetFirstChild(parentItem,cookie);
while (childItem.IsOk())
{
AliasItemSplit(childItem,aliasEntry);
globalStatistics.DeleteAlias(aliasEntry);
childItem=aliasList->GetNextChild(parentItem,cookie);
}
// Now Reparent
childItem=selectedAlias;
parentString=aliasList->GetItemText(parentItem);
childString=aliasList->GetItemText(childItem);
aliasList->SetItemText(parentItem,childString);
aliasList->SetItemText(childItem,parentString);
// Now Add New Alias entries to global area
AddAliasTree(parentItem);
playerCache->ApplyFilter();
break;
case PLAYER_POPUP_NEW_ALIAS:
STATSGEN_DEBUG(DEBUG_ALWAYS,"New Alias")
if (cacheCount>1)
{
// Need at least 2 entries selected to create a new alias
// First entry will be the parent
playerIndex=selectedPlayers.Item(0);
cacheEntry=globalStatistics.playerCache.Item(playerIndex);
// Add the root item to the tree
parentItem=AddPlayerToTree( rootItem,
cacheEntry.guid,
cacheEntry.name);
// Now add all the children
for (cacheIndex=1;cacheIndex<cacheCount;cacheIndex++)
{
playerIndex=selectedPlayers.Item(cacheIndex);
cacheEntry=globalStatistics.playerCache.Item(playerIndex);
AddCacheToParent(parentItem,cacheEntry);
}
playerCache->ApplyFilter();
}
break;
case PLAYER_POPUP_ADD_ALIAS:
STATSGEN_DEBUG(DEBUG_ALWAYS,"Add Alias")
childItem=selectedAlias;
if (childItem.IsOk())
{
parentItem=aliasList->GetItemParent(childItem);
if (parentItem==rootItem)
{
parentItem=childItem;
}
for (cacheIndex=0;cacheIndex<cacheCount;cacheIndex++)
{
playerIndex=selectedPlayers.Item(cacheIndex);
cacheEntry=globalStatistics.playerCache.Item(playerIndex);
AddCacheToParent(parentItem,cacheEntry);
}
playerCache->ApplyFilter();
}
break;
}
STATSGEN_DEBUG_FUNCTION_END
}
bool AliasEditorPanel::FilterNameCallBack(wxString &name)
{
bool retVal=false;
AliasListEntry aliasEntry;
int aliasIndex;
int aliasCount;
aliasCount=globalStatistics.aliasList.GetCount();
for (aliasIndex=0;aliasIndex<aliasCount;aliasIndex++)
{
aliasEntry=globalStatistics.aliasList.Item(aliasIndex);
if ((name.Cmp(aliasEntry.primaryName)==0) ||
(name.Cmp(aliasEntry.aliasName)==0))
{
retVal=true;
break;
}
}
return (retVal);
}
void AliasEditorPanel::OnTextChange(wxCommandEvent &event)
{
wxString configKey;
wxString configValue;
configKey="/tmp/aliasfilter";
globalStatistics.configData.ReadTextValue(configKey,&configValue);
aliasFilter=configValue;
RefreshAliasTree();
}