You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
318 lines
9.0 KiB
318 lines
9.0 KiB
|
3 years ago
|
---------------------------------------------------------------------------------
|
||
|
|
--
|
||
|
|
-- Prat - A framework for World of Warcraft chat mods
|
||
|
|
--
|
||
|
|
-- Copyright (C) 2006-2018 Prat Development Team
|
||
|
|
--
|
||
|
|
-- This program is free software; you can redistribute it and/or
|
||
|
|
-- modify it under the terms of the GNU General Public License
|
||
|
|
-- as published by the Free Software Foundation; either version 2
|
||
|
|
-- of the License, or (at your option) any later version.
|
||
|
|
--
|
||
|
|
-- This program is distributed in the hope that it will be useful,
|
||
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
|
-- GNU General Public License for more details.
|
||
|
|
--
|
||
|
|
-- You should have received a copy of the GNU General Public License
|
||
|
|
-- along with this program; if not, write to:
|
||
|
|
--
|
||
|
|
-- Free Software Foundation, Inc.,
|
||
|
|
-- 51 Franklin Street, Fifth Floor,
|
||
|
|
-- Boston, MA 02110-1301, USA.
|
||
|
|
--
|
||
|
|
--
|
||
|
|
-------------------------------------------------------------------------------
|
||
|
|
|
||
|
|
Prat:AddModuleToLoad(function()
|
||
|
|
local function dbg(...) end
|
||
|
|
|
||
|
|
--[==[@debug@
|
||
|
|
function dbg(...) Prat:PrintLiteral(...) end
|
||
|
|
|
||
|
|
--@end-debug@]==]
|
||
|
|
|
||
|
|
local PRAT_MODULE = Prat:RequestModuleName("Highlight")
|
||
|
|
|
||
|
|
if PRAT_MODULE == nil then
|
||
|
|
return
|
||
|
|
end
|
||
|
|
|
||
|
|
local module = Prat:NewModule(PRAT_MODULE)
|
||
|
|
|
||
|
|
-- define localized strings
|
||
|
|
local PL = module.PL
|
||
|
|
|
||
|
|
|
||
|
|
Prat:SetModuleDefaults(module.name, {
|
||
|
|
profile = {
|
||
|
|
on = true,
|
||
|
|
player = true,
|
||
|
|
guild = true
|
||
|
|
}
|
||
|
|
})
|
||
|
|
|
||
|
|
--[==[@debug@
|
||
|
|
PL:AddLocale(PRAT_MODULE, "enUS", {
|
||
|
|
["module_name"] = "Highlight",
|
||
|
|
["module_desc"] = "Highlight your own name, and various other text",
|
||
|
|
["player_name"] = "Highlight Self",
|
||
|
|
["player_desc"] = "Highlight you own name in a special color",
|
||
|
|
["guild_name"] = "Highlight Guilds",
|
||
|
|
["guild_desc"] = "Highlight things which looks like guild names"
|
||
|
|
})
|
||
|
|
--@end-debug@]==]
|
||
|
|
|
||
|
|
-- These Localizations are auto-generated. To help with localization
|
||
|
|
-- please go to http://www.wowace.com/projects/prat-3-0/localization/
|
||
|
|
|
||
|
|
|
||
|
|
--@non-debug@
|
||
|
|
do
|
||
|
|
local L
|
||
|
|
|
||
|
|
|
||
|
|
L = {
|
||
|
|
["Highlight"] = {
|
||
|
|
["guild_desc"] = "Highlight things which looks like guild names",
|
||
|
|
["guild_name"] = "Highlight Guilds",
|
||
|
|
["module_desc"] = "Highlight your own name, and various other text",
|
||
|
|
["module_name"] = "Highlight",
|
||
|
|
["player_desc"] = "Highlight you own name in a special color",
|
||
|
|
["player_name"] = "Highlight Self",
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
PL:AddLocale(PRAT_MODULE, "enUS", L)
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
L = {
|
||
|
|
["Highlight"] = {
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["guild_desc"] = "Highlight things which looks like guild names",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["guild_name"] = "Highlight Guilds",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["module_desc"] = "Highlight your own name, and various other text",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["module_name"] = "Highlight",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["player_desc"] = "Highlight you own name in a special color",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["player_name"] = "Highlight Self",
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
PL:AddLocale(PRAT_MODULE, "itIT", L)
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
L = {
|
||
|
|
["Highlight"] = {
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["guild_desc"] = "Highlight things which looks like guild names",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["guild_name"] = "Highlight Guilds",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["module_desc"] = "Highlight your own name, and various other text",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["module_name"] = "Highlight",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["player_desc"] = "Highlight you own name in a special color",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["player_name"] = "Highlight Self",
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
PL:AddLocale(PRAT_MODULE, "ptBR", L)
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
L = {
|
||
|
|
["Highlight"] = {
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["guild_desc"] = "Highlight things which looks like guild names",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["guild_name"] = "Highlight Guilds",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["module_desc"] = "Highlight your own name, and various other text",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["module_name"] = "Highlight",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["player_desc"] = "Highlight you own name in a special color",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["player_name"] = "Highlight Self",
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
PL:AddLocale(PRAT_MODULE, "frFR", L)
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
L = {
|
||
|
|
["Highlight"] = {
|
||
|
|
["guild_desc"] = "Markiert Dinge, die wie Gildennamen aussehen",
|
||
|
|
["guild_name"] = "Markiert Gilden",
|
||
|
|
["module_desc"] = "Markiert dein eigener Name und verschiedene andere Texte",
|
||
|
|
["module_name"] = "Markierung",
|
||
|
|
["player_desc"] = "Markiert deinen eigenen Namen in einer speziellen Farbe",
|
||
|
|
["player_name"] = "Markiert dich selbst",
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
PL:AddLocale(PRAT_MODULE, "deDE", L)
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
L = {
|
||
|
|
["Highlight"] = {
|
||
|
|
["guild_desc"] = "길드명처럼 보일 수 있게 강조",
|
||
|
|
["guild_name"] = "길드 강조",
|
||
|
|
["module_desc"] = "사용자 이름 및 기타 텍스트 강조하기",
|
||
|
|
["module_name"] = "강조 [Highlight]",
|
||
|
|
["player_desc"] = "자신의 이름을 특별한 색으로 강조",
|
||
|
|
["player_name"] = "자신 강조",
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
PL:AddLocale(PRAT_MODULE, "koKR", L)
|
||
|
|
|
||
|
|
|
||
|
|
L = {
|
||
|
|
["Highlight"] = {
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["guild_desc"] = "Highlight things which looks like guild names",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["guild_name"] = "Highlight Guilds",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["module_desc"] = "Highlight your own name, and various other text",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["module_name"] = "Highlight",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["player_desc"] = "Highlight you own name in a special color",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["player_name"] = "Highlight Self",
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
PL:AddLocale(PRAT_MODULE, "esMX", L)
|
||
|
|
|
||
|
|
|
||
|
|
L = {
|
||
|
|
["Highlight"] = {
|
||
|
|
["guild_desc"] = "Выделите вещи, похожие на названия гильдий",
|
||
|
|
["guild_name"] = "Выделить гильдии",
|
||
|
|
["module_desc"] = "Выделите свое имя и другой текст",
|
||
|
|
["module_name"] = [=[Основной момент
|
||
|
|
]=],
|
||
|
|
["player_desc"] = "Выделите свое имя специальным цветом",
|
||
|
|
["player_name"] = "Выделить себя",
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
PL:AddLocale(PRAT_MODULE, "ruRU", L)
|
||
|
|
|
||
|
|
|
||
|
|
L = {
|
||
|
|
["Highlight"] = {
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["guild_desc"] = "Highlight things which looks like guild names",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["guild_name"] = "Highlight Guilds",
|
||
|
|
["module_desc"] = "突出显示你自己的名字,以及各种其他文字",
|
||
|
|
["module_name"] = "高亮度突显",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["player_desc"] = "Highlight you own name in a special color",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["player_name"] = "Highlight Self",
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
PL:AddLocale(PRAT_MODULE, "zhCN", L)
|
||
|
|
|
||
|
|
|
||
|
|
L = {
|
||
|
|
["Highlight"] = {
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["guild_desc"] = "Highlight things which looks like guild names",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["guild_name"] = "Highlight Guilds",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["module_desc"] = "Highlight your own name, and various other text",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["module_name"] = "Highlight",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["player_desc"] = "Highlight you own name in a special color",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["player_name"] = "Highlight Self",
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
PL:AddLocale(PRAT_MODULE, "esES", L)
|
||
|
|
|
||
|
|
|
||
|
|
L = {
|
||
|
|
["Highlight"] = {
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["guild_desc"] = "Highlight things which looks like guild names",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["guild_name"] = "Highlight Guilds",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["module_desc"] = "Highlight your own name, and various other text",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["module_name"] = "Highlight",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["player_desc"] = "Highlight you own name in a special color",
|
||
|
|
--[[Translation missing --]]
|
||
|
|
["player_name"] = "Highlight Self",
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
PL:AddLocale(PRAT_MODULE, "zhTW", L)
|
||
|
|
end
|
||
|
|
--@end-non-debug@
|
||
|
|
|
||
|
|
local toggleOption = {
|
||
|
|
name = function(info) return PL[info[#info] .. "_name"] end,
|
||
|
|
desc = function(info) return PL[info[#info] .. "_desc"] end,
|
||
|
|
type = "toggle",
|
||
|
|
}
|
||
|
|
|
||
|
|
Prat:SetModuleOptions(module.name, {
|
||
|
|
name = PL.module_name,
|
||
|
|
desc = PL.module_desc,
|
||
|
|
type = "group",
|
||
|
|
args = {
|
||
|
|
player = toggleOption,
|
||
|
|
guild = toggleOption
|
||
|
|
}
|
||
|
|
})
|
||
|
|
|
||
|
|
local CLR = Prat.CLR
|
||
|
|
local function guildBracket(text)
|
||
|
|
return CLR:Colorize("ffffff", text)
|
||
|
|
end
|
||
|
|
|
||
|
|
local function guildText(text)
|
||
|
|
return CLR:Colorize("00ff00", text)
|
||
|
|
end
|
||
|
|
|
||
|
|
|
||
|
|
local function highlightPlayer(text)
|
||
|
|
if module.db.profile.player then
|
||
|
|
return Prat:RegisterMatch(CLR:Colorize("00ff00", text))
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
local function highlightGuild(text)
|
||
|
|
if module.db.profile.guild then
|
||
|
|
return Prat:RegisterMatch(guildBracket("<") .. guildText(text) .. guildBracket(">"))
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
Prat:SetModulePatterns(module, {
|
||
|
|
{ pattern = Prat.GetNamePattern(UnitName("player")), matchfunc = highlightPlayer, priority = 47 },
|
||
|
|
{ pattern = "<(..-)>", matchfunc = highlightGuild, priority = 49 },
|
||
|
|
})
|
||
|
|
end)
|