Nos partenaires et nous-mêmes utilisons différentes technologies, telles que les cookies, pour personnaliser les contenus et les publicités, proposer des fonctionnalités sur les réseaux sociaux et analyser le trafic. Merci de cliquer sur le bouton ci-dessous pour donner votre accord. Vous pouvez changer d’avis et modifier vos choix à tout moment. Informations RGPD
------------------------------------------------------------------------------------------------------------- -- -- TrinityAdmin Version 3.x -- TrinityAdmin is a derivative of MangAdmin. -- -- Copyright (C) 2007 Free Software Foundation, Inc. -- License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> -- This is free software: you are free to change and redistribute it. -- There is NO WARRANTY, to the extent permitted by law. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- -- Official Forums: http://groups.google.com/group/trinityadmin -- GoogleCode Website: http://code.google.com/p/trinityadmin/ -- Subversion Repository: http://trinityadmin.googlecode.com/svn/ -- Dev Blog: http://trinityadmin.blogspot.com/ ------------------------------------------------------------------------------------------------------------- -- Initializing dynamic frames with LUA and FrameLib -- This script must be listed in the .toc after "MangFrames_SectionMisc.lua" -- Also some variables are globally taken from MangAdmin.lua function MangAdmin:CreateServerSection() local transparency = { bg = MangAdmin.db.account.style.transparency.backgrounds, btn = MangAdmin.db.account.style.transparency.buttons, frm = MangAdmin.db.account.style.transparency.frames } local color = { bg = MangAdmin.db.account.style.color.backgrounds, btn = MangAdmin.db.account.style.color.buttons, frm = MangAdmin.db.account.style.color.frames } FrameLib:BuildFrame({ name = "ma_netgraphframe", group = "server", parent = ma_midframe, texture = { color = {0,0,0,0.7} }, size = { width = 152, height = 152 }, setpoint = { pos = "TOPLEFT", offX = 10, offY = -10 }, inherits = nil }) FrameLib:BuildFontString({ name = "ma_lagmetertext", group = "server", parent = ma_midframe, text = "^Server Latency", setpoint = { pos = "TOPLEFT", offX = 10, offY = -170 } }) RealGraph=Graph:CreateGraphRealtime("ma_netgraph_lag",ma_netgraphframe,"CENTER","CENTER",0,0,150,150) local g=RealGraph g:SetAutoScale(false) g:SetGridSpacing(1.0,10.0) g:SetYMax(120) g:SetXAxis(-10,0) g:SetMode("RAW") g:SetBarColors({0.2,0.0,0.0,0.4},{1.0,0.0,0.0,1.0}) local f = CreateFrame("Frame",name,parent) f.frames=0 f.NextUpdate=GetTime() f:SetScript("OnUpdate",function() if f.NextUpdate>GetTime() then return end local down, up, lag = GetNetStats(); g:AddBar(lag) ma_lagmetertext:SetText("^Server Latency: "..lag.." ms") f.NextUpdate=f.NextUpdate + 1 end) f:Show() FrameLib:BuildFrame({ type = "EditBox", name = "ma_announceeditbox", group = "server", parent = ma_midframe, size = { width = 460, height = 20 }, setpoint = { pos = "TOPLEFT", offX = 15, offY = -226 }, inherits = "InputBoxTemplate" }) FrameLib:BuildButton({ name = "ma_announcebutton", group = "server", parent = ma_midframe, texture = { name = "ma_announcebutton_texture", color = {color.btn.r, color.btn.g, color.btn.b, transparency.btn} }, size = { width = 100, height = 20 }, setpoint = { pos = "TOPLEFT", offX = 480, offY = -226 }, text = Locale["ma_AnnounceButton"] }) FrameLib:BuildButton({ name = "ma_resetannouncebutton", group = "server", parent = ma_midframe, texture = { name = "ma_resetannouncebutton_texture", color = {color.btn.r, color.btn.g, color.btn.b, transparency.btn} }, size = { width = 80, height = 20 }, setpoint = { pos = "TOPLEFT", offX = 585, offY = -226 }, text = Locale["ma_ResetButton"] }) FrameLib:BuildFrame({ name = "ma_reloadtabledropdown", group = "server", parent = ma_midframe, size = { width = 80, height = 20 }, setpoint = { pos = "TOPLEFT", offX = 505, offY = -10 }, inherits = "UIDropDownMenuTemplate" }) FrameLib:BuildButton({ name = "ma_loadtablebutton", group = "server", parent = ma_midframe, texture = { name = "ma_loadtablebutton_texture", color = {color.btn.r, color.btn.g, color.btn.b, transparency.btn} }, size = { width = 90, height = 20 }, setpoint = { pos = "TOPLEFT", offX = 650, offY = -10 }, text = "Reload table" }) FrameLib:BuildButton({ name = "ma_loadscriptsbutton", group = "server", parent = ma_midframe, texture = { name = "ma_loadscriptsbutton_texture", color = {color.btn.r, color.btn.g, color.btn.b, transparency.btn} }, size = { width = 110, height = 20 }, setpoint = { pos = "TOPLEFT", offX = 630, offY = -35 }, text = "(Re-)Load Scripts" }) FrameLib:BuildFrame({ type = "EditBox", name = "ma_shutdowneditbox", group = "server", parent = ma_midframe, size = { width = 30, height = 20 }, setpoint = { pos = "TOPLEFT", offX = 600, offY = -68 }, inherits = "InputBoxTemplate" }) FrameLib:BuildButton({ name = "ma_shutdownbutton", group = "server", parent = ma_midframe, texture = { name = "ma_shutdownbutton_texture", color = {color.btn.r, color.btn.g, color.btn.b, transparency.btn} }, size = { width = 100, height = 20 }, setpoint = { pos = "TOPLEFT", offX = 635, offY = -68 }, text = Locale["ma_ShutdownButton"] }) FrameLib:BuildFrame({ name = "ma_netgraphframe2", group = "server", parent = ma_midframe, texture = { color = {0,0,0,0.7} }, size = { width = 152, height = 152 }, setpoint = { pos = "TOPLEFT", offX = 170, offY = -10 }, inherits = nil }) FrameLib:BuildFontString({ name = "ma_lagmetertext2", group = "server", parent = ma_midframe, text = "^Update Diff", setpoint = { pos = "TOPLEFT", offX = 170, offY = -170 } }) FrameLib:BuildFontString({ name = "ma_difftext", group = "server", parent = ma_midframe, text = "", setpoint = { pos = "TOPLEFT", offX = 250, offY = -170 } }) RealGraph=Graph:CreateGraphRealtime("ma_netgraph_diff",ma_netgraphframe2,"CENTER","CENTER",0,0,150,150) local z=RealGraph z:SetAutoScale(false) z:SetGridSpacing(1.0,10.0) z:SetYMax(300) z:SetXAxis(-10,0) z:SetMode("RAW") z:SetBarColors({0.2,0.0,0.0,0.4},{0.0,0.0,1.0,1.0}) local x = CreateFrame("Frame",name,parent) x.frames=0 x.NextUpdate=GetTime() local q=0 x:SetScript("OnUpdate",function() q=q+1 if x.NextUpdate>GetTime() then return end --local down, up, lag = GetNetStats(); -- ma_difftext:SetText(""..lag.." ms") x.NextUpdate=x.NextUpdate + 1 end) x:Show() end