From 676b5791f643bd4fbc3662c741b89fabd23bc311 Mon Sep 17 00:00:00 2001 From: zeromus Date: Thu, 21 Apr 2016 16:43:37 -0500 Subject: [PATCH] lua: add gui.DrawFinish() which will let you choose when to finish drawing; and add optional argument to gui.DrawNew which when set to false lets you keep it from being cleared. --- .../DisplayManager/DisplayManager.cs | 9 +++++---- .../tools/Lua/Libraries/EmuLuaLibrary.Gui.cs | 10 +++++++--- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs b/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs index bcd6009670..58126736a1 100644 --- a/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs +++ b/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs @@ -869,7 +869,7 @@ namespace BizHawk.Client.EmuHawk /// /// Locks the requested lua surface name /// - public DisplaySurface LockLuaSurface(string name) + public DisplaySurface LockLuaSurface(string name, bool clear=true) { if (MapNameToLuaSurface.ContainsKey(name)) throw new InvalidOperationException("Lua surface is already locked: " + name); @@ -898,7 +898,7 @@ namespace BizHawk.Client.EmuHawk else if(name == "native") { width = currNativeWidth; height = currNativeHeight; } else throw new InvalidOperationException("Unknown lua surface name: " +name); - DisplaySurface ret = sdss.AllocateSurface(width, height); + DisplaySurface ret = sdss.AllocateSurface(width, height, clear); MapNameToLuaSurface[name] = ret; MapLuaSurfaceToName[ret] = name; return ret; @@ -913,8 +913,9 @@ namespace BizHawk.Client.EmuHawk var surf = PeekLockedLuaSurface(kvp.Key); DisplaySurface surfLocked = null; if (surf == null) - surf = surfLocked = LockLuaSurface(kvp.Key); - surf.Clear(); + surf = surfLocked = LockLuaSurface(kvp.Key,true); + //zero 21-apr-2016 - we shouldnt need this + //surf.Clear(); if (surfLocked != null) UnlockLuaSurface(surfLocked); LuaSurfaceSets[kvp.Key].SetPending(null); diff --git a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs index 006e89b9ab..1b9711dcf7 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs @@ -54,14 +54,14 @@ namespace BizHawk.Client.EmuHawk [LuaMethodAttributes( "DrawNew", - "Changes drawing target to the specified lua surface name. This may clobber any previous drawing to this surface." + "Changes drawing target to the specified lua surface name. This may clobber any previous drawing to this surface (pass false if you don't want it to)" )] - public void DrawNew(string name) + public void DrawNew(string name, bool? clear=true) { try { DrawFinish(); - _luaSurface = GlobalWin.DisplayManager.LockLuaSurface(name); + _luaSurface = GlobalWin.DisplayManager.LockLuaSurface(name,clear??true); } catch (InvalidOperationException ex) { @@ -69,6 +69,10 @@ namespace BizHawk.Client.EmuHawk } } + [LuaMethodAttributes( + "DrawFinish", + "Finishes drawing to the current lua surface and causes it to get displayed." + )] public void DrawFinish() { if(_luaSurface != null)