-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathJambaModule.lua
143 lines (120 loc) · 5.83 KB
/
JambaModule.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
--[[
Jamba - Jafula's Awesome Multi-Boxer Assistant
Copyright 2008 - 2018 Michael "Jafula" Miller
License: The MIT License
]]--
local MAJOR, MINOR = "JambaModule-1.0", 1
local JambaModule, oldMinor = LibStub:NewLibrary( MAJOR, MINOR )
if not JambaModule then
return
end
-- Load libraries.
LibStub( "AceConsole-3.0" ):Embed( JambaModule )
-------------------------------------------------------------------------------------------------------------
-- Jamba Module Mixin Management.
-------------------------------------------------------------------------------------------------------------
-- A list of modules that embed this module.
JambaModule.embeddedModules = JambaModule.embeddedModules or {}
-- These methods are the embbedable methods.
local mixinMethods = {
"JambaRegisterModule", "JambaModuleInitialize",
"JambaSendCommandToTeam", "JambaSendCommandToMaster",
"JambaSendMessageToTeam", "JambaSendCommandToToon",
"JambaSendSettings", "JambaOnSettingsReceived",
"JambaChatCommand",
"JambaConfigurationGetSetting", "JambaConfigurationSetSetting",
}
-- Embed all the embeddable methods into the target module.
function JambaModule:Embed( targetModule )
for key, value in pairs( mixinMethods ) do
targetModule[value] = self[value]
end
LibStub( "AceConsole-3.0" ):Embed( targetModule )
self.embeddedModules[targetModule] = true
return targetModule
end
-------------------------------------------------------------------------------------------------------------
-- Jamba Module Registration.
-------------------------------------------------------------------------------------------------------------
-- Register a module with Jamba. Jamba needs modules to be registered in order to faciliate communications.
function JambaModule:JambaRegisterModule( moduleName )
JambaPrivate.Core.RegisterModule( self, moduleName )
end
-------------------------------------------------------------------------------------------------------------
-- Jamba Communications.
-------------------------------------------------------------------------------------------------------------
-- Send settings to all available Jamba Team characters.
function JambaModule:JambaSendSettings()
JambaPrivate.Core.SendSettings( self, self.db )
end
-- Send a command to all available Jamba Team characters.
function JambaModule:JambaSendCommandToTeam( commandName, ... )
JambaPrivate.Core.SendCommandToTeam( self, commandName, ... )
end
-- Send a command to just the master character.
function JambaModule:JambaSendCommandToMaster( commandName, ... )
JambaPrivate.Core.SendCommandToMaster( self, commandName, ... )
end
function JambaModule:JambaSendCommandToToon( characterName, commandName, ... )
JambaPrivate.Core.SendCommandToToon( self, characterName, commandName, ... )
end
-- Send a message to the team.
function JambaModule:JambaSendMessageToTeam( areaName, message, suppressSender, ... )
JambaPrivate.Message.SendMessage( areaName, message, suppressSender, ... )
end
-------------------------------------------------------------------------------------------------------------
-- Jamba Chat Commands.
-------------------------------------------------------------------------------------------------------------
-- Handle the chat command.
function JambaModule:JambaChatCommand( input )
if not input or input:trim() == "" then
JambaPrivate.SettingsFrame.Widget:Show()
JambaPrivate.SettingsFrame.TreeGroupStatus.groups[self.parentDisplayName] = true
JambaPrivate.SettingsFrame.WidgetTree:SelectByPath( self.parentDisplayName, self.moduleDisplayName )
JambaPrivate.SettingsFrame.Tree.ButtonClick( nil, nil, self.moduleDisplayName, false)
else
LibStub( "AceConfigCmd-3.0" ):HandleCommand( self.chatCommand, self.moduleName, input )
end
end
-------------------------------------------------------------------------------------------------------------
-- Module initialization and settings management.
-------------------------------------------------------------------------------------------------------------
-- Initialise the module.
function JambaModule:JambaModuleInitialize( settingsFrame )
-- Create the settings database supplying the settings values along with defaults.
self.completeDatabase = LibStub( "AceDB-3.0" ):New( self.settingsDatabaseName, self.settings )
self.db = self.completeDatabase.profile
-- Create the settings.
LibStub( "AceConfig-3.0" ):RegisterOptionsTable( self.moduleName, self:GetConfiguration() )
self.settingsFrame = settingsFrame
-- Register the chat command for this module.
self:RegisterChatCommand( self.chatCommand, "JambaChatCommand" )
-- Remember the characters name.
-- If server has a space in realm name GetRealmName() will show space this will not work with blizzard API so we need to hack this to work --ebony
--local _, k = UnitFullName("player")
local k = GetRealmName()
local realm = k:gsub( "%s+", "")
self.characterRealm = realm
self.characterNameLessRealm = UnitName( "player" )
--self.characterName = UnitFullName( "player" )
self.characterName = self.characterNameLessRealm.."-"..self.characterRealm
--self.characterName = UnitFullName("player")
self.characterGUID = UnitGUID( "player" )
-- Register this module with Jamba.
self:JambaRegisterModule( self.moduleName )
end
-- Get a settings value.
function JambaModule:JambaConfigurationGetSetting( key )
return self.db[key[#key]]
end
-- Set a settings value.
function JambaModule:JambaConfigurationSetSetting( key, value )
self.db[key[#key]] = value
end
-------------------------------------------------------------------------------------------------------------
-- Upgrade Library.
-------------------------------------------------------------------------------------------------------------
-- Upgrade all modules that are already using this library to use the newer version.
for targetModule, value in pairs( JambaModule.embeddedModules ) do
JambaModule:Embed( targetModule )
end