-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathJambaTeam.lua
1870 lines (1738 loc) · 67.7 KB
/
JambaTeam.lua
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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--[[
Jamba - Jafula's Awesome Multi-Boxer Assistant
Copyright 2008 - 2018 Michael "Jafula" Miller
License: The MIT License
]]--
-- Create the addon using AceAddon-3.0 and embed some libraries.
local AJM = LibStub( "AceAddon-3.0" ):NewAddon(
"JambaTeam",
"JambaModule-1.0",
"AceConsole-3.0",
"AceEvent-3.0",
"AceHook-3.0",
"AceTimer-3.0"
)
-- Load libraries.
local JambaUtilities = LibStub:GetLibrary( "JambaUtilities-1.0" )
local JambaHelperSettings = LibStub:GetLibrary( "JambaHelperSettings-1.0" )
-- Constants required by JambaModule and Locale for this module.
AJM.moduleName = "Jamba-Team"
AJM.settingsDatabaseName = "JambaTeamProfileDB"
AJM.chatCommand = "jamba-team"
local L = LibStub( "AceLocale-3.0" ):GetLocale( AJM.moduleName )
AJM.parentDisplayName = L["Team"]
AJM.moduleDisplayName = L["Core: Team"]
-- Jamba key bindings.
BINDING_HEADER_JAMBATEAM = L["Jamba-Team"]
BINDING_NAME_JAMBATEAMINVITE = L["Invite Team To Group"]
BINDING_NAME_JAMBATEAMDISBAND = L["Disband Group"]
-- Settings - the values to store and their defaults for the settings database.
AJM.settings = {
profile = {
master = "",
teamList = {},
characterOnline = {},
characterClass = {},
focusChangeSetMaster = false,
masterChangePromoteLeader = false,
inviteAcceptTeam = true,
inviteAcceptFriends = false,
inviteAcceptBNFriends = false,
inviteAcceptGuild = false,
inviteDeclineStrangers = false,
inviteConvertToRaid = true,
inviteSetAllAssistant = false,
lootSetAutomatically = false,
lootSetFreeForAll = true,
lootSetGroupLoot = false,
lootSetPersLooter = false,
-- lootSlavesOptOutOfLoot = false,
-- lootToGroupIfStrangerPresent = true,
-- lootToGroupFriendsAreNotStrangers = false,
masterChangeClickToMove = false,
},
}
-- Configuration.
function AJM:GetConfiguration()
local configuration = {
name = AJM.moduleDisplayName,
handler = AJM,
type = "group",
get = "JambaConfigurationGetSetting",
set = "JambaConfigurationSetSetting",
args = {
add = {
type = "input",
name = L["Add"],
desc = L["Add a member to the team list."],
usage = "/jamba-team add <name>",
get = false,
set = "AddMemberCommand",
},
remove = {
type = "input",
name = L["Remove"],
desc = L["Remove a member from the team list."],
usage = "/jamba-team remove <name>",
get = false,
set = "RemoveMemberCommand",
},
master = {
type = "input",
name = L["Master"],
desc = L["Set the master character."],
usage = "/jamba-team master <name> <tag>",
get = false,
set = "CommandSetMaster",
},
iammaster = {
type = "input",
name = L["I Am Master"],
desc = L["Set this character to be the master character."],
usage = "/jamba-team iammaster <tag>",
get = false,
set = "CommandIAmMaster",
},
invite = {
type = "input",
name = L["Invite"],
desc = L["Invite team members to a party with or without a <tag>."],
usage = "/jamba-team invite",
get = false,
set = "InviteTeamToParty",
},
inviteTag = {
type = "input",
name = L["Invites"],
desc = L["Invite team members to a <tag> party."],
usage = "/jamba-team inviteTag <tag>",
get = false,
set = "InviteTeamToPartys",
},
disband = {
type = "input",
name = L["Disband"],
desc = L["Disband all team members from their parties."],
usage = "/jamba-team disband",
get = false,
set = "DisbandTeamFromParty",
},
addparty = {
type = "input",
name = L["Add Party Members"],
desc = L["Add members in the current party to the team."],
usage = "/jamba-team addparty",
get = false,
set = "AddPartyMembers",
},
removeall = {
type = "input",
name = L["Remove All Members"],
desc = L["Remove all members from the team."],
usage = "/jamba-team removeall",
get = false,
set = "DoRemoveAllMembersFromTeam",
},
setalloffline = {
type = "input",
name = L["Set Team OffLine"],
desc = L["Set All Team Members OffLine"],
usage = "/jamba-team setalloffline",
get = false,
set = "setAllMembersOffline",
},
setallonline = {
type = "input",
name = L["Set Team OnLine"],
desc = L["Set All Team Members OnLine"],
usage = "/jamba-team setallonline",
get = false,
set = "setAllMembersOnline",
},
push = {
type = "input",
name = L["Push Settings"],
desc = L["Push the team settings to all characters in the team."],
usage = "/jamba-team push",
get = false,
set = "JambaSendSettings",
},
},
}
return configuration
end
-- Create the character online table and ordered characters tables.
AJM.orderedCharacters = {}
AJM.orderedCharactersOnline = {}
-------------------------------------------------------------------------------------------------------------
-- Command this module sends.
-------------------------------------------------------------------------------------------------------------
AJM.COMMAND_TAG_PARTY = "JambaTeamTagGroup"
-- Leave party command.
AJM.COMMAND_LEAVE_PARTY = "JambaTeamLeaveGroup"
-- Set master command.
AJM.COMMAND_SET_MASTER = "JambaTeamSetMaster"
-- Set Minion OffLine
AJM.COMMAND_SET_OFFLINE = "JambaTeamSetOffline"
AJM.COMMAND_SET_ONLINE = "JambaTeamSetOnline"
-------------------------------------------------------------------------------------------------------------
-- Messages module sends.
-------------------------------------------------------------------------------------------------------------
-- Master changed, parameter: new master name.
AJM.MESSAGE_TEAM_MASTER_CHANGED = "JambaTeamMasterChanged"
-- Team order changed, no parameters.
AJM.MESSAGE_TEAM_ORDER_CHANGED = "JambaTeamOrderChanged"
-- Character has been added, parameter: characterName.
AJM.MESSAGE_TEAM_CHARACTER_ADDED = "JambaTeamCharacterAdded"
-- Character has been removed, parameter: characterName.
AJM.MESSAGE_TEAM_CHARACTER_REMOVED = "JambaTeamCharacterRemoved"
-- character online
AJM.MESSAGE_CHARACTER_ONLINE = "JmbTmChrOn"
-- character offline
AJM.MESSAGE_CHARACTER_OFFLINE = "JmbTmChrOf"
-------------------------------------------------------------------------------------------------------------
-- Constants used by module.
-------------------------------------------------------------------------------------------------------------
AJM.PARTY_LOOT_FREEFORALL = "freeforall"
AJM.PARTY_LOOT_GROUP = "group"
AJM.PARTY_LOOT_PERSONAL = "personalloot"
-------------------------------------------------------------------------------------------------------------
-- Settings Dialogs.
-------------------------------------------------------------------------------------------------------------
local function SettingsCreateTeamList()
-- Position and size constants.
local teamListButtonControlWidth = 95
local inviteDisbandButtonWidth = 105
local setMasterButtonWidth = 120
local buttonHeight = JambaHelperSettings:GetButtonHeight()
local top = JambaHelperSettings:TopOfSettings()
local left = JambaHelperSettings:LeftOfSettings()
local headingHeight = JambaHelperSettings:HeadingHeight()
local headingWidth = JambaHelperSettings:HeadingWidth( false )
local horizontalSpacing = JambaHelperSettings:GetHorizontalSpacing()
local verticalSpacing = JambaHelperSettings:GetVerticalSpacing()
local teamListWidth = headingWidth - teamListButtonControlWidth - horizontalSpacing
local rightOfList = left + teamListWidth + horizontalSpacing
local topOfList = top - headingHeight
-- Team list internal variables (do not change).
AJM.settingsControl.teamListHighlightRow = 1
AJM.settingsControl.teamListOffset = 1
-- Create a heading.
JambaHelperSettings:CreateHeading( AJM.settingsControl, L["Team List"], top, false )
-- Create a team list frame.
local list = {}
list.listFrameName = "JambaTeamSettingsTeamListFrame"
list.parentFrame = AJM.settingsControl.widgetSettings.content
list.listTop = topOfList
list.listLeft = left
list.listWidth = teamListWidth
list.rowHeight = 25
list.rowsToDisplay = 5
list.columnsToDisplay = 2
list.columnInformation = {}
list.columnInformation[1] = {}
list.columnInformation[1].width = 70
list.columnInformation[1].alignment = "LEFT"
list.columnInformation[2] = {}
list.columnInformation[2].width = 30
list.columnInformation[2].alignment = "LEFT"
list.scrollRefreshCallback = AJM.SettingsTeamListScrollRefresh
list.rowClickCallback = AJM.SettingsTeamListRowClick
AJM.settingsControl.teamList = list
JambaHelperSettings:CreateScrollList( AJM.settingsControl.teamList )
-- Position and size constants (once list height is known).
local bottomOfList = topOfList - list.listHeight - verticalSpacing
local bottomOfSection = bottomOfList - buttonHeight - verticalSpacing
-- Create buttons.
AJM.settingsControl.teamListButtonMoveUp = JambaHelperSettings:CreateButton(
AJM.settingsControl,
teamListButtonControlWidth,
rightOfList,
topOfList,
L["Up"],
AJM.SettingsMoveUpClick,
L["Move the character up a place in the team list"]
)
AJM.settingsControl.teamListButtonMoveDown = JambaHelperSettings:CreateButton(
AJM.settingsControl,
teamListButtonControlWidth,
rightOfList,
topOfList - verticalSpacing - buttonHeight,
L["Down"],
AJM.SettingsMoveDownClick,
L["Move the character down a place in the team list"]
)
AJM.settingsControl.teamListButtonAdd = JambaHelperSettings:CreateButton(
AJM.settingsControl,
teamListButtonControlWidth,
rightOfList,
topOfList - verticalSpacing - buttonHeight - verticalSpacing - buttonHeight,
L["Add"],
AJM.SettingsAddClick,
L["Adds a member to the team list\nYou can Use:\nCharacterName\nCharacterName-realm\n@Target\n@Mouseover"]
)
AJM.settingsControl.teamListButtonParty = JambaHelperSettings:CreateButton(
AJM.settingsControl,
teamListButtonControlWidth,
rightOfList,
topOfList - verticalSpacing - buttonHeight - verticalSpacing - buttonHeight - verticalSpacing - buttonHeight,
L["Add Party"],
AJM.SettingsAddPartyClick,
L["Adds all Party/Raid members to the team list"]
)
AJM.settingsControl.teamListButtonRemove = JambaHelperSettings:CreateButton(
AJM.settingsControl,
teamListButtonControlWidth,
rightOfList,
topOfList - verticalSpacing - buttonHeight - verticalSpacing - buttonHeight - verticalSpacing - buttonHeight - verticalSpacing - buttonHeight,
L["Remove"],
AJM.SettingsRemoveClick,
L["Removes Members from the team list"]
)
AJM.settingsControl.teamListButtonSetMaster = JambaHelperSettings:CreateButton(
AJM.settingsControl,
setMasterButtonWidth,
left + inviteDisbandButtonWidth + horizontalSpacing + inviteDisbandButtonWidth + horizontalSpacing,
bottomOfList,
L["Set Master"],
AJM.SettingsSetMasterClick,
L["Set the selected member to be the master of the group"]
)
AJM.settingsControl.teamListButtonInvite = JambaHelperSettings:CreateButton(
AJM.settingsControl,
inviteDisbandButtonWidth,
left,
bottomOfList,
L["Invite"],
AJM.SettingsInviteClick,
L["Invites all Team members online to a party or raid.\nThis can be set as a keyBinding"]
)
AJM.settingsControl.teamListButtonDisband = JambaHelperSettings:CreateButton(
AJM.settingsControl,
inviteDisbandButtonWidth,
left + inviteDisbandButtonWidth + horizontalSpacing,
bottomOfList,
L["Disband"],
AJM.SettingsDisbandClick,
L["Asks all Team members to leave a party or raid.\nThis can be set as a keyBinding"]
)
return bottomOfSection
end
local function SettingsCreateMasterControl( top )
-- Get positions.
local checkBoxHeight = JambaHelperSettings:GetCheckBoxHeight()
local labelContinueHeight = JambaHelperSettings:GetContinueLabelHeight()
local left = JambaHelperSettings:LeftOfSettings()
local headingHeight = JambaHelperSettings:HeadingHeight()
local headingWidth = JambaHelperSettings:HeadingWidth( false )
local horizontalSpacing = JambaHelperSettings:GetHorizontalSpacing()
local verticalSpacing = JambaHelperSettings:GetVerticalSpacing()
local checkBoxWidth = (headingWidth - horizontalSpacing) / 2
local column1Left = left
local column2Left = left + checkBoxWidth + horizontalSpacing
local bottomOfSection = top - headingHeight - (checkBoxHeight * 2) - (verticalSpacing * 2)
-- Create a heading.
JambaHelperSettings:CreateHeading( AJM.settingsControl, L["Master Control"], top, false )
-- Create checkboxes.
AJM.settingsControl.masterControlCheckBoxFocusChange = JambaHelperSettings:CreateCheckBox(
AJM.settingsControl,
checkBoxWidth,
column1Left,
top - headingHeight,
L["Focus will set master toon."],
AJM.SettingsFocusChangeToggle,
L["The master will be the set from the focus target if a team member \n\nNote: All team members must be setting the focus."]
)
AJM.settingsControl.masterControlCheckBoxMasterChange = JambaHelperSettings:CreateCheckBox(
AJM.settingsControl,
checkBoxWidth,
column2Left,
top - headingHeight,
L["Promote Master to party leader."],
AJM.SettingsMasterChangeToggle,
L["Master will always be the party leader."]
)
AJM.settingsControl.masterControlCheckBoxMasterChangeClickToMove = JambaHelperSettings:CreateCheckBox(
AJM.settingsControl,
checkBoxWidth,
column1Left,
top - headingHeight - checkBoxHeight,
L["Sets click-to-move on Minions"],
AJM.SettingsMasterChangeClickToMoveToggle,
L["Auto activate click-to-move on Minions and deactivate on Master."]
)
return bottomOfSection
end
local function SettingsCreatePartyInvitationsControl( top )
-- Get positions.
local checkBoxHeight = JambaHelperSettings:GetCheckBoxHeight()
local left = JambaHelperSettings:LeftOfSettings()
local headingHeight = JambaHelperSettings:HeadingHeight()
local headingWidth = JambaHelperSettings:HeadingWidth( false )
local horizontalSpacing = JambaHelperSettings:GetHorizontalSpacing()
local verticalSpacing = JambaHelperSettings:GetVerticalSpacing()
local checkBoxWidth = (headingWidth - horizontalSpacing) / 2
local column1Left = left
local column2Left = left + checkBoxWidth + horizontalSpacing
local bottomOfSection = top - headingHeight - (checkBoxHeight * 4) - (verticalSpacing * 2)
-- Create a heading.
JambaHelperSettings:CreateHeading( AJM.settingsControl, L["Party Invitations Control"], top, false )
-- Create checkboxes.
AJM.settingsControl.partyInviteControlCheckBoxConvertToRaid = JambaHelperSettings:CreateCheckBox(
AJM.settingsControl,
checkBoxWidth,
column1Left,
top - headingHeight,
L["Auto Convert To Raid"],
AJM.SettingsinviteConvertToRaidToggle,
L["Auto Convert To Raid if team is over five character's"]
)
AJM.settingsControl.partyInviteControlCheckBoxSetAllAssist = JambaHelperSettings:CreateCheckBox(
AJM.settingsControl,
checkBoxWidth,
column2Left,
top - headingHeight,
L["Auto Set All Assistant"],
AJM.SettingsinviteSetAllAssistToggle,
L["Auto Set all raid Member's to Assistant"]
)
AJM.settingsControl.partyInviteControlCheckBoxAcceptMembers = JambaHelperSettings:CreateCheckBox(
AJM.settingsControl,
checkBoxWidth,
column1Left,
top - headingHeight - checkBoxHeight,
L["Accept from team."],
AJM.SettingsAcceptInviteMembersToggle,
L["Auto Accept invites from the team."]
)
AJM.settingsControl.partyInviteControlCheckBoxAcceptFriends = JambaHelperSettings:CreateCheckBox(
AJM.settingsControl,
checkBoxWidth,
column2Left,
top - headingHeight - checkBoxHeight,
L["Accept from friends."],
AJM.SettingsAcceptInviteFriendsToggle,
L["Auto Accept invites from your friends list."]
)
AJM.settingsControl.partyInviteControlCheckBoxAcceptBNFriends = JambaHelperSettings:CreateCheckBox(
AJM.settingsControl,
checkBoxWidth,
column1Left,
top - headingHeight - checkBoxHeight - checkBoxHeight,
L["Accept From BattleTag Friends."],
AJM.SettingsAcceptInviteBNFriendsToggle,
L["Auto Accept invites from your BatteTag or RealID Friends list."]
)
AJM.settingsControl.partyInviteControlCheckBoxAcceptGuild = JambaHelperSettings:CreateCheckBox(
AJM.settingsControl,
checkBoxWidth,
column2Left,
top - headingHeight - checkBoxHeight - checkBoxHeight,
L["Accept from guild."],
AJM.SettingsAcceptInviteGuildToggle,
L["Auto Accept invites from your Guild."]
)
AJM.settingsControl.partyInviteControlCheckBoxDeclineStrangers = JambaHelperSettings:CreateCheckBox(
AJM.settingsControl,
checkBoxWidth,
column1Left,
top - headingHeight - checkBoxHeight - checkBoxHeight - checkBoxHeight,
L["Decline from strangers."],
AJM.SettingsDeclineInviteStrangersToggle,
L["Decline invites from anyone else."]
)
return bottomOfSection
end
local function SettingsCreatePartyLootControl( top )
-- Get positions.
local checkBoxHeight = JambaHelperSettings:GetCheckBoxHeight()
local radioBoxHeight = JambaHelperSettings:GetRadioBoxHeight()
local labelContinueHeight = JambaHelperSettings:GetContinueLabelHeight()
local left = JambaHelperSettings:LeftOfSettings()
local headingHeight = JambaHelperSettings:HeadingHeight()
local headingWidth = JambaHelperSettings:HeadingWidth( false )
local horizontalSpacing = JambaHelperSettings:GetHorizontalSpacing()
local verticalSpacing = JambaHelperSettings:GetVerticalSpacing()
local checkBoxWidth = (headingWidth - horizontalSpacing) / 2
local indentContinueLabel = horizontalSpacing * 13
local column1Left = left
local column2Left = left + checkBoxWidth + horizontalSpacing
local bottomOfSection = top - headingHeight - checkBoxHeight - radioBoxHeight - verticalSpacing - checkBoxHeight - checkBoxHeight - checkBoxHeight - (verticalSpacing * 4) - labelContinueHeight - checkBoxHeight
-- Create a heading.
JambaHelperSettings:CreateHeading( AJM.settingsControl, L["Party Loot Control (Instances)"], top, false )
-- Create checkboxes.
AJM.settingsControl.partyLootControlCheckBoxSetLootMethod = JambaHelperSettings:CreateCheckBox(
AJM.settingsControl,
headingWidth,
column1Left,
top - headingHeight,
L["Set the Loot Method to..."],
AJM.SettingsSetLootMethodToggle,
L["Automatically set the Loot Method to\nFree For All\nPrsonal Loot\nGroup Loot"]
)
AJM.settingsControl.partyLootControlCheckBoxSetFFA = JambaHelperSettings:CreateCheckBox(
AJM.settingsControl,
checkBoxWidth,
column1Left,
top - headingHeight - checkBoxHeight - verticalSpacing,
L["Free For All"],
AJM.SettingsSetFFALootToggle
)
AJM.settingsControl.partyLootControlCheckBoxSetFFA:SetType( "radio" )
AJM.settingsControl.partyLootControlCheckBoxSetPersLooter = JambaHelperSettings:CreateCheckBox(
AJM.settingsControl,
checkBoxWidth,
column2Left,
top - headingHeight - checkBoxHeight,
L["Personal Loot"],
AJM.SettingsSetPersLooterToggle
)
AJM.settingsControl.partyLootControlCheckBoxSetPersLooter:SetType( "radio" )
AJM.settingsControl.partyLootControlCheckBoxSetGroupLoot = JambaHelperSettings:CreateCheckBox(
AJM.settingsControl,
headingWidth,
column1Left,
top - headingHeight - checkBoxHeight - radioBoxHeight,
L["Set to Group Loot "],
AJM.SettingsSetGroupLootTogggle,
L["Set loot to Group Loot."]
)
AJM.settingsControl.partyLootControlCheckBoxSetGroupLoot:SetType( "radio" )
--[[
AJM.settingsControl.partyLootControlCheckBoxSetOptOutOfLoot = JambaHelperSettings:CreateCheckBox(
AJM.settingsControl,
headingWidth,
column1Left,
top - headingHeight - checkBoxHeight - radioBoxHeight - checkBoxHeight - checkBoxHeight - checkBoxHeight,
L["Minions Opt Out of Loot"],
AJM.SettingsSetMinionsOptOutToggle,
L["Minions Don't need loot."]
)
--]]
return bottomOfSection
end
local function SettingsCreate()
AJM.settingsControl = {}
-- Create the settings panel.
JambaHelperSettings:CreateSettings(
AJM.settingsControl,
AJM.moduleDisplayName,
AJM.parentDisplayName,
AJM.SettingsPushSettingsClick
)
-- Create the team list controls.
local bottomOfTeamList = SettingsCreateTeamList()
-- Create the master control controls.
local bottomOfMasterControl = SettingsCreateMasterControl( bottomOfTeamList )
-- Create the party invitation controls.
local bottomOfPartyInvitationControl = SettingsCreatePartyInvitationsControl( bottomOfMasterControl )
-- Create the party loot control controls.
local bottomOfPartyLootControl = SettingsCreatePartyLootControl( bottomOfPartyInvitationControl )
AJM.settingsControl.widgetSettings.content:SetHeight( - bottomOfPartyInvitationControl )
-- Help
local helpTable = {}
JambaHelperSettings:CreateHelp( AJM.settingsControl, helpTable, AJM:GetConfiguration() )
end
-------------------------------------------------------------------------------------------------------------
-- Popup Dialogs.
-------------------------------------------------------------------------------------------------------------
-- Initialize Popup Dialogs.
local function InitializePopupDialogs()
-- Ask the name of the character to add as a new member.
StaticPopupDialogs["JAMBATEAM_ASK_CHARACTER_NAME"] = {
text = L["Enter character to add in name-server format:"],
button1 = ACCEPT,
button2 = CANCEL,
hasEditBox = 1,
timeout = 0,
whileDead = 1,
hideOnEscape = 1,
OnShow = function( self )
self.editBox:SetText("")
self.button1:Disable()
self.editBox:SetFocus()
end,
OnAccept = function( self )
AJM:AddMemberGUI( self.editBox:GetText() )
end,
EditBoxOnTextChanged = function( self )
if not self:GetText() or self:GetText():trim() == "" then
self:GetParent().button1:Disable()
else
self:GetParent().button1:Enable()
end
end,
EditBoxOnEnterPressed = function( self )
if self:GetParent().button1:IsEnabled() then
AJM:AddMemberGUI( self:GetText() )
end
self:GetParent():Hide()
end,
}
-- Confirm removing characters from member list.
StaticPopupDialogs["JAMBATEAM_CONFIRM_REMOVE_CHARACTER"] = {
text = L["Are you sure you wish to remove %s from the team list?"],
button1 = ACCEPT,
button2 = CANCEL,
timeout = 0,
whileDead = 1,
hideOnEscape = 1,
OnAccept = function( self )
AJM:RemoveMemberGUI()
end,
}
-- Master can not be set offline PopUp Box.
StaticPopupDialogs["MasterCanNotBeSetOffline"] = {
text = L["Master Can not be Set OffLine"],
button1 = OKAY,
timeout = 0,
whileDead = 1,
hideOnEscape = 1,
}
-- OFFLINE TEST STUFF.
StaticPopupDialogs["SET_OFFLINE_WIP"] = {
text = L["WIP: This Button Does absolutely nothing at all, Unless you untick Use team List Offline Button in Core:communications Under Advanced. Report bugs to to me -EBONY"],
button1 = OKAY,
--button2 = CANCEL,
timeout = 0,
whileDead = 1,
hideOnEscape = 1,
OnAccept = function( self )
--AJM:RemoveMemberGUI() stuff goes here.
end,
}
end
-------------------------------------------------------------------------------------------------------------
-- Team management.
-------------------------------------------------------------------------------------------------------------
local function TeamList()
return pairs( AJM.db.teamList )
end
local function Offline()
return pairs( AJM.db.characterOnline )
end
local function characterClass()
return pairs( AJM.db.characterClass )
end
local function setClass()
for characterName, position in pairs( AJM.db.teamList ) do
local class, classFileName, classIndex = UnitClass( Ambiguate(characterName, "none") )
--AJM:Print("new", class, CharacterName )
if class ~= nil then
AJM.db.characterClass[characterName] = classFileName
end
end
end
-- Get the largest order number from the team list.
local function GetTeamListMaximumOrder()
local largestPosition = 0
for characterName, position in pairs( AJM.db.teamList ) do
if position > largestPosition then
largestPosition = position
end
end
return largestPosition
end
local function GetTeamListMaximumOrderOnline()
local totalMembersDisplayed = 0
for index, characterName in JambaApi.TeamListOrderedOnline() do
--if JambaApi.GetCharacterOnlineStatus( characterName ) == true then
totalMembersDisplayed = totalMembersDisplayed + 1
--end
end
return totalMembersDisplayed
end
local function IsCharacterInTeam( characterName )
local isMember = false
if AJM.db.teamList[characterName] then
isMember = true
end
if not isMember then
for fullCharacterName, position in pairs( AJM.db.teamList ) do
local matchDash = fullCharacterName:find( "-" )
if matchDash then
fullName = gsub(fullCharacterName, "%-[^|]+", "")
end
--AJM:Print('checking', checkCharacterName, 'vs', characterName)
if fullName == characterName then
--AJM:Print('match found')
isMember = true
break
end
end
end
--AJM:Print('returning', isMember)
return isMember
end
-- Get the master for this character.
local function GetMasterName()
return AJM.db.master
end
-- Return true if the character specified is in the master.
local function IsCharacterTheMaster( characterName )
local isTheMaster = false
if characterName == GetMasterName() then
isTheMaster = true
end
return isTheMaster
end
-- Set the master for AJM character; the master character must be online.
local function SetMaster( master )
-- Make sure a valid string value is supplied.
if (master ~= nil) and (master:trim() ~= "") then
-- The name must be capitalised i still like this or though its not needed.
--local character = JambaUtilities:Capitalise( master )
local character = JambaUtilities:AddRealmToNameIfMissing( master )
-- Only allow characters in the team list to be the master.
if IsCharacterInTeam( character ) == true then
-- Set the master.
AJM.db.master = character
-- Refresh the settings.
AJM:SettingsRefresh()
-- Send a message to any listeners that the master has changed.
AJM:SendMessage( AJM.MESSAGE_TEAM_MASTER_CHANGED, character )
else
-- Character not in team. Tell the team.
AJM:JambaSendMessageToTeam( AJM.characterName, L["A is not in my team list. I can not set them to be my master."]( character ), false )
end
end
end
-- Add a member to the member list.
local function AddMember( characterName )
local name
if characterName == "@Target" or characterName == "@target" or characterName == "@TARGET" then
local UnitIsPlayer = UnitIsPlayer("target")
if UnitIsPlayer == true then
local unitName = GetUnitName("target", true)
--AJM:Print("Target", unitName)
name = unitName
else
AJM:Print(L["No Target Or Target is not a Player"])
return
end
elseif characterName == "@Mouseover" or characterName == "@mouseover" or characterName == "@MOUSEOVER" then
local UnitIsPlayer = UnitIsPlayer("mouseover")
if UnitIsPlayer == true then
local unitName = GetUnitName("mouseover", true)
--AJM:Print("mouseover", unitName)
name = unitName
else
AJM:Print(L["No Target Or Target is not a Player"])
return
end
end
if name then
--AJM:Print ( "New", name )
local character = JambaUtilities:AddRealmToNameIfMissing( name )
if AJM.db.teamList[character] == nil then
-- Get the maximum order number.
local maxOrder = GetTeamListMaximumOrder()
-- Yes, add to the member list.
AJM.db.teamList[character] = maxOrder + 1
JambaPrivate.Team.SetTeamOnline()
--AJM.Print("teamList", character)
-- Send a message to any listeners that AJM character has been added.
AJM:SendMessage( AJM.MESSAGE_TEAM_CHARACTER_ADDED, character )
-- Refresh the settings.
AJM:SettingsRefresh()
end
else
-- Wow names are at least two characters.
if characterName ~= nil and characterName:trim() ~= "" and characterName:len() > 1 then
-- If the character is not already in the list...
local character = JambaUtilities:AddRealmToNameIfMissing( characterName )
if AJM.db.teamList[character] == nil then
-- Get the maximum order number.
local maxOrder = GetTeamListMaximumOrder()
-- Yes, add to the member list.
AJM.db.teamList[character] = maxOrder + 1
local class, classFileName, classIndex = UnitClass( characterName )
if class ~= nil then
--AJM:Print( classFileName )
AJM.db.characterClass[character] = classFileName
else
AJM.db.characterClass[character] = nil
end
JambaPrivate.Team.SetTeamOnline()
--AJM.Print("teamList", character)
-- Send a message to any listeners that AJM character has been added.
AJM:SendMessage( AJM.MESSAGE_TEAM_CHARACTER_ADDED, character )
-- Refresh the settings.
AJM:SettingsRefresh()
end
end
end
end
-- Add member from the command line.
function AJM:AddMemberCommand( info, parameters )
local characterName = parameters
-- Add the character.
AddMember( characterName )
end
-- Add all party members to the member list. does not worl cross rwalm todo
function AJM:AddPartyMembers()
--local numberPartyMembers = GetNumSubgroupMembers()
local numberPartyMembers = GetNumGroupMembers()
for iteratePartyMembers = numberPartyMembers, 1, -1 do
--AJM:Print("party/raid", numberPartyMembers, iteratePartyMembers)
local inRaid = IsInRaid()
if inRaid == true then
local partyMemberName, partyMemberRealm = UnitName( "raid"..iteratePartyMembers )
local character = JambaUtilities:AddRealmToNameIfNotNil( partyMemberName, partyMemberRealm )
if IsCharacterInTeam( character ) == false then
AddMember( character )
end
else
local partyMemberName, partyMemberRealm = UnitName( "party"..iteratePartyMembers )
local character = JambaUtilities:AddRealmToNameIfNotNil( partyMemberName, partyMemberRealm )
if IsCharacterInTeam( character ) == false then
AddMember( character )
end
end
end
end
-- Add a member to the member list.
function AJM:AddMemberGUI( value )
AddMember( value )
AJM:SettingsTeamListScrollRefresh()
end
-- Get the character name at a specific position.
local function GetCharacterNameAtOrderPosition( position )
local characterNameAtPosition = ""
for characterName, characterPosition in pairs( AJM.db.teamList ) do
if characterPosition == position then
characterNameAtPosition = characterName
break
end
end
return characterNameAtPosition
end
-- Get the position for a specific character.
local function GetPositionForCharacterName( findCharacterName )
local positionForCharacterName = 0
for characterName, characterPosition in pairs( AJM.db.teamList ) do
if characterName == findCharacterName then
positionForCharacterName = characterPosition
break
end
end
return positionForCharacterName
end
local function GetPositionForCharacterNameOnline( findCharacterName )
local positionForCharacterName = 0
for index, characterName in JambaApi.TeamListOrderedOnline() do
if characterName == findCharacterName then
--AJM:Print("found", characterName, index)
positionForCharacterName = index
--break
end
end
return positionForCharacterName
end
-- Swap character positions.
local function TeamListSwapCharacterPositions( position1, position2 )
-- Get characters at positions.
local character1 = GetCharacterNameAtOrderPosition( position1 )
local character2 = GetCharacterNameAtOrderPosition( position2 )
-- Swap the positions.
AJM.db.teamList[character1] = position2
AJM.db.teamList[character2] = position1
end
-- Makes sure that AJM character is a team member. Enables if previously not a member.
local function ConfirmCharacterIsInTeam()
if not IsCharacterInTeam( AJM.characterName ) then
-- Then add as a member.
AddMember( AJM.characterName )
end
end
-- Make sure there is a master, if none, set this character.
local function ConfirmThereIsAMaster()
-- Read the db option for master. Is it set?
if AJM.db.master:trim() == "" then
-- No, set it to self.
SetMaster( AJM.characterName )
end
-- Is the master in the member list?
if not IsCharacterInTeam( AJM.db.master ) then
-- No, set self as master.
SetMaster( AJM.characterName )
end
end
-- Remove a member from the member list.
local function RemoveMember( characterName )
-- Is character in team?
if IsCharacterInTeam( characterName ) == true then
-- Remove character from list.
local characterPosition = AJM.db.teamList[characterName]
AJM.db.teamList[characterName] = nil
-- If any character had an order greater than this character's order, then shift their order down by one.
for checkCharacterName, checkCharacterPosition in pairs( AJM.db.teamList ) do
if checkCharacterPosition > characterPosition then
AJM.db.teamList[checkCharacterName] = checkCharacterPosition - 1
end
end
-- Send a message to any listeners that this character has been removed.
AJM:SendMessage( AJM.MESSAGE_TEAM_CHARACTER_REMOVED, characterName )
-- Make sure AJM character is a member.
ConfirmCharacterIsInTeam()
-- Make sure there is a master, if none, set this character.
ConfirmThereIsAMaster()
-- Refresh the settings.
AJM:SettingsRefresh()
end
end
-- Provides a GUI for a user to confirm removing selected members from the member list.
function AJM:RemoveMemberGUI()
local characterName = GetCharacterNameAtOrderPosition( AJM.settingsControl.teamListHighlightRow )
RemoveMember( characterName )
AJM.settingsControl.teamListHighlightRow = 1
AJM:SettingsTeamListScrollRefresh()
end
-- Remove member from the command line.
function AJM:RemoveMemberCommand( info, parameters )
local characterName = parameters
-- Wow names are at least two characters.
if characterName ~= nil and characterName:trim() ~= "" and characterName:len() > 1 then
-- Remove the character.
RemoveMember( characterName )
end
end
local function RemoveAllMembersFromTeam()
for characterName, characterPosition in pairs( AJM.db.teamList ) do
RemoveMember( characterName )
end
end
-- Remove all members from the team list via command line.
function AJM:DoRemoveAllMembersFromTeam( info, parameters )
RemoveAllMembersFromTeam()
end
function AJM:CommandIAmMaster( info, parameters )
local tag = parameters
local target = AJM.characterName
if tag ~= nil and tag:trim() ~= "" then
AJM:JambaSendCommandToTeam( AJM.COMMAND_SET_MASTER, target, tag )
else
SetMaster( target )
end
end
function AJM:CommandSetMaster( info, parameters )
local target, tag = strsplit( " ", parameters )
if tag ~= nil and tag:trim() ~= "" then
AJM:JambaSendCommandToTeam( AJM.COMMAND_SET_MASTER, target, tag )
else
SetMaster( target )
end
end
function AJM:ReceiveCommandSetMaster( target, tag )
if JambaPrivate.Tag.DoesCharacterHaveTag( AJM.characterName, tag ) then
SetMaster( target )
end
end
-------------------------------------------------------------------------------------------------------------
-- Character online status.
-------------------------------------------------------------------------------------------------------------
-- Get a character's online status.
local function GetCharacterOnlineStatus( characterName )
if JambaPrivate.Communications.AssumeTeamAlwaysOnline() == true then
return true
end
return AJM.db.characterOnline[characterName]
end