From ae34ccce0a5f64e4d3645a0ef6e682c0f331f90a Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 31 Oct 2013 18:43:01 +0000 Subject: [PATCH] move the gui library to its own function (all libraries are separate objects now!), add lua function: gui.clearGraphics() --- .../tools/Lua/Libraries/EmuLuaLibrary.Gui.cs | 151 +++++++++++------- .../tools/Lua/Libraries/EmuLuaLibrary.cs | 48 ++---- .../tools/Lua/Libraries/LuaLibraryBase.cs | 7 +- BizHawk.MultiClient/tools/Lua/LuaConsole.cs | 19 +-- 4 files changed, 117 insertions(+), 108 deletions(-) diff --git a/BizHawk.MultiClient/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs b/BizHawk.MultiClient/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs index 8515a25d68..376ca1e3a3 100644 --- a/BizHawk.MultiClient/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs +++ b/BizHawk.MultiClient/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs @@ -8,14 +8,95 @@ using BizHawk.Client.Common; namespace BizHawk.MultiClient { - public partial class EmuLuaLibrary + public class GuiLuaLibrary : LuaLibraryBase { - #region Gui Library Helpers + public override string Name { get { return "gui"; } } + public override string[] Functions + { + get + { + return new[] + { + "addmessage", + "alert", + "clearGraphics", + "cleartext", + "drawBezier", + "drawBox", + "drawEllipse", + "drawIcon", + "drawImage", + "drawLine", + "drawPie", + "drawPixel", + "drawPolygon", + "drawRectangle", + "drawString", + "drawText", + "text", + }; + } + } + #region Gui API + + public void Dispose() + { + foreach (var brush in SolidBrushes.Values) brush.Dispose(); + foreach (var brush in Pens.Values) brush.Dispose(); + } + + public bool SurfaceIsNull + { + get + { + return luaSurface == null; + } + } + + /// + /// sets the current drawing context to a new surface. + /// you COULD pass these back to lua to use as a target in rendering jobs, instead of setting it as current here. + /// could be more powerful. + /// performance test may reveal that repeatedly calling GetGraphics could be slow. + /// we may want to make a class here in LuaImplementation that wraps a DisplaySurface and a Graphics which would be created once + /// + public void DrawNew() + { + luaSurface = GlobalWinF.DisplayManager.GetLuaSurfaceNative(); + } + + public void DrawNewEmu() + { + luaSurface = GlobalWinF.DisplayManager.GetLuaEmuSurfaceEmu(); + } + + /// + /// finishes the current drawing and submits it to the display manager (at native [host] resolution pre-osd) + /// you would probably want some way to specify which surface to set it to, when there are other surfaces. + /// most notably, the client output [emulated] resolution + /// + public void DrawFinish() + { + GlobalWinF.DisplayManager.SetLuaSurfaceNativePreOSD(luaSurface); + luaSurface = null; + } + + public void DrawFinishEmu() + { + GlobalWinF.DisplayManager.SetLuaSurfaceEmu(luaSurface); + luaSurface = null; + } + + #endregion + + #region Helpers + + private DisplaySurface luaSurface; private readonly Dictionary SolidBrushes = new Dictionary(); private readonly Dictionary Pens = new Dictionary(); - public Color GetColor(object color) + private static Color GetColor(object color) { if (color is double) { @@ -27,7 +108,7 @@ namespace BizHawk.MultiClient } } - public SolidBrush GetBrush(object color) + private SolidBrush GetBrush(object color) { Color c = GetColor(color); SolidBrush b; @@ -39,7 +120,7 @@ namespace BizHawk.MultiClient return b; } - public Pen GetPen(object color) + private Pen GetPen(object color) { Color c = GetColor(color); Pen p; @@ -51,47 +132,7 @@ namespace BizHawk.MultiClient return p; } - public void gui_clearGraphics() - { - GlobalWinF.DisplayManager.NeedsToPaint = true; - luaSurface.Clear(); - } - - /// - /// sets the current drawing context to a new surface. - /// you COULD pass these back to lua to use as a target in rendering jobs, instead of setting it as current here. - /// could be more powerful. - /// performance test may reveal that repeatedly calling GetGraphics could be slow. - /// we may want to make a class here in LuaImplementation that wraps a DisplaySurface and a Graphics which would be created once - /// - public void gui_drawNew() - { - luaSurface = GlobalWinF.DisplayManager.GetLuaSurfaceNative(); - } - - public void gui_drawNewEmu() - { - luaSurface = GlobalWinF.DisplayManager.GetLuaEmuSurfaceEmu(); - } - - /// - /// finishes the current drawing and submits it to the display manager (at native [host] resolution pre-osd) - /// you would probably want some way to specify which surface to set it to, when there are other surfaces. - /// most notably, the client output [emulated] resolution - /// - public void gui_drawFinish() - { - GlobalWinF.DisplayManager.SetLuaSurfaceNativePreOSD(luaSurface); - luaSurface = null; - } - - public void gui_drawFinishEmu() - { - GlobalWinF.DisplayManager.SetLuaSurfaceEmu(luaSurface); - luaSurface = null; - } - - Graphics GetGraphics() + private Graphics GetGraphics() { var g = luaSurface.GetGraphics(); int tx = Global.Emulator.CoreComm.ScreenLogicalOffsetX; @@ -105,9 +146,7 @@ namespace BizHawk.MultiClient return g; } - public DisplaySurface luaSurface; - - private void do_gui_text(object luaX, object luaY, object luaStr, bool alert, object background = null, + private void DoGuiText(object luaX, object luaY, object luaStr, bool alert, object background = null, object forecolor = null, object anchor = null) { if (!alert) @@ -160,10 +199,16 @@ namespace BizHawk.MultiClient public void gui_alert(object luaX, object luaY, object luaStr, object anchor = null) { - do_gui_text(luaX, luaY, luaStr, true, null, null, anchor); + DoGuiText(luaX, luaY, luaStr, true, null, null, anchor); } - public void gui_cleartext() + public void gui_clearGraphics() + { + GlobalWinF.DisplayManager.NeedsToPaint = true; + luaSurface.Clear(); + } + + public static void gui_cleartext() { GlobalWinF.OSD.ClearGUIText(); } @@ -421,10 +466,8 @@ namespace BizHawk.MultiClient } } - public void gui_drawString(object X, object Y, object message, object color = null, object fontsize = null, object fontfamily = null, object fontstyle = null) { - GlobalWinF.DisplayManager.NeedsToPaint = true; gui_drawText(X, Y, message, color, fontsize, fontfamily, fontstyle); } @@ -484,7 +527,7 @@ namespace BizHawk.MultiClient public void gui_text(object luaX, object luaY, object luaStr, object background = null, object forecolor = null, object anchor = null) { - do_gui_text(luaX, luaY, luaStr, false, background, forecolor, anchor); + DoGuiText(luaX, luaY, luaStr, false, background, forecolor, anchor); } } } diff --git a/BizHawk.MultiClient/tools/Lua/Libraries/EmuLuaLibrary.cs b/BizHawk.MultiClient/tools/Lua/Libraries/EmuLuaLibrary.cs index 21556910b7..da812dea5c 100644 --- a/BizHawk.MultiClient/tools/Lua/Libraries/EmuLuaLibrary.cs +++ b/BizHawk.MultiClient/tools/Lua/Libraries/EmuLuaLibrary.cs @@ -13,12 +13,21 @@ namespace BizHawk.MultiClient private Lua currThread; private FormsLuaLibrary _formsLibrary = new FormsLuaLibrary(); private EventLuaLibrary _eventLibrary = new EventLuaLibrary(); + private GuiLuaLibrary _guiLibrary = new GuiLuaLibrary(); public LuaDocumentation Docs = new LuaDocumentation(); public bool IsRunning; public EventWaitHandle LuaWait; public bool FrameAdvanceRequested; + public GuiLuaLibrary GuiLibrary + { + get + { + return _guiLibrary; + } + } + public void WindowClosed(IntPtr handle) { _formsLibrary.WindowClosed(handle); @@ -60,32 +69,9 @@ namespace BizHawk.MultiClient public void Close() { _lua = new Lua(); - foreach (var brush in SolidBrushes.Values) brush.Dispose(); - foreach (var brush in Pens.Values) brush.Dispose(); + _guiLibrary.Dispose(); } - #region Register Library Functions - - public static string[] GuiFunctions = new[] - { - "addmessage", - "alert", - "cleartext", - "drawBezier", - "drawBox", - "drawEllipse", - "drawIcon", - "drawImage", - "drawLine", - "drawPie", - "drawPixel", - "drawPolygon", - "drawRectangle", - "drawString", - "drawText", - "text", - }; - public void LuaRegister(Lua lua) { lua.RegisterFunction("print", this, GetType().GetMethod("print")); @@ -101,6 +87,7 @@ namespace BizHawk.MultiClient _eventLibrary.LuaRegister(lua, Docs); _formsLibrary.LuaRegister(lua, Docs); + _guiLibrary.LuaRegister(lua, Docs); new InputLuaLibrary(_lua).LuaRegister(lua, Docs); new JoypadLuaLibrary(_lua).LuaRegister(lua, Docs); new MemoryLuaLibrary().LuaRegister(lua, Docs); @@ -110,20 +97,9 @@ namespace BizHawk.MultiClient new SavestateLuaLibrary().LuaRegister(lua, Docs); new SNESLuaLibrary().LuaRegister(lua, Docs); - lua.NewTable("gui"); - foreach (string t in GuiFunctions) - { - lua.RegisterFunction("gui." + t, this, GetType().GetMethod("gui_" + t)); - Docs.Add("gui", t, GetType().GetMethod("gui_" + t)); - } - Docs.Sort(); } - #endregion - - #region Library Helpers - public Lua SpawnCoroutine(string File) { var t = _lua.NewThread(); @@ -175,7 +151,5 @@ namespace BizHawk.MultiClient GlobalWinF.DisplayManager.NeedsToPaint = true; currThread.Yield(0); } - - #endregion } } diff --git a/BizHawk.MultiClient/tools/Lua/Libraries/LuaLibraryBase.cs b/BizHawk.MultiClient/tools/Lua/Libraries/LuaLibraryBase.cs index 868560993e..9af8c0be70 100644 --- a/BizHawk.MultiClient/tools/Lua/Libraries/LuaLibraryBase.cs +++ b/BizHawk.MultiClient/tools/Lua/Libraries/LuaLibraryBase.cs @@ -16,12 +16,7 @@ namespace BizHawk.MultiClient { string func = Name + "." + methodName; var method = GetType().GetMethod(Name + "_" + methodName); - - lua.RegisterFunction( - Name + "." + methodName, - this, - GetType().GetMethod(Name + "_" + methodName) - ); + lua.RegisterFunction(func, this, method); if (docs != null) { diff --git a/BizHawk.MultiClient/tools/Lua/LuaConsole.cs b/BizHawk.MultiClient/tools/Lua/LuaConsole.cs index 3be1ef2ef9..8e1708f2a9 100644 --- a/BizHawk.MultiClient/tools/Lua/LuaConsole.cs +++ b/BizHawk.MultiClient/tools/Lua/LuaConsole.cs @@ -800,9 +800,9 @@ namespace BizHawk.MultiClient { if (luaList != null && luaList.Count > 0) { - if (LuaImp.luaSurface == null) + if (LuaImp.GuiLibrary.SurfaceIsNull) { - LuaImp.gui_drawNewEmu(); + LuaImp.GuiLibrary.DrawNewEmu(); } foreach (var lf in luaList) { @@ -853,24 +853,21 @@ namespace BizHawk.MultiClient { if (luaList != null && luaList.Count > 0) { - if (LuaImp.luaSurface == null) - LuaImp.gui_drawNewEmu(); + if (LuaImp.GuiLibrary.SurfaceIsNull) + { + LuaImp.GuiLibrary.DrawNewEmu(); + } } } public void EndLuaDrawing() { - if (luaList != null && luaList.Count > 0) + if (luaList != null && luaList.Any()) { - LuaImp.gui_drawFinishEmu(); + LuaImp.GuiLibrary.DrawFinishEmu(); } } - public bool IsRunning() - { - return true; - } - public bool WaitOne(int timeout) { if (!IsHandleCreated || IsDisposed)