Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit b09e688

Browse files
committed
Initial Commit
1 parent 73ec207 commit b09e688

4 files changed

+150
-0
lines changed

Config.lua

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
local _, SimpleAutoCombatLog = ...;
2+
3+
L = SimpleAutoCombatLog.L;
4+
5+
SimpleAutoCombatLog.Zones = {
6+
["ZoneOnly"] = { -- Only Zone must be entered
7+
L["The Molten Core"],
8+
L["Blackwing Lair"],
9+
L["Onyxia's Lair"],
10+
L["Ruins of Ahn'Qiraj"],
11+
L["Ahn'Qiraj"],
12+
L["Zul'Gurub"],
13+
L["Naxxramas"],
14+
},
15+
["ZoneAndMob"] = { -- A Zone must be entered and a Mob must be targeted
16+
["Zones"] = {
17+
L["Duskwood"],
18+
L["Hinterlands"],
19+
L["Feralas"],
20+
L["Ashenvale"],
21+
L["Blasted Lands"],
22+
L["Azshara"],
23+
},
24+
["Mobs"] = {
25+
L["Emeriss"],
26+
L["Lethon"],
27+
L["Ysondre"],
28+
L["Taerar "],
29+
L["Doomlord Kazzak"],
30+
L["Azuregos"],
31+
}
32+
}
33+
34+
35+
36+
}

Localization.lua

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
local _, SimpleAutoCombatLog = ...;
2+
3+
SimpleAutoCombatLog.L = {};
4+
5+
local function defaultFunc(L, key)
6+
-- If this function was called, we have no localization for this key.
7+
-- We could complain loudly to allow localizers to see the error of their ways,
8+
-- but, for now, just return the key as its own localization. This allows you to—avoid writing the default localization out explicitly.
9+
return key;
10+
end
11+
setmetatable(SimpleAutoCombatLog.L, {__index=defaultFunc});
12+
13+
if GetLocale() == "deDE" then
14+
-- Zones
15+
SimpleAutoCombatLog.L["The Molten Core"] = "Der Geschmolzene Kern";
16+
SimpleAutoCombatLog.L["Onyxia's Lair"] = "Onyxias Hort";
17+
SimpleAutoCombatLog.L["Blackwing Lair"] = "Pechschwingenhort";
18+
SimpleAutoCombatLog.L["Ruins of Ahn'Qiraj"] = "Ruinen von Ahn'Qiraj";
19+
SimpleAutoCombatLog.L["Ahn'Qiraj"] = "Ahn'Qiraj";
20+
SimpleAutoCombatLog.L["Zul'Gurub"] = "Zul'Gurub";
21+
SimpleAutoCombatLog.L["Naxxramas"] = "Naxxramas";
22+
23+
SimpleAutoCombatLog.L["Azshara"] = "Azshara";
24+
SimpleAutoCombatLog.L["Blasted Lands"] = "Verwüstete Lande";
25+
SimpleAutoCombatLog.L["Hinterlands"] = "Hinterland";
26+
SimpleAutoCombatLog.L["Ashenvale"] = "Ashenvale";
27+
SimpleAutoCombatLog.L["Feralas"] = "Feralas";
28+
SimpleAutoCombatLog.L["Duskwood"] = "Dämmerwald";
29+
30+
-- Text
31+
SimpleAutoCombatLog.L["Combatlog enabled"] = "Kampflog aktiviert";
32+
SimpleAutoCombatLog.L["Combatlog disabled"] = "Kampflog deaktiviert";
33+
34+
-- Mobs
35+
SimpleAutoCombatLog.L["Emeriss"] = "Emeriss";
36+
SimpleAutoCombatLog.L["Lethon"] = "Lethon";
37+
SimpleAutoCombatLog.L["Ysondre"] = "Ysondre";
38+
SimpleAutoCombatLog.L["Taerar"] = "Taerar";
39+
SimpleAutoCombatLog.L["Lord Kazzak"] = "Lord Kazzak";
40+
SimpleAutoCombatLog.L["Azuregos"] = "Azuregos";
41+
42+
end

SimpleAutoCombatLog.lua

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
local addonName, SimpleAutoCombatLog = ...;
2+
3+
local EventHandler = CreateFrame("Frame");
4+
local LookForMob = false;
5+
6+
EventHandler:RegisterEvent("ZONE_CHANGED_NEW_AREA");
7+
EventHandler:RegisterEvent("PLAYER_TARGET_CHANGED");
8+
9+
EventHandler:SetScript("OnEvent", function(self, event, ...)
10+
11+
if event == "ZONE_CHANGED_NEW_AREA" then
12+
SimpleAutoCombatLog:OnZoneChanged(...);
13+
elseif LookForMob and event == "PLAYER_TARGET_CHANGED" then
14+
SimpleAutoCombatLog:OnTargetChanged(...);
15+
end
16+
end);
17+
18+
19+
function SimpleAutoCombatLog:OnZoneChanged(...)
20+
local zone = GetRealZoneText();
21+
22+
if self:IsInList( self.Zones.ZoneOnly, zone ) then -- No Mob needs to be tagged
23+
self:StartLog();
24+
elseif self:IsInList( self.Zones.ZoneAndMob.Zones, zone ) then -- No Mobs need to be tagged
25+
LookForMob = true;
26+
else
27+
self:StopLog();
28+
LookForMob = false;
29+
end
30+
31+
end
32+
33+
function SimpleAutoCombatLog:OnTargetChanged(...)
34+
local name = UnitName("target");
35+
if self:IsInList( self.Zones.ZoneAndMob.Mobs, name ) then
36+
self:StartLog();
37+
end
38+
end
39+
40+
function SimpleAutoCombatLog:StartLog()
41+
if not LoggingCombat() then
42+
LoggingCombat(true);
43+
print("|cffffff00".. L["Combatlog enabled"] .."|r");
44+
SetCVar("advancedCombatLogging", 1);
45+
end
46+
47+
end
48+
49+
function SimpleAutoCombatLog:StopLog()
50+
if LoggingCombat() then
51+
LoggingCombat(false);
52+
print("|cffffff00".. L["Combatlog disabled"] .."|r");
53+
end
54+
end
55+
56+
function SimpleAutoCombatLog:IsInList( list, search_value )
57+
for _, value in pairs( list ) do
58+
if value == search_value then
59+
return true;
60+
end
61+
end
62+
return false;
63+
end

SimpleAutoCombatLog.toc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## Interface: 11302
2+
## Title: |cff00ccffSimpleAutoCombatLog|r
3+
## Author: |cff00ccffKessedy|r
4+
## Version: 1.0
5+
## Notes: Automatically starts /combatlog for raids
6+
7+
Localization.lua
8+
Config.lua
9+
SimpleAutoCombatLog.lua

0 commit comments

Comments
 (0)