From 28acb602aea8274d7541447361fb71938ea65deb Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Tue, 20 Jun 2017 01:12:13 -0600 Subject: [PATCH 01/17] Create LuaPictureBox component --- .../tools/Lua/LuaPictureBox.cs | 379 ++++++++++++++++++ 1 file changed, 379 insertions(+) create mode 100644 BizHawk.Client.EmuHawk/tools/Lua/LuaPictureBox.cs diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaPictureBox.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaPictureBox.cs new file mode 100644 index 0000000000..9221cd3bfe --- /dev/null +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaPictureBox.cs @@ -0,0 +1,379 @@ +using System; +using System.Drawing; +using System.Windows.Forms; + +using LuaInterface; +using System.Collections.Generic; +using System.IO; + +namespace BizHawk.Client.EmuHawk +{ + public class LuaPictureBox : PictureBox + { + #region Helpers + private readonly Dictionary _imageCache = new Dictionary(); + + private readonly Dictionary _solidBrushes = new Dictionary(); + private readonly Dictionary _pens = new Dictionary(); + + private SolidBrush GetBrush(Color color) + { + SolidBrush b; + if (!_solidBrushes.TryGetValue(color, out b)) + { + b = new SolidBrush(color); + _solidBrushes[color] = b; + } + + return b; + } + + private Pen GetPen(Color color) + { + Pen p; + if (!_pens.TryGetValue(color, out p)) + { + p = new Pen(color); + _pens[color] = p; + } + + return p; + } + + #endregion + + private Color _defaultForeground = Color.Black; + private Color? _defaultBackground; + private Color? _defaultTextBackground = Color.FromArgb(128, 0, 0, 0); + + public LuaPictureBox() + { + Image = new Bitmap(Width, Height); + } + + public void LuaResize(int width, int height) + { + Width = width; + Height = height; + Image = new Bitmap(width, height); + } + + public void Clear(Color color) + { + var boxBackground = Graphics.FromImage(Image); + boxBackground.Clear(color); + } + + public void SetDefaultForegroundColor(Color color) + { + _defaultForeground = color; + } + + public void SetDefaultBackgroundColor(Color color) + { + _defaultBackground = color; + } + + public void SetDefaultTextBackground(Color color) + { + _defaultTextBackground = color; + } + + public void DrawBezier(LuaTable points, Color color) + { + var pointsArr = new Point[4]; + + var i = 0; + foreach (LuaTable point in points.Values) + { + pointsArr[i] = new Point((int)(double)(point[1]), (int)(double)(point[2])); + i++; + if (i >= 4) + { + break; + } + } + + var boxBackground = Graphics.FromImage(Image); + boxBackground.DrawBezier(GetPen(color), pointsArr[0], pointsArr[1], pointsArr[2], pointsArr[3]); + } + + public void DrawBox(int x, int y, int x2, int y2, Color? line = null, Color? background = null) + { + if (x < x2) + { + x2 = Math.Abs(x - x2); + } + else + { + x2 = x - x2; + x -= x2; + } + + if (y < y2) + { + y2 = Math.Abs(y - y2); + } + else + { + y2 = y - y2; + y -= y2; + } + + var boxBackground = Graphics.FromImage(Image); + boxBackground.DrawRectangle(GetPen(line ?? _defaultForeground), x, y, x2, y2); + + var bg = background ?? _defaultBackground; + if (bg.HasValue) + { + boxBackground = Graphics.FromImage(Image); + boxBackground.FillRectangle(GetBrush(bg.Value), x + 1, y + 1, x2 - 1, y2 - 1); + } + } + + public void DrawEllipse(int x, int y, int width, int height, Color? line = null, Color? background = null) + { + var bg = background ?? _defaultBackground; + var boxBackground = Graphics.FromImage(Image); + if (bg.HasValue) + { + var brush = GetBrush(bg.Value); + boxBackground.FillEllipse(brush, x, y, width, height); + boxBackground = Graphics.FromImage(Image); + } + + boxBackground.DrawEllipse(GetPen(line ?? _defaultForeground), x, y, width, height); + } + + public void DrawIcon(string path, int x, int y, int? width = null, int? height = null) + { + Icon icon; + if (width.HasValue && height.HasValue) + { + icon = new Icon(path, width.Value, height.Value); + } + else + { + icon = new Icon(path); + } + + var boxBackground = Graphics.FromImage(Image); + boxBackground.DrawIcon(icon, x, y); + } + + public void DrawImage(string path, int x, int y, int? width = null, int? height = null, bool cache = true) + { + Image img; + if (_imageCache.ContainsKey(path)) + { + img = _imageCache[path]; + } + else + { + img = Image.FromFile(path); + if (cache) + { + _imageCache.Add(path, img); + } + } + + var boxBackground = Graphics.FromImage(Image); + boxBackground.DrawImage(img, x, y, width ?? img.Width, height ?? img.Height); + } + + public void ClearImageCache() + { + foreach (var image in _imageCache) + { + image.Value.Dispose(); + } + + _imageCache.Clear(); + } + + public void DrawImageRegion(string path, int source_x, int source_y, int source_width, int source_height, int dest_x, int dest_y, int? dest_width = null, int? dest_height = null) + { + Image img; + if (_imageCache.ContainsKey(path)) + { + img = _imageCache[path]; + } + else + { + img = Image.FromFile(path); + _imageCache.Add(path, img); + } + + var destRect = new Rectangle(dest_x, dest_y, dest_width ?? source_width, dest_height ?? source_height); + + var boxBackground = Graphics.FromImage(Image); + boxBackground.DrawImage(img, destRect, source_x, source_y, source_width, source_height, GraphicsUnit.Pixel); + } + + public void DrawLine(int x1, int y1, int x2, int y2, Color? color = null) + { + var boxBackground = Graphics.FromImage(Image); + boxBackground.DrawLine(GetPen(color ?? _defaultForeground), x1, y1, x2, y2); + } + + public void DrawAxis(int x, int y, int size, Color? color = null) + { + DrawLine(x + size, y, x - size, y, color); + DrawLine(x, y + size, x, y - size, color); + } + + public void DrawArc(int x, int y, int width, int height, int startangle, int sweepangle, Color? line = null) + { + var boxBackground = Graphics.FromImage(Image); + boxBackground.DrawArc(GetPen(line ?? _defaultForeground), x, y, width, height, startangle, sweepangle); + } + + public void DrawPie( + int x, + int y, + int width, + int height, + int startangle, + int sweepangle, + Color? line = null, + Color? background = null) + { + var bg = background ?? _defaultBackground; + var boxBackground = Graphics.FromImage(Image); + if (bg.HasValue) + { + var brush = GetBrush(bg.Value); + boxBackground.FillPie(brush, x, y, width, height, startangle, sweepangle); + boxBackground = Graphics.FromImage(Image); + } + + boxBackground.DrawPie(GetPen(line ?? _defaultForeground), x + 1, y + 1, width - 1, height - 1, startangle, sweepangle); + } + + public void DrawPixel(int x, int y, Color? color = null) + { + var boxBackground = Graphics.FromImage(Image); + boxBackground.DrawLine(GetPen(color ?? _defaultForeground), x, y, x + 0.1F, y); + } + + public void DrawPolygon(LuaTable points, Color? line = null, Color? background = null) + { + var pointsArr = new Point[points.Values.Count]; + var i = 0; + foreach (LuaTable point in points.Values) + { + pointsArr[i] = new Point((int)(double)(point[1]), (int)(double)(point[2])); + i++; + } + + var boxBackground = Graphics.FromImage(Image); + boxBackground.DrawPolygon(GetPen(line ?? _defaultForeground), pointsArr); + var bg = background ?? _defaultBackground; + if (bg.HasValue) + { + boxBackground = Graphics.FromImage(Image); + boxBackground.FillPolygon(GetBrush(bg.Value), pointsArr); + } + } + + public void DrawRectangle(int x, int y, int width, int height, Color? line = null, Color? background = null) + { + var bg = background ?? _defaultBackground; + var boxBackground = Graphics.FromImage(Image); + if (bg.HasValue) + { + boxBackground.FillRectangle(GetBrush(bg.Value), x, y, width, height); + boxBackground = Graphics.FromImage(Image); + } + + boxBackground.DrawRectangle(GetPen(line ?? _defaultForeground), x, y, width, height); + } + + public void DrawText( + int x, + int y, + string message, + Color? forecolor = null, + Color? backcolor = null, + int? fontsize = null, + string fontfamily = null, + string fontstyle = null, + string horizalign = null, + string vertalign = null) + { + var family = FontFamily.GenericMonospace; + if (fontfamily != null) + { + family = new FontFamily(fontfamily); + } + + var fstyle = FontStyle.Regular; + if (fontstyle != null) + { + switch (fontstyle.ToLower()) + { + default: + case "regular": + break; + case "bold": + fstyle = FontStyle.Bold; + break; + case "italic": + fstyle = FontStyle.Italic; + break; + case "strikethrough": + fstyle = FontStyle.Strikeout; + break; + case "underline": + fstyle = FontStyle.Underline; + break; + } + } + + var f = new StringFormat(StringFormat.GenericDefault); + var font = new Font(family, fontsize ?? 12, fstyle, GraphicsUnit.Pixel); + var boxBackground = Graphics.FromImage(Image); + + Size sizeOfText = boxBackground.MeasureString(message, font, 0, f).ToSize(); + + if (horizalign != null) + { + switch (horizalign.ToLower()) + { + default: + case "left": + break; + case "center": + x -= sizeOfText.Width / 2; + break; + case "right": + x -= sizeOfText.Width / 2; + break; + } + } + + if (vertalign != null) + { + switch (vertalign.ToLower()) + { + default: + case "bottom": + break; + case "middle": + y -= sizeOfText.Height / 2; + break; + case "top": + y -= sizeOfText.Height; + break; + } + } + Rectangle rect = new Rectangle(new Point(x, y), sizeOfText); + boxBackground = Graphics.FromImage(Image); + boxBackground.FillRectangle(GetBrush(backcolor ?? _defaultTextBackground.Value), rect); + boxBackground = Graphics.FromImage(Image); + boxBackground.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit; + boxBackground = Graphics.FromImage(Image); + boxBackground.DrawString(message, font, new SolidBrush(forecolor ?? Color.Black), x, y); + } + } +} \ No newline at end of file From 089c487f260654b35f32a48de15e457ee80821f7 Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Tue, 20 Jun 2017 01:16:57 -0600 Subject: [PATCH 02/17] Use LuaPictureBox for the LuaCanvas --- .../tools/Lua/LuaCanvas.Designer.cs | 64 ++++++++++--------- 1 file changed, 33 insertions(+), 31 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.Designer.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.Designer.cs index 5e893f83a2..dc0b640832 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.Designer.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.Designer.cs @@ -1,4 +1,4 @@ -namespace BizHawk.Client.EmuHawk +namespace BizHawk.Client.EmuHawk { partial class LuaCanvas { @@ -28,39 +28,41 @@ /// private void InitializeComponent() { - this.pictureBox = new System.Windows.Forms.PictureBox(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit(); - this.SuspendLayout(); - // - // pictureBox - // - this.pictureBox.Location = new System.Drawing.Point(0, 0); - this.pictureBox.Margin = new System.Windows.Forms.Padding(0); - this.pictureBox.Name = "pictureBox"; - this.pictureBox.Size = new System.Drawing.Size(282, 260); - this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; - this.pictureBox.TabIndex = 0; - this.pictureBox.TabStop = false; - // - // LuaCanvas - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.AutoSize = true; - this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.ClientSize = new System.Drawing.Size(284, 261); - this.Controls.Add(this.pictureBox); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; - this.Name = "LuaCanvas"; - this.Text = "LuaCanvas"; - ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LuaCanvas)); + this.luaPictureBox = new BizHawk.Client.EmuHawk.LuaPictureBox(); + ((System.ComponentModel.ISupportInitialize)(this.luaPictureBox)).BeginInit(); + this.SuspendLayout(); + // + // luaPictureBox + // + this.luaPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("luaPictureBox.Image"))); + this.luaPictureBox.Location = new System.Drawing.Point(0, 0); + this.luaPictureBox.Margin = new System.Windows.Forms.Padding(0); + this.luaPictureBox.Name = "luaPictureBox"; + this.luaPictureBox.Size = new System.Drawing.Size(282, 260); + this.luaPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; + this.luaPictureBox.TabIndex = 0; + this.luaPictureBox.TabStop = false; + // + // LuaCanvas + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.AutoSize = true; + this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.ClientSize = new System.Drawing.Size(284, 261); + this.Controls.Add(this.luaPictureBox); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; + this.Name = "LuaCanvas"; + this.Text = "LuaCanvas"; + ((System.ComponentModel.ISupportInitialize)(this.luaPictureBox)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); } #endregion - private System.Windows.Forms.PictureBox pictureBox; + private LuaPictureBox luaPictureBox; } -} \ No newline at end of file +} From b0e39406a679549385e23cb114bd95bd31653131 Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Tue, 20 Jun 2017 01:18:35 -0600 Subject: [PATCH 03/17] Use LuaPictureBox functions in LuaCanvas Also add in the missing error logs and correct some typos in LuaMethodAttributes. --- BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs | 368 ++++++------------ 1 file changed, 121 insertions(+), 247 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs index 6336b17a9d..d2ee8b9c34 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs @@ -6,294 +6,196 @@ using System.IO; using BizHawk.Client.Common; using LuaInterface; using System; -using System.Collections.Generic; namespace BizHawk.Client.EmuHawk { [Description("Represents a canvas object returned by the gui.createcanvas() method")] public partial class LuaCanvas : Form { - private Color _defaultForeground = Color.White; - private Color? _defaultBackground; - - #region Helpers - private readonly Dictionary _imageCache = new Dictionary(); - - private readonly Dictionary _solidBrushes = new Dictionary(); - private readonly Dictionary _pens = new Dictionary(); - - private SolidBrush GetBrush(Color color) - { - SolidBrush b; - if (!_solidBrushes.TryGetValue(color, out b)) - { - b = new SolidBrush(color); - _solidBrushes[color] = b; - } - - return b; - } - - private Pen GetPen(Color color) - { - Pen p; - if (!_pens.TryGetValue(color, out p)) - { - p = new Pen(color); - _pens[color] = p; - } - - return p; - } - - #endregion - - private readonly Graphics _graphics; - public LuaCanvas(int width, int height) { InitializeComponent(); - pictureBox.Width = width; - pictureBox.Height = height; - pictureBox.Image = new Bitmap(width, height); - _graphics = Graphics.FromImage(pictureBox.Image); + luaPictureBox.Width = width; + luaPictureBox.Height = height; + luaPictureBox.Image = new Bitmap(width, height); } - [LuaMethodAttributes("SetTitle", "Sets the canvas window title")] + [LuaMethodAttributes( + "SetTitle", + "Sets the canvas window title")] public void SetTitle(string title) { Text = title; } - [LuaMethodAttributes("Clear", "Clears the canvas")] + [LuaMethodAttributes( + "Clear", + "Clears the canvas")] public void Clear(Color color) { - _graphics.Clear(color); + luaPictureBox.Clear(color); } - [LuaMethodAttributes("Refresh", "Redraws the canvas")] + [LuaMethodAttributes( + "Refresh", + "Redraws the canvas")] public new void Refresh() { - pictureBox.Refresh(); + luaPictureBox.Refresh(); } - [LuaMethodAttributes("defaultForeground", "Sets the default foreground color to use in drawing methods, white by default")] + [LuaMethodAttributes( + "SetDefaultForegroundColor", + "Sets the default foreground color to use in drawing methods, white by default")] public void SetDefaultForegroundColor(Color color) { - _defaultForeground = color; + luaPictureBox.SetDefaultForegroundColor(color); } - [LuaMethodAttributes("defaultBackground", "Sets the default background color to use in drawing methods, transparent by default")] + [LuaMethodAttributes( + "SetDefaultBackgroundColor", + "Sets the default background color to use in drawing methods, transparent by default")] public void SetDefaultBackgroundColor(Color color) { - _defaultBackground = color; + luaPictureBox.SetDefaultBackgroundColor(color); } - - [LuaMethodAttributes("drawBezier", "Draws a Bezier curve using the table of coordinates provided in the given color")] + + [LuaMethodAttributes( + "SetDefaultTextBackground", + "Sets the default backgroiund color to use in text drawing methods, half-transparent black by default")] + public void SetDefaultTextBackground(Color color) + { + luaPictureBox.SetDefaultTextBackground(color); + } + + [LuaMethodAttributes( + "DrawBezier", + "Draws a Bezier curve using the table of coordinates provided in the given color")] public void DrawBezier(LuaTable points, Color color) { try { - var pointsArr = new Point[4]; - - var i = 0; - foreach (LuaTable point in points.Values) - { - pointsArr[i] = new Point((int)(double)(point[1]), (int)(double)(point[2])); - i++; - if (i >= 4) - { - break; - } - } - - _graphics.DrawBezier(GetPen(color), pointsArr[0], pointsArr[1], pointsArr[2], pointsArr[3]); + luaPictureBox.DrawBezier(points, color); } - catch (Exception) + catch (Exception ex) { - // need to stop the script from here + ConsoleLuaLibrary.Log(ex.Message); return; } } [LuaMethodAttributes( - "drawBox", "Draws a rectangle on screen from x1/y1 to x2/y2. Same as drawRectangle except it receives two points intead of a point and width/height")] + "DrawBox", + "Draws a rectangle on screen from x1/y1 to x2/y2. Same as drawRectangle except it receives two points intead of a point and width/height")] public void DrawBox(int x, int y, int x2, int y2, Color? line = null, Color? background = null) { try { - if (x < x2) - { - x2 = Math.Abs(x - x2); - } - else - { - x2 = x - x2; - x -= x2; - } - - if (y < y2) - { - y2 = Math.Abs(y - y2); - } - else - { - y2 = y - y2; - y -= y2; - } - - _graphics.DrawRectangle(GetPen(line ?? _defaultForeground), x, y, x2, y2); - - var bg = background ?? _defaultBackground; - if (bg.HasValue) - { - _graphics.FillRectangle(GetBrush(bg.Value), x + 1, y + 1, x2 - 1, y2 - 1); - } + luaPictureBox.DrawBox(x, y, x2, y2, line, background); } - catch (Exception) + catch (Exception ex) { - // need to stop the script from here + ConsoleLuaLibrary.Log(ex.Message); return; } } [LuaMethodAttributes( - "drawEllipse", "Draws an ellipse at the given coordinates and the given width and height. Line is the color of the ellipse. Background is the optional fill color")] + "DrawEllipse", + "Draws an ellipse at the given coordinates and the given width and height. Line is the color of the ellipse. Background is the optional fill color")] public void DrawEllipse(int x, int y, int width, int height, Color? line = null, Color? background = null) { try { - var bg = background ?? _defaultBackground; - if (bg.HasValue) - { - var brush = GetBrush(bg.Value); - _graphics.FillEllipse(brush, x, y, width, height); - } - - _graphics.DrawEllipse(GetPen(line ?? _defaultForeground), x, y, width, height); + luaPictureBox.DrawEllipse(x, y, width, height, line, background); } - catch (Exception) + catch (Exception ex) { - // need to stop the script from here + ConsoleLuaLibrary.Log(ex.Message); return; } } [LuaMethodAttributes( - "drawIcon", "draws an Icon (.ico) file from the given path at the given coordinate. width and height are optional. If specified, it will resize the image accordingly")] + "DrawIcon", + "draws an Icon (.ico) file from the given path at the given coordinate. width and height are optional. If specified, it will resize the image accordingly")] public void DrawIcon(string path, int x, int y, int? width = null, int? height = null) { try { - Icon icon; - if (width.HasValue && height.HasValue) - { - icon = new Icon(path, width.Value, height.Value); - } - else - { - icon = new Icon(path); - } - - _graphics.DrawIcon(icon, x, y); + luaPictureBox.DrawIcon(path, x, y, width, height); } - catch (Exception) + catch (Exception ex) { - // need to stop the script from here + ConsoleLuaLibrary.Log(ex.Message); return; } } [LuaMethodAttributes( - "drawImage", "draws an image file from the given path at the given coordinate. width and height are optional. If specified, it will resize the image accordingly")] + "DrawImage", + "draws an image file from the given path at the given coordinate. width and height are optional. If specified, it will resize the image accordingly")] public void DrawImage(string path, int x, int y, int? width = null, int? height = null, bool cache = true) { if (!File.Exists(path)) { - //Log("File not found: " + path); + ConsoleLuaLibrary.Log("File not found: " + path + "\nScript Terminated"); return; } - - Image img; - if (_imageCache.ContainsKey(path)) - { - img = _imageCache[path]; - } - else - { - img = Image.FromFile(path); - if (cache) - { - _imageCache.Add(path, img); - } - } - _graphics.DrawImage(img, x, y, width ?? img.Width, height ?? img.Height); + luaPictureBox.DrawImage(path, x, y, width, height, cache); } [LuaMethodAttributes( - "clearImageCache", "clears the image cache that is built up by using gui.drawImage, also releases the file handle for cached images")] + "ClearImageCache", + "clears the image cache that is built up by using gui.drawImage, also releases the file handle for cached images")] public void ClearImageCache() { - foreach (var image in _imageCache) - { - image.Value.Dispose(); - } - - _imageCache.Clear(); + luaPictureBox.ClearImageCache(); } [LuaMethodAttributes( - "drawImageRegion", "draws a given region of an image file from the given path at the given coordinate, and optionally with the given size")] + "DrawImageRegion", + "draws a given region of an image file from the given path at the given coordinate, and optionally with the given size")] public void DrawImageRegion(string path, int source_x, int source_y, int source_width, int source_height, int dest_x, int dest_y, int? dest_width = null, int? dest_height = null) { if (!File.Exists(path)) { - //Log("File not found: " + path); + ConsoleLuaLibrary.Log("File not found: " + path + "\nScript Terminated"); return; } - Image img; - if (_imageCache.ContainsKey(path)) - { - img = _imageCache[path]; - } - else - { - img = Image.FromFile(path); - _imageCache.Add(path, img); - } - - var destRect = new Rectangle(dest_x, dest_y, dest_width ?? source_width, dest_height ?? source_height); - - _graphics.DrawImage(img, destRect, source_x, source_y, source_width, source_height, GraphicsUnit.Pixel); + luaPictureBox.DrawImageRegion(path, source_x, source_y, source_width, source_height, dest_x, dest_y, dest_width, dest_height); } [LuaMethodAttributes( - "drawLine", "Draws a line from the first coordinate pair to the 2nd. Color is optional (if not specified it will be drawn black)")] + "DrawLine", + "Draws a line from the first coordinate pair to the 2nd. Color is optional (if not specified it will be drawn black)")] public void DrawLine(int x1, int y1, int x2, int y2, Color? color = null) { - _graphics.DrawLine(GetPen(color ?? _defaultForeground), x1, y1, x2, y2); - } - - [LuaMethodAttributes("drawAxis", "Draws an axis of the specified size at the coordinate pair.)")] - public void DrawAxis(int x, int y, int size, Color? color = null) - { - DrawLine(x + size, y, x - size, y, color); - DrawLine(x, y + size, x, y - size, color); + luaPictureBox.DrawLine(x1, y1, x2, y2, color); } [LuaMethodAttributes( - "drawArc", + "DrawAxis", + "Draws an axis of the specified size at the coordinate pair.)")] + public void DrawAxis(int x, int y, int size, Color? color = null) + { + luaPictureBox.DrawAxis(x, y, size, color); + } + + [LuaMethodAttributes( + "DrawArc", "draws a Arc shape at the given coordinates and the given width and height" )] public void DrawArc(int x, int y, int width, int height, int startangle, int sweepangle, Color? line = null) { - var pen = new Pen(line.HasValue ? line.Value : Color.Black); - _graphics.DrawArc(pen, x, y, width, height, startangle, sweepangle); + luaPictureBox.DrawArc(x, y, width, height, startangle, sweepangle, line); } - [LuaMethodAttributes("drawPie", "draws a Pie shape at the given coordinates and the given width and height")] + [LuaMethodAttributes( + "DrawPie", + "draws a Pie shape at the given coordinates and the given width and height")] public void DrawPie( int x, int y, @@ -304,55 +206,37 @@ namespace BizHawk.Client.EmuHawk Color? line = null, Color? background = null) { - var bg = background ?? _defaultBackground; - if (bg.HasValue) - { - var brush = GetBrush(bg.Value); - _graphics.FillPie(brush, x, y, width, height, startangle, sweepangle); - } - - _graphics.DrawPie(GetPen(line ?? _defaultForeground), x + 1, y + 1, width - 1, height - 1, startangle, sweepangle); + luaPictureBox.DrawPie(x, y, width, height, startangle, sweepangle, line, background); } [LuaMethodAttributes( - "drawPixel", "Draws a single pixel at the given coordinates in the given color. Color is optional (if not specified it will be drawn black)")] + "DrawPixel", + "Draws a single pixel at the given coordinates in the given color. Color is optional (if not specified it will be drawn black)")] public void DrawPixel(int x, int y, Color? color = null) { try { - _graphics.DrawLine(GetPen(color ?? _defaultForeground), x, y, x + 0.1F, y); + luaPictureBox.DrawPixel(x, y, color); } - catch (Exception) + catch (Exception ex) { - // need to stop the script from here + ConsoleLuaLibrary.Log(ex.Message); return; } } [LuaMethodAttributes( - "drawPolygon", "Draws a polygon using the table of coordinates specified in points. This should be a table of tables(each of size 2). Line is the color of the polygon. Background is the optional fill color")] + "DrawPolygon", + "Draws a polygon using the table of coordinates specified in points. This should be a table of tables(each of size 2). Line is the color of the polygon. Background is the optional fill color")] public void DrawPolygon(LuaTable points, Color? line = null, Color? background = null) { try { - var pointsArr = new Point[points.Values.Count]; - var i = 0; - foreach (LuaTable point in points.Values) - { - pointsArr[i] = new Point((int)(double)(point[1]), (int)(double)(point[2])); - i++; - } - - _graphics.DrawPolygon(GetPen(line ?? _defaultForeground), pointsArr); - var bg = background ?? _defaultBackground; - if (bg.HasValue) - { - _graphics.FillPolygon(GetBrush(bg.Value), pointsArr); - } + luaPictureBox.DrawPolygon(points, line, background); } - catch (Exception) + catch (Exception ex) { - // need to stop the script from here + ConsoleLuaLibrary.Log(ex.Message); return; } } @@ -361,55 +245,45 @@ namespace BizHawk.Client.EmuHawk [LuaMethodAttributes( "DrawRectangle", "Draws a rectangle at the given coordinate and the given width and height. Line is the color of the box. Background is the optional fill color")] - public void DrawRectangle(int x, int y, int width, int height, Color? outline = null, Color? fill = null) + public void DrawRectangle(int x, int y, int width, int height, Color? line = null, Color? background = null) { - if (fill.HasValue) - { - var brush = new SolidBrush(fill.Value); - _graphics.FillRectangle(brush, x, y, width, height); - } + luaPictureBox.DrawRectangle(x, y, width, height, line, background); + } - var pen = new Pen(outline.HasValue ? outline.Value : Color.Black); - _graphics.DrawRectangle(pen, x, y, width, height); + [LuaMethodAttributes( + "DrawString", + "Alias of DrawText()")] + public void DrawString( + int x, + int y, + string message, + Color? forecolor = null, + Color? backcolor = null, + int? fontsize = null, + string fontfamily = null, + string fontstyle = null, + string horizalign = null, + string vertalign = null) + { + luaPictureBox.DrawText(x, y, message, forecolor, backcolor, fontsize, fontfamily, fontstyle, horizalign, vertalign); } [LuaMethodAttributes( "DrawText", "Draws the given message at the given x,y coordinates and the given color. The default color is white. A fontfamily can be specified and is monospace generic if none is specified (font family options are the same as the .NET FontFamily class). The fontsize default is 12. The default font style is regular. Font style options are regular, bold, italic, strikethrough, underline. Horizontal alignment options are left (default), center, or right. Vertical alignment options are bottom (default), middle, or top. Alignment options specify which ends of the text will be drawn at the x and y coordinates.")] - public void DrawText(int x, int y, string message, Color? color = null, int? fontsize = null, string fontfamily = null, string fontstyle = null) + public void DrawText( + int x, + int y, + string message, + Color? forecolor = null, + Color? backcolor = null, + int? fontsize = null, + string fontfamily = null, + string fontstyle = null, + string horizalign = null, + string vertalign = null) { - var family = FontFamily.GenericMonospace; - if (fontfamily != null) - { - family = new FontFamily(fontfamily); - } - - var fstyle = FontStyle.Regular; - if (fontstyle != null) - { - switch (fontstyle.ToLower()) - { - default: - case "regular": - break; - case "bold": - fstyle = FontStyle.Bold; - break; - case "italic": - fstyle = FontStyle.Italic; - break; - case "strikethrough": - fstyle = FontStyle.Strikeout; - break; - case "underline": - fstyle = FontStyle.Underline; - break; - } - } - - var font = new Font(family, fontsize ?? 12, fstyle, GraphicsUnit.Pixel); - _graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit; - _graphics.DrawString(message, font, new SolidBrush(color ?? Color.White), x, y); + luaPictureBox.DrawText(x, y, message, forecolor, backcolor, fontsize, fontfamily, fontstyle, horizalign, vertalign); } } } From 2ddadeae241c0979c016e6d384784c1f94a1bc20 Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Tue, 20 Jun 2017 01:20:27 -0600 Subject: [PATCH 04/17] Add PictureBox component and methods for drawing on it --- .../Lua/Libraries/EmuLuaLibrary.Forms.cs | 728 +++++++++++++++++- 1 file changed, 727 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs index 1ad7cdae9e..337802fa49 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; @@ -7,6 +7,7 @@ using System.Windows.Forms; using BizHawk.Client.Common; using LuaInterface; +using System.IO; namespace BizHawk.Client.EmuHawk { @@ -412,6 +413,731 @@ namespace BizHawk.Client.EmuHawk return ""; } + [LuaMethodAttributes("PictureBox", "Creates a new drawing area in the form. Optionally the location in the form as well as the size of the drawing area can be specified. Returns the handle the component can be refered to with.")] + public int PictureBox(int formHandle, int? x = null, int? y = null, int? width = null, int? height = null) + { + var form = GetForm(formHandle); + if (form == null) + { + return 0; + } + + var pictureBox = new LuaPictureBox(); + form.Controls.Add(pictureBox); + + if (x.HasValue && y.HasValue) + { + SetLocation(pictureBox, x.Value, y.Value); + } + + if (width.HasValue && height.HasValue) + { + pictureBox.LuaResize(width.Value, height.Value); + } + + SetSize(pictureBox, width.Value, height.Value); + + return (int)pictureBox.Handle; + } + + #region LuaPictureBox Methods + + [LuaMethodAttributes( + "Clear", + "Clears the canvas")] + public void Clear(int componentHandle, Color color) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).Clear(color); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "Refresh", + "Redraws the canvas")] + public void Refresh(int componentHandle) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).Refresh(); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "SetDefaultForegroundColor", + "Sets the default foreground color to use in drawing methods, white by default")] + public void SetDefaultForegroundColor(int componentHandle, Color color) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).SetDefaultForegroundColor(color); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "SetDefaultBackgroundColor", + "Sets the default background color to use in drawing methods, transparent by default")] + public void SetDefaultBackgroundColor(int componentHandle, Color color) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).SetDefaultBackgroundColor(color); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "SetDefaultTextBackground", + "Sets the default backgroiund color to use in text drawing methods, half-transparent black by default")] + public void SetDefaultTextBackground(int componentHandle, Color color) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).SetDefaultTextBackground(color); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "DrawBezier", + "Draws a Bezier curve using the table of coordinates provided in the given color")] + public void DrawBezier(int componentHandle, LuaTable points, Color color) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).DrawBezier(points, color); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "DrawBox", + "Draws a rectangle on screen from x1/y1 to x2/y2. Same as drawRectangle except it receives two points intead of a point and width/height")] + public void DrawBox(int componentHandle, int x, int y, int x2, int y2, Color? line = null, Color? background = null) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).DrawBox(x, y, x2, y2, line, background); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "DrawEllipse", + "Draws an ellipse at the given coordinates and the given width and height. Line is the color of the ellipse. Background is the optional fill color")] + public void DrawEllipse(int componentHandle, int x, int y, int width, int height, Color? line = null, Color? background = null) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).DrawEllipse(x, y, width, height, line, background); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "DrawIcon", + "draws an Icon (.ico) file from the given path at the given coordinate. width and height are optional. If specified, it will resize the image accordingly")] + public void DrawIcon(int componentHandle, string path, int x, int y, int? width = null, int? height = null) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).DrawIcon(path, x, y, width, height); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "DrawImage", + "draws an image file from the given path at the given coordinate. width and height are optional. If specified, it will resize the image accordingly")] + public void DrawImage(int componentHandle, string path, int x, int y, int? width = null, int? height = null, bool cache = true) + { + if (!File.Exists(path)) + { + ConsoleLuaLibrary.Log("File not found: " + path + "\nScript Terminated"); + return; + } + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).DrawImage(path, x, y, width, height, cache); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "ClearImageCache", + "clears the image cache that is built up by using gui.drawImage, also releases the file handle for cached images")] + public void ClearImageCache(int componentHandle) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).ClearImageCache(); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "DrawImageRegion", + "draws a given region of an image file from the given path at the given coordinate, and optionally with the given size")] + public void DrawImageRegion(int componentHandle, string path, int source_x, int source_y, int source_width, int source_height, int dest_x, int dest_y, int? dest_width = null, int? dest_height = null) + { + if (!File.Exists(path)) + { + ConsoleLuaLibrary.Log("File not found: " + path + "\nScript Terminated"); + return; + } + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).DrawImageRegion(path, source_x, source_y, source_width, source_height, dest_x, dest_y, dest_width, dest_height); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "DrawLine", + "Draws a line from the first coordinate pair to the 2nd. Color is optional (if not specified it will be drawn black)")] + public void DrawLine(int componentHandle, int x1, int y1, int x2, int y2, Color? color = null) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).DrawLine(x1, y1, x2, y2, color); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "DrawAxis", + "Draws an axis of the specified size at the coordinate pair.)")] + public void DrawAxis(int componentHandle, int x, int y, int size, Color? color = null) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).DrawAxis(x, y, size, color); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "DrawArc", + "draws a Arc shape at the given coordinates and the given width and height" + )] + public void DrawArc(int componentHandle, int x, int y, int width, int height, int startangle, int sweepangle, Color? line = null) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).DrawArc(x, y, width, height, startangle, sweepangle, line); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "DrawPie", + "draws a Pie shape at the given coordinates and the given width and height")] + public void DrawPie( + int componentHandle, + int x, + int y, + int width, + int height, + int startangle, + int sweepangle, + Color? line = null, + Color? background = null) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).DrawPie(x, y, width, height, startangle, sweepangle, line, background); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "DrawPixel", + "Draws a single pixel at the given coordinates in the given color. Color is optional (if not specified it will be drawn black)")] + public void DrawPixel(int componentHandle, int x, int y, Color? color = null) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).DrawPixel(x, y, color); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "DrawPolygon", + "Draws a polygon using the table of coordinates specified in points. This should be a table of tables(each of size 2). Line is the color of the polygon. Background is the optional fill color")] + public void DrawPolygon(int componentHandle, LuaTable points, Color? line = null, Color? background = null) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).DrawPolygon(points, line, background); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + + [LuaMethodAttributes( + "DrawRectangle", + "Draws a rectangle at the given coordinate and the given width and height. Line is the color of the box. Background is the optional fill color")] + public void DrawRectangle(int componentHandle, int x, int y, int width, int height, Color? line = null, Color? background = null) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).DrawRectangle(x, y, width, height, line, background); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "DrawString", + "Alias of DrawText()")] + public void DrawString( + int componentHandle, + int x, + int y, + string message, + Color? forecolor = null, + Color? backcolor = null, + int? fontsize = null, + string fontfamily = null, + string fontstyle = null, + string horizalign = null, + string vertalign = null) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).DrawText(x, y, message, forecolor, backcolor, fontsize, fontfamily, fontstyle, horizalign, vertalign); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + [LuaMethodAttributes( + "DrawText", + "Draws the given message at the given x,y coordinates and the given color. The default color is white. A fontfamily can be specified and is monospace generic if none is specified (font family options are the same as the .NET FontFamily class). The fontsize default is 12. The default font style is regular. Font style options are regular, bold, italic, strikethrough, underline. Horizontal alignment options are left (default), center, or right. Vertical alignment options are bottom (default), middle, or top. Alignment options specify which ends of the text will be drawn at the x and y coordinates.")] + public void DrawText( + int componentHandle, + int x, + int y, + string message, + Color? forecolor = null, + Color? backcolor = null, + int? fontsize = null, + string fontfamily = null, + string fontstyle = null, + string horizalign = null, + string vertalign = null) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + (control as LuaPictureBox).DrawText(x, y, message, forecolor, backcolor, fontsize, fontfamily, fontstyle, horizalign, vertalign); + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + } + + #endregion + [LuaMethodAttributes("setdropdownitems", "Sets the items for a given dropdown box")] public void SetDropdownItems(int handle, LuaTable items) { From 1eff513e4357fc17a41205b7cc128ad286f593f7 Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Tue, 20 Jun 2017 02:01:02 -0600 Subject: [PATCH 05/17] I don't have a clue what happened here I assume something changed here because I added a file to the project? Specifically LuaPictureBox. I don't know what specifically changed though and things won't build without updating this --- BizHawk.sln | 50 ++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/BizHawk.sln b/BizHawk.sln index 02b4a3037b..19d3c4fc7e 100644 --- a/BizHawk.sln +++ b/BizHawk.sln @@ -1,7 +1,7 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.24720.0 +# Visual Studio 15 +VisualStudioVersion = 15.0.26430.13 MinimumVisualStudioVersion = 12.0.31101.0 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Version", "Version\Version.csproj", "{0CE8B337-08E3-4602-BF10-C4D4C75D2F13}" EndProject @@ -62,128 +62,162 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BizHawk.Client.ApiHawk", "B EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Debug|Any CPU.ActiveCfg = Debug|x86 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Debug|x64.ActiveCfg = Debug|x64 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Debug|x64.Build.0 = Debug|x64 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Debug|x86.ActiveCfg = Debug|x86 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Debug|x86.Build.0 = Debug|x86 + {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Release|Any CPU.ActiveCfg = Release|x86 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Release|x64.ActiveCfg = Release|x64 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Release|x64.Build.0 = Release|x64 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Release|x86.ActiveCfg = Release|x86 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Release|x86.Build.0 = Release|x86 + {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Debug|Any CPU.ActiveCfg = Debug|x86 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Debug|x64.ActiveCfg = Debug|x64 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Debug|x64.Build.0 = Debug|x64 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Debug|x86.ActiveCfg = Debug|x86 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Debug|x86.Build.0 = Debug|x86 + {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Release|Any CPU.ActiveCfg = Release|x86 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Release|x64.ActiveCfg = Release|x64 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Release|x64.Build.0 = Release|x64 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Release|x86.ActiveCfg = Release|x86 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Release|x86.Build.0 = Release|x86 + {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Debug|Any CPU.ActiveCfg = Debug|x86 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Debug|x64.ActiveCfg = Debug|x64 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Debug|x64.Build.0 = Debug|x64 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Debug|x86.ActiveCfg = Debug|x86 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Debug|x86.Build.0 = Debug|x86 + {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Release|Any CPU.ActiveCfg = Release|x86 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Release|x64.ActiveCfg = Release|x64 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Release|x64.Build.0 = Release|x64 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Release|x86.ActiveCfg = Release|x86 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Release|x86.Build.0 = Release|x86 + {DD448B37-BA3F-4544-9754-5406E8094723}.Debug|Any CPU.ActiveCfg = Debug|x86 {DD448B37-BA3F-4544-9754-5406E8094723}.Debug|x64.ActiveCfg = Debug|x64 {DD448B37-BA3F-4544-9754-5406E8094723}.Debug|x64.Build.0 = Debug|x64 {DD448B37-BA3F-4544-9754-5406E8094723}.Debug|x86.ActiveCfg = Debug|x86 {DD448B37-BA3F-4544-9754-5406E8094723}.Debug|x86.Build.0 = Debug|x86 + {DD448B37-BA3F-4544-9754-5406E8094723}.Release|Any CPU.ActiveCfg = Release|x86 {DD448B37-BA3F-4544-9754-5406E8094723}.Release|x64.ActiveCfg = Release|x64 {DD448B37-BA3F-4544-9754-5406E8094723}.Release|x64.Build.0 = Release|x64 {DD448B37-BA3F-4544-9754-5406E8094723}.Release|x86.ActiveCfg = Release|x86 {DD448B37-BA3F-4544-9754-5406E8094723}.Release|x86.Build.0 = Release|x86 + {C4366030-6D03-424B-AE53-F4F43BB217C3}.Debug|Any CPU.ActiveCfg = Debug|x86 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Debug|x64.ActiveCfg = Debug|x64 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Debug|x64.Build.0 = Debug|x64 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Debug|x86.ActiveCfg = Debug|x86 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Debug|x86.Build.0 = Debug|x86 + {C4366030-6D03-424B-AE53-F4F43BB217C3}.Release|Any CPU.ActiveCfg = Release|x86 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Release|x64.ActiveCfg = Release|x64 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Release|x64.Build.0 = Release|x64 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Release|x86.ActiveCfg = Release|x86 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Release|x86.Build.0 = Release|x86 + {F51946EA-827F-4D82-B841-1F2F6D060312}.Debug|Any CPU.ActiveCfg = Debug|x86 {F51946EA-827F-4D82-B841-1F2F6D060312}.Debug|x64.ActiveCfg = Debug|x64 {F51946EA-827F-4D82-B841-1F2F6D060312}.Debug|x64.Build.0 = Debug|x64 {F51946EA-827F-4D82-B841-1F2F6D060312}.Debug|x86.ActiveCfg = Debug|x86 {F51946EA-827F-4D82-B841-1F2F6D060312}.Debug|x86.Build.0 = Debug|x86 + {F51946EA-827F-4D82-B841-1F2F6D060312}.Release|Any CPU.ActiveCfg = Release|x86 {F51946EA-827F-4D82-B841-1F2F6D060312}.Release|x64.ActiveCfg = Release|x64 {F51946EA-827F-4D82-B841-1F2F6D060312}.Release|x64.Build.0 = Release|x64 {F51946EA-827F-4D82-B841-1F2F6D060312}.Release|x86.ActiveCfg = Release|x86 {F51946EA-827F-4D82-B841-1F2F6D060312}.Release|x86.Build.0 = Release|x86 + {E1A23168-B571-411C-B360-2229E7225E0E}.Debug|Any CPU.ActiveCfg = Debug|x86 {E1A23168-B571-411C-B360-2229E7225E0E}.Debug|x64.ActiveCfg = Debug|x64 {E1A23168-B571-411C-B360-2229E7225E0E}.Debug|x64.Build.0 = Debug|x64 {E1A23168-B571-411C-B360-2229E7225E0E}.Debug|x86.ActiveCfg = Debug|x86 {E1A23168-B571-411C-B360-2229E7225E0E}.Debug|x86.Build.0 = Debug|x86 + {E1A23168-B571-411C-B360-2229E7225E0E}.Release|Any CPU.ActiveCfg = Release|x86 {E1A23168-B571-411C-B360-2229E7225E0E}.Release|x64.ActiveCfg = Release|x64 {E1A23168-B571-411C-B360-2229E7225E0E}.Release|x64.Build.0 = Release|x64 {E1A23168-B571-411C-B360-2229E7225E0E}.Release|x86.ActiveCfg = Release|x86 {E1A23168-B571-411C-B360-2229E7225E0E}.Release|x86.Build.0 = Release|x86 + {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Debug|Any CPU.ActiveCfg = Debug|x86 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Debug|x64.ActiveCfg = Debug|x64 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Debug|x64.Build.0 = Debug|x64 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Debug|x86.ActiveCfg = Debug|x86 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Debug|x86.Build.0 = Debug|x86 + {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Release|Any CPU.ActiveCfg = Release|x86 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Release|x64.ActiveCfg = Release|x64 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Release|x64.Build.0 = Release|x64 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Release|x86.ActiveCfg = Release|x86 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Release|x86.Build.0 = Release|x86 + {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Debug|Any CPU.ActiveCfg = Debug|x86 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Debug|x64.ActiveCfg = Debug|x64 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Debug|x64.Build.0 = Debug|x64 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Debug|x86.ActiveCfg = Debug|x86 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Debug|x86.Build.0 = Debug|x86 + {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Release|Any CPU.ActiveCfg = Release|x86 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Release|x64.ActiveCfg = Release|x64 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Release|x64.Build.0 = Release|x64 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Release|x86.ActiveCfg = Release|x86 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Release|x86.Build.0 = Release|x86 + {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Debug|Any CPU.ActiveCfg = Debug|x86 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Debug|x64.ActiveCfg = Debug|x64 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Debug|x64.Build.0 = Debug|x64 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Debug|x86.ActiveCfg = Debug|x86 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Debug|x86.Build.0 = Debug|x86 + {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Release|Any CPU.ActiveCfg = Release|x86 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Release|x64.ActiveCfg = Release|x64 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Release|x64.Build.0 = Release|x64 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Release|x86.ActiveCfg = Release|x86 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Release|x86.Build.0 = Release|x86 + {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Debug|Any CPU.ActiveCfg = Debug|x86 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Debug|x64.ActiveCfg = Debug|x64 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Debug|x64.Build.0 = Debug|x64 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Debug|x86.ActiveCfg = Debug|x86 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Debug|x86.Build.0 = Debug|x86 + {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Release|Any CPU.ActiveCfg = Release|x86 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Release|x64.ActiveCfg = Release|x64 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Release|x64.Build.0 = Release|x64 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Release|x86.ActiveCfg = Release|x86 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Release|x86.Build.0 = Release|x86 + {337CA23E-65E7-44E1-9411-97EE08BB8116}.Debug|Any CPU.ActiveCfg = Debug|x86 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Debug|x64.ActiveCfg = Debug|x64 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Debug|x64.Build.0 = Debug|x64 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Debug|x86.ActiveCfg = Debug|x86 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Debug|x86.Build.0 = Debug|x86 + {337CA23E-65E7-44E1-9411-97EE08BB8116}.Release|Any CPU.ActiveCfg = Release|x86 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Release|x64.ActiveCfg = Release|x64 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Release|x64.Build.0 = Release|x64 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Release|x86.ActiveCfg = Release|x86 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Release|x86.Build.0 = Release|x86 + {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Debug|Any CPU.ActiveCfg = Debug|x86 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Debug|x64.ActiveCfg = Debug|x64 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Debug|x64.Build.0 = Debug|x64 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Debug|x86.ActiveCfg = Debug|x86 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Debug|x86.Build.0 = Debug|x86 + {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Release|Any CPU.ActiveCfg = Release|x86 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Release|x64.ActiveCfg = Release|x64 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Release|x64.Build.0 = Release|x64 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Release|x86.ActiveCfg = Release|x86 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Release|x86.Build.0 = Release|x86 + {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Debug|Any CPU.ActiveCfg = Debug|x86 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Debug|x64.ActiveCfg = Debug|x64 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Debug|x64.Build.0 = Debug|x64 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Debug|x86.ActiveCfg = Debug|x86 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Debug|x86.Build.0 = Debug|x86 + {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Release|Any CPU.ActiveCfg = Release|x86 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Release|x64.ActiveCfg = Release|x64 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Release|x64.Build.0 = Release|x64 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Release|x86.ActiveCfg = Release|x86 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Release|x86.Build.0 = Release|x86 + {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Debug|Any CPU.Build.0 = Debug|Any CPU {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Debug|x64.ActiveCfg = Debug|x64 {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Debug|x64.Build.0 = Debug|x64 {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Debug|x86.ActiveCfg = Debug|x86 {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Debug|x86.Build.0 = Debug|x86 + {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Release|Any CPU.Build.0 = Release|Any CPU {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Release|x64.ActiveCfg = Release|x64 {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Release|x64.Build.0 = Release|x64 {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Release|x86.ActiveCfg = Release|x86 @@ -193,19 +227,19 @@ Global HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution + {24A0AA3C-B25F-4197-B23D-476D6462DBA0} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} {DD448B37-BA3F-4544-9754-5406E8094723} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} {C4366030-6D03-424B-AE53-F4F43BB217C3} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} - {24A0AA3C-B25F-4197-B23D-476D6462DBA0} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} - {2D2890A8-C338-4439-AD8B-CB9EE85A94F9} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} - {B95649F5-A0AE-41EB-B62B-578A2AFF5E18} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} - {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} - {E1A23168-B571-411C-B360-2229E7225E0E} = {3627C08B-3E43-4224-9DA4-40BD69495FBC} {F51946EA-827F-4D82-B841-1F2F6D060312} = {3627C08B-3E43-4224-9DA4-40BD69495FBC} + {E1A23168-B571-411C-B360-2229E7225E0E} = {3627C08B-3E43-4224-9DA4-40BD69495FBC} {197D4314-8A9F-49BA-977D-54ACEFAEB6BA} = {3627C08B-3E43-4224-9DA4-40BD69495FBC} {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465} = {0540A9A6-977E-466D-8BD3-1D8590BD5282} {5160CFB1-5389-47C1-B7F6-8A0DC97641EE} = {0540A9A6-977E-466D-8BD3-1D8590BD5282} + {2D2890A8-C338-4439-AD8B-CB9EE85A94F9} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} {337CA23E-65E7-44E1-9411-97EE08BB8116} = {0540A9A6-977E-466D-8BD3-1D8590BD5282} {E6B436B1-A3CD-4C9A-8F76-5D7154726884} = {0540A9A6-977E-466D-8BD3-1D8590BD5282} + {B95649F5-A0AE-41EB-B62B-578A2AFF5E18} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} + {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} EndGlobalSection GlobalSection(MonoDevelopProperties) = preSolution StartupItem = BizHawk.Client.EmuHawk\BizHawk.Client.EmuHawk.csproj From a6eb3f060e0c9ae484c61e3b0463df718497d608 Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Tue, 20 Jun 2017 02:18:24 -0600 Subject: [PATCH 06/17] Include LuaPictureBox in project Oops. --- BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj b/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj index 0330eac5e4..3bb2b2ccac 100644 --- a/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj +++ b/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj @@ -1,4 +1,4 @@ - + Debug @@ -902,6 +902,9 @@ NewHexEditor.cs + + Component + @@ -2197,4 +2200,4 @@ - \ No newline at end of file + From ae3020b7c11dffc8ff7a2300168d47dafdd785b6 Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Tue, 20 Jun 2017 02:19:16 -0600 Subject: [PATCH 07/17] Undo previous edit This was the wrong file to edit --- BizHawk.sln | 48 +++++++----------------------------------------- 1 file changed, 7 insertions(+), 41 deletions(-) diff --git a/BizHawk.sln b/BizHawk.sln index 19d3c4fc7e..0d46d5e08b 100644 --- a/BizHawk.sln +++ b/BizHawk.sln @@ -1,7 +1,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.26430.13 +# Visual Studio 14 +VisualStudioVersion = 14.0.24720.0 MinimumVisualStudioVersion = 12.0.31101.0 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Version", "Version\Version.csproj", "{0CE8B337-08E3-4602-BF10-C4D4C75D2F13}" EndProject @@ -62,162 +62,128 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BizHawk.Client.ApiHawk", "B EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Debug|Any CPU.ActiveCfg = Debug|x86 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Debug|x64.ActiveCfg = Debug|x64 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Debug|x64.Build.0 = Debug|x64 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Debug|x86.ActiveCfg = Debug|x86 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Debug|x86.Build.0 = Debug|x86 - {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Release|Any CPU.ActiveCfg = Release|x86 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Release|x64.ActiveCfg = Release|x64 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Release|x64.Build.0 = Release|x64 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Release|x86.ActiveCfg = Release|x86 {0CE8B337-08E3-4602-BF10-C4D4C75D2F13}.Release|x86.Build.0 = Release|x86 - {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Debug|Any CPU.ActiveCfg = Debug|x86 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Debug|x64.ActiveCfg = Debug|x64 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Debug|x64.Build.0 = Debug|x64 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Debug|x86.ActiveCfg = Debug|x86 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Debug|x86.Build.0 = Debug|x86 - {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Release|Any CPU.ActiveCfg = Release|x86 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Release|x64.ActiveCfg = Release|x64 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Release|x64.Build.0 = Release|x64 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Release|x86.ActiveCfg = Release|x86 {24A0AA3C-B25F-4197-B23D-476D6462DBA0}.Release|x86.Build.0 = Release|x86 - {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Debug|Any CPU.ActiveCfg = Debug|x86 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Debug|x64.ActiveCfg = Debug|x64 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Debug|x64.Build.0 = Debug|x64 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Debug|x86.ActiveCfg = Debug|x86 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Debug|x86.Build.0 = Debug|x86 - {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Release|Any CPU.ActiveCfg = Release|x86 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Release|x64.ActiveCfg = Release|x64 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Release|x64.Build.0 = Release|x64 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Release|x86.ActiveCfg = Release|x86 {866F8D13-0678-4FF9-80A4-A3993FD4D8A3}.Release|x86.Build.0 = Release|x86 - {DD448B37-BA3F-4544-9754-5406E8094723}.Debug|Any CPU.ActiveCfg = Debug|x86 {DD448B37-BA3F-4544-9754-5406E8094723}.Debug|x64.ActiveCfg = Debug|x64 {DD448B37-BA3F-4544-9754-5406E8094723}.Debug|x64.Build.0 = Debug|x64 {DD448B37-BA3F-4544-9754-5406E8094723}.Debug|x86.ActiveCfg = Debug|x86 {DD448B37-BA3F-4544-9754-5406E8094723}.Debug|x86.Build.0 = Debug|x86 - {DD448B37-BA3F-4544-9754-5406E8094723}.Release|Any CPU.ActiveCfg = Release|x86 {DD448B37-BA3F-4544-9754-5406E8094723}.Release|x64.ActiveCfg = Release|x64 {DD448B37-BA3F-4544-9754-5406E8094723}.Release|x64.Build.0 = Release|x64 {DD448B37-BA3F-4544-9754-5406E8094723}.Release|x86.ActiveCfg = Release|x86 {DD448B37-BA3F-4544-9754-5406E8094723}.Release|x86.Build.0 = Release|x86 - {C4366030-6D03-424B-AE53-F4F43BB217C3}.Debug|Any CPU.ActiveCfg = Debug|x86 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Debug|x64.ActiveCfg = Debug|x64 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Debug|x64.Build.0 = Debug|x64 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Debug|x86.ActiveCfg = Debug|x86 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Debug|x86.Build.0 = Debug|x86 - {C4366030-6D03-424B-AE53-F4F43BB217C3}.Release|Any CPU.ActiveCfg = Release|x86 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Release|x64.ActiveCfg = Release|x64 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Release|x64.Build.0 = Release|x64 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Release|x86.ActiveCfg = Release|x86 {C4366030-6D03-424B-AE53-F4F43BB217C3}.Release|x86.Build.0 = Release|x86 - {F51946EA-827F-4D82-B841-1F2F6D060312}.Debug|Any CPU.ActiveCfg = Debug|x86 {F51946EA-827F-4D82-B841-1F2F6D060312}.Debug|x64.ActiveCfg = Debug|x64 {F51946EA-827F-4D82-B841-1F2F6D060312}.Debug|x64.Build.0 = Debug|x64 {F51946EA-827F-4D82-B841-1F2F6D060312}.Debug|x86.ActiveCfg = Debug|x86 {F51946EA-827F-4D82-B841-1F2F6D060312}.Debug|x86.Build.0 = Debug|x86 - {F51946EA-827F-4D82-B841-1F2F6D060312}.Release|Any CPU.ActiveCfg = Release|x86 {F51946EA-827F-4D82-B841-1F2F6D060312}.Release|x64.ActiveCfg = Release|x64 {F51946EA-827F-4D82-B841-1F2F6D060312}.Release|x64.Build.0 = Release|x64 {F51946EA-827F-4D82-B841-1F2F6D060312}.Release|x86.ActiveCfg = Release|x86 {F51946EA-827F-4D82-B841-1F2F6D060312}.Release|x86.Build.0 = Release|x86 - {E1A23168-B571-411C-B360-2229E7225E0E}.Debug|Any CPU.ActiveCfg = Debug|x86 {E1A23168-B571-411C-B360-2229E7225E0E}.Debug|x64.ActiveCfg = Debug|x64 {E1A23168-B571-411C-B360-2229E7225E0E}.Debug|x64.Build.0 = Debug|x64 {E1A23168-B571-411C-B360-2229E7225E0E}.Debug|x86.ActiveCfg = Debug|x86 {E1A23168-B571-411C-B360-2229E7225E0E}.Debug|x86.Build.0 = Debug|x86 - {E1A23168-B571-411C-B360-2229E7225E0E}.Release|Any CPU.ActiveCfg = Release|x86 {E1A23168-B571-411C-B360-2229E7225E0E}.Release|x64.ActiveCfg = Release|x64 {E1A23168-B571-411C-B360-2229E7225E0E}.Release|x64.Build.0 = Release|x64 {E1A23168-B571-411C-B360-2229E7225E0E}.Release|x86.ActiveCfg = Release|x86 {E1A23168-B571-411C-B360-2229E7225E0E}.Release|x86.Build.0 = Release|x86 - {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Debug|Any CPU.ActiveCfg = Debug|x86 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Debug|x64.ActiveCfg = Debug|x64 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Debug|x64.Build.0 = Debug|x64 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Debug|x86.ActiveCfg = Debug|x86 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Debug|x86.Build.0 = Debug|x86 - {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Release|Any CPU.ActiveCfg = Release|x86 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Release|x64.ActiveCfg = Release|x64 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Release|x64.Build.0 = Release|x64 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Release|x86.ActiveCfg = Release|x86 {197D4314-8A9F-49BA-977D-54ACEFAEB6BA}.Release|x86.Build.0 = Release|x86 - {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Debug|Any CPU.ActiveCfg = Debug|x86 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Debug|x64.ActiveCfg = Debug|x64 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Debug|x64.Build.0 = Debug|x64 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Debug|x86.ActiveCfg = Debug|x86 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Debug|x86.Build.0 = Debug|x86 - {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Release|Any CPU.ActiveCfg = Release|x86 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Release|x64.ActiveCfg = Release|x64 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Release|x64.Build.0 = Release|x64 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Release|x86.ActiveCfg = Release|x86 {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465}.Release|x86.Build.0 = Release|x86 - {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Debug|Any CPU.ActiveCfg = Debug|x86 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Debug|x64.ActiveCfg = Debug|x64 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Debug|x64.Build.0 = Debug|x64 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Debug|x86.ActiveCfg = Debug|x86 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Debug|x86.Build.0 = Debug|x86 - {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Release|Any CPU.ActiveCfg = Release|x86 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Release|x64.ActiveCfg = Release|x64 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Release|x64.Build.0 = Release|x64 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Release|x86.ActiveCfg = Release|x86 {5160CFB1-5389-47C1-B7F6-8A0DC97641EE}.Release|x86.Build.0 = Release|x86 - {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Debug|Any CPU.ActiveCfg = Debug|x86 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Debug|x64.ActiveCfg = Debug|x64 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Debug|x64.Build.0 = Debug|x64 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Debug|x86.ActiveCfg = Debug|x86 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Debug|x86.Build.0 = Debug|x86 - {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Release|Any CPU.ActiveCfg = Release|x86 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Release|x64.ActiveCfg = Release|x64 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Release|x64.Build.0 = Release|x64 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Release|x86.ActiveCfg = Release|x86 {2D2890A8-C338-4439-AD8B-CB9EE85A94F9}.Release|x86.Build.0 = Release|x86 - {337CA23E-65E7-44E1-9411-97EE08BB8116}.Debug|Any CPU.ActiveCfg = Debug|x86 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Debug|x64.ActiveCfg = Debug|x64 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Debug|x64.Build.0 = Debug|x64 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Debug|x86.ActiveCfg = Debug|x86 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Debug|x86.Build.0 = Debug|x86 - {337CA23E-65E7-44E1-9411-97EE08BB8116}.Release|Any CPU.ActiveCfg = Release|x86 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Release|x64.ActiveCfg = Release|x64 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Release|x64.Build.0 = Release|x64 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Release|x86.ActiveCfg = Release|x86 {337CA23E-65E7-44E1-9411-97EE08BB8116}.Release|x86.Build.0 = Release|x86 - {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Debug|Any CPU.ActiveCfg = Debug|x86 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Debug|x64.ActiveCfg = Debug|x64 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Debug|x64.Build.0 = Debug|x64 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Debug|x86.ActiveCfg = Debug|x86 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Debug|x86.Build.0 = Debug|x86 - {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Release|Any CPU.ActiveCfg = Release|x86 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Release|x64.ActiveCfg = Release|x64 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Release|x64.Build.0 = Release|x64 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Release|x86.ActiveCfg = Release|x86 {E6B436B1-A3CD-4C9A-8F76-5D7154726884}.Release|x86.Build.0 = Release|x86 - {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Debug|Any CPU.ActiveCfg = Debug|x86 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Debug|x64.ActiveCfg = Debug|x64 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Debug|x64.Build.0 = Debug|x64 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Debug|x86.ActiveCfg = Debug|x86 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Debug|x86.Build.0 = Debug|x86 - {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Release|Any CPU.ActiveCfg = Release|x86 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Release|x64.ActiveCfg = Release|x64 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Release|x64.Build.0 = Release|x64 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Release|x86.ActiveCfg = Release|x86 {B95649F5-A0AE-41EB-B62B-578A2AFF5E18}.Release|x86.Build.0 = Release|x86 - {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Debug|Any CPU.Build.0 = Debug|Any CPU {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Debug|x64.ActiveCfg = Debug|x64 {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Debug|x64.Build.0 = Debug|x64 {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Debug|x86.ActiveCfg = Debug|x86 {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Debug|x86.Build.0 = Debug|x86 - {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Release|Any CPU.Build.0 = Release|Any CPU {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Release|x64.ActiveCfg = Release|x64 {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Release|x64.Build.0 = Release|x64 {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA}.Release|x86.ActiveCfg = Release|x86 @@ -227,19 +193,19 @@ Global HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution - {24A0AA3C-B25F-4197-B23D-476D6462DBA0} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} {DD448B37-BA3F-4544-9754-5406E8094723} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} {C4366030-6D03-424B-AE53-F4F43BB217C3} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} - {F51946EA-827F-4D82-B841-1F2F6D060312} = {3627C08B-3E43-4224-9DA4-40BD69495FBC} + {24A0AA3C-B25F-4197-B23D-476D6462DBA0} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} + {2D2890A8-C338-4439-AD8B-CB9EE85A94F9} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} + {B95649F5-A0AE-41EB-B62B-578A2AFF5E18} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} + {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} {E1A23168-B571-411C-B360-2229E7225E0E} = {3627C08B-3E43-4224-9DA4-40BD69495FBC} + {F51946EA-827F-4D82-B841-1F2F6D060312} = {3627C08B-3E43-4224-9DA4-40BD69495FBC} {197D4314-8A9F-49BA-977D-54ACEFAEB6BA} = {3627C08B-3E43-4224-9DA4-40BD69495FBC} {9F84A0B2-861E-4EF4-B89B-5E2A3F38A465} = {0540A9A6-977E-466D-8BD3-1D8590BD5282} {5160CFB1-5389-47C1-B7F6-8A0DC97641EE} = {0540A9A6-977E-466D-8BD3-1D8590BD5282} - {2D2890A8-C338-4439-AD8B-CB9EE85A94F9} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} {337CA23E-65E7-44E1-9411-97EE08BB8116} = {0540A9A6-977E-466D-8BD3-1D8590BD5282} {E6B436B1-A3CD-4C9A-8F76-5D7154726884} = {0540A9A6-977E-466D-8BD3-1D8590BD5282} - {B95649F5-A0AE-41EB-B62B-578A2AFF5E18} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} - {8E2F11F2-3955-4382-8C3A-CEBA1276CAEA} = {B51F1139-3D2C-41BE-A762-EF1F9B41EACA} EndGlobalSection GlobalSection(MonoDevelopProperties) = preSolution StartupItem = BizHawk.Client.EmuHawk\BizHawk.Client.EmuHawk.csproj From fdc30ccd12415d3c4e56075d2a432c0653787fab Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Thu, 29 Jun 2017 19:52:40 -0600 Subject: [PATCH 08/17] LuaPictureBox: Add GetMouse A simple function that gets the point the mouse cursor is at relative to the LuaPictureBox's upper left corner --- BizHawk.Client.EmuHawk/tools/Lua/LuaPictureBox.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaPictureBox.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaPictureBox.cs index 9221cd3bfe..44cc72b43d 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaPictureBox.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaPictureBox.cs @@ -375,5 +375,11 @@ namespace BizHawk.Client.EmuHawk boxBackground = Graphics.FromImage(Image); boxBackground.DrawString(message, font, new SolidBrush(forecolor ?? Color.Black), x, y); } + + public Point GetMouse() + { + var p = PointToClient(Control.MousePosition); + return p; + } } -} \ No newline at end of file +} From eb6676e0ba9de6cdbf9938732953a0620b0f4618 Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Thu, 29 Jun 2017 19:59:27 -0600 Subject: [PATCH 09/17] EmuLuaLibrary.Forms: add more PictureBox functions Adds the functions for getting the mouse x and y coordinates from PictureBox components. --- .../Lua/Libraries/EmuLuaLibrary.Forms.cs | 69 +++++++++++++++++++ 1 file changed, 69 insertions(+) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs index 337802fa49..3dce8ffc63 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs @@ -1136,6 +1136,75 @@ namespace BizHawk.Client.EmuHawk } } + // It'd be great if these were simplified into 1 function, but I cannot figure out how to return a LuaTable from this class + [LuaMethodAttributes( + "GetMouseX", + "Returns an integer representation of the mouse X coordinate relative to the PictureBox.")] + public int GetMouseX(int componentHandle) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return 0; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + var position = (control as LuaPictureBox).GetMouse(); + return position.X; + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + + return 0; + } + + [LuaMethodAttributes( + "GetMouseY", + "Returns an integer representation of the mouse Y coordinate relative to the PictureBox.")] + public int GetMouseY(int componentHandle) + { + try + { + var ptr = new IntPtr(componentHandle); + foreach (var form in _luaForms) + { + if (form.Handle == ptr) + { + ConsoleLuaLibrary.Log("Drawing functions cannot be used on forms directly. Use them on a PictureBox component."); + return 0; + } + + foreach (Control control in form.Controls) + { + if (control is LuaPictureBox) + { + var position = (control as LuaPictureBox).GetMouse(); + return position.Y; + } + } + } + } + catch (Exception ex) + { + ConsoleLuaLibrary.Log(ex.Message); + } + + return 0; + } + #endregion [LuaMethodAttributes("setdropdownitems", "Sets the items for a given dropdown box")] From 5900f9b1ecddfcdc661fc8c7015e2672bbc46119 Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Thu, 29 Jun 2017 20:01:31 -0600 Subject: [PATCH 10/17] LuaCanvas: add parameters for specifying location Constructor now takes in arguments for setting the x and y coordinates of the canvas window --- BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs index d2ee8b9c34..0e25200353 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs @@ -12,12 +12,22 @@ namespace BizHawk.Client.EmuHawk [Description("Represents a canvas object returned by the gui.createcanvas() method")] public partial class LuaCanvas : Form { - public LuaCanvas(int width, int height) + public LuaCanvas(int width, int height, int? x = null, int? y = null) { InitializeComponent(); luaPictureBox.Width = width; luaPictureBox.Height = height; luaPictureBox.Image = new Bitmap(width, height); + + if (x.HasValue) + { + StartPosition = System.Windows.Forms.FormStartPosition.Manual; + Left = (int)x; + if (y.HasValue) + { + Top = (int)y; + } + } } [LuaMethodAttributes( From 1a1ae98a2e815a98ee6ff55cb56461b308cb6b94 Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Thu, 29 Jun 2017 20:03:18 -0600 Subject: [PATCH 11/17] EmuLuaLibrary.Gui: update createcanvas createcanvas now takes additional parameters that specify where the canvas window should be created --- .../tools/Lua/Libraries/EmuLuaLibrary.Gui.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs index 9956127cfb..20798d96d4 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs @@ -693,10 +693,10 @@ namespace BizHawk.Client.EmuHawk GlobalWin.OSD.AddGUIText(message, x, y, Color.Black, forecolor ?? Color.White, a); } - [LuaMethodAttributes("createcanvas", "Creates a canvas of the given size.")] - public LuaTable Text(int width, int height) + [LuaMethodAttributes("createcanvas", "Creates a canvas of the given size and, if specified, the given coordinates.")] + public LuaTable Text(int width, int height, int? x = null, int? y = null) { - var canvas = new LuaCanvas(width, height); + var canvas = new LuaCanvas(width, height, x, y); canvas.Show(); return LuaHelper.ToLuaTable(Lua, canvas); } From 22200171e72217a9d5d9459c9b44efcae75e5af4 Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Thu, 29 Jun 2017 20:07:21 -0600 Subject: [PATCH 12/17] LuaCanvas: Include GetMouseX & Y functions Gets the X and Y coordinates for the mouse cursor relative to the canvas --- BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs index 0e25200353..b8e55e2889 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs @@ -295,5 +295,25 @@ namespace BizHawk.Client.EmuHawk { luaPictureBox.DrawText(x, y, message, forecolor, backcolor, fontsize, fontfamily, fontstyle, horizalign, vertalign); } + + + // It'd be great if these were simplified into 1 function, but I cannot figure out how to return a LuaTable from this class + [LuaMethodAttributes( + "GetMouseX", + "Returns an integer representation of the mouse X coordinate relative to the canvas window.")] + public int GetMouseX() + { + var position = luaPictureBox.GetMouse(); + return position.X; + } + + [LuaMethodAttributes( + "GetMouseY", + "Returns an integer representation of the mouse Y coordinate relative to the canvas window.")] + public int GetMouseY() + { + var position = luaPictureBox.GetMouse(); + return position.Y; + } } } From 8a2056193d50e661ab7d315762ffc747279360f5 Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Thu, 29 Jun 2017 20:16:02 -0600 Subject: [PATCH 13/17] LuaCanvas: Add SetLocation function Allows the user to reset the location of the canvas window at will while a script is running --- BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs index b8e55e2889..c73925ad5b 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs @@ -38,6 +38,16 @@ namespace BizHawk.Client.EmuHawk Text = title; } + [LuaMethodAttributes( + "SetLocation", + "Sets the location of the canvas window")] + public void SetLocation(int x, int y) + { + StartPosition = System.Windows.Forms.FormStartPosition.Manual; + Left = (int)x; + Top = (int)y; + } + [LuaMethodAttributes( "Clear", "Clears the canvas")] From 949cece7c52afadf6bcfba28b0c2e823560b4ae4 Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Thu, 13 Jul 2017 22:30:35 -0600 Subject: [PATCH 14/17] Add files via upload --- .../BizHawk.Client.EmuHawk.csproj | 25 +++++++++---------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj b/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj index 575fed4223..86be870a07 100644 --- a/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj +++ b/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj @@ -696,7 +696,7 @@ - + Form @@ -855,9 +855,6 @@ NewHexEditor.cs - - Component - @@ -894,6 +891,9 @@ LuaFunctionsForm.cs + + Component + Form @@ -1176,8 +1176,7 @@ - - + @@ -2134,12 +2133,12 @@ - @@ -2153,4 +2152,4 @@ - + \ No newline at end of file From 7b8818c35b8202aa43dc8a1fbf6ed00f58e5c1bf Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Thu, 13 Jul 2017 22:32:27 -0600 Subject: [PATCH 15/17] Resolve issues with Master - Uses NLua instead of LuaInterface - Uses LuaMethod instead of LuaMethodAttribute - All LuaCanvas Lua calls now begin with lowercase - Also allows LuaPictureBoxes added through forms to be compatible with addClick --- .../Lua/Libraries/EmuLuaLibrary.Forms.cs | 150 ++++++++++-------- .../tools/Lua/Libraries/EmuLuaLibrary.Gui.cs | 3 +- .../tools/Lua/LuaCanvas.Designer.cs | 64 ++++---- BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs | 113 +++++++------ .../tools/Lua/LuaCanvas.resx | 8 + 5 files changed, 175 insertions(+), 163 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs index 3e093831d3..a6f7933ac3 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Forms.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; @@ -7,6 +7,7 @@ using System.Windows.Forms; using BizHawk.Client.Common; using NLua; +using System.IO; namespace BizHawk.Client.EmuHawk { @@ -77,7 +78,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethod("button", "Creates a button control on the given form. The caption property will be the text value on the button. clickEvent is the name of a Lua function that will be invoked when the button is clicked. x, and y are the optional location parameters for the position of the button within the given form. The function returns the handle of the created button. Width and Height are optional, if not specified they will be a default size")] + [LuaMethod( + "button", "Creates a button control on the given form. The caption property will be the text value on the button. clickEvent is the name of a Lua function that will be invoked when the button is clicked. x, and y are the optional location parameters for the position of the button within the given form. The function returns the handle of the created button. Width and Height are optional, if not specified they will be a default size")] public int Button( int formHandle, string caption, @@ -111,7 +113,8 @@ namespace BizHawk.Client.EmuHawk return (int)button.Handle; } - [LuaMethod("checkbox", "Creates a checkbox control on the given form. The caption property will be the text of the checkbox. x and y are the optional location parameters for the position of the checkbox within the form")] + [LuaMethod( + "checkbox", "Creates a checkbox control on the given form. The caption property will be the text of the checkbox. x and y are the optional location parameters for the position of the checkbox within the form")] public int Checkbox(int formHandle, string caption, int? x = null, int? y = null) { var form = GetForm(formHandle); @@ -178,7 +181,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethod("dropdown", "Creates a dropdown (with a ComboBoxStyle of DropDownList) control on the given form. Dropdown items are passed via a lua table. Only the values will be pulled for the dropdown items, the keys are irrelevant. Items will be sorted alphabetically. x and y are the optional location parameters, and width and height are the optional size parameters.")] + [LuaMethod( + "dropdown", "Creates a dropdown (with a ComboBoxStyle of DropDownList) control on the given form. Dropdown items are passed via a lua table. Only the values will be pulled for the dropdown items, the keys are irrelevant. Items will be sorted alphabetically. x and y are the optional location parameters, and width and height are the optional size parameters.")] public int Dropdown( int formHandle, LuaTable items, @@ -208,7 +212,7 @@ namespace BizHawk.Client.EmuHawk { SetSize(dropdown, width.Value, height.Value); } - + return (int)dropdown.Handle; } @@ -224,7 +228,7 @@ namespace BizHawk.Client.EmuHawk { return form.GetType().GetProperty(property).GetValue(form, null).ToString(); } - + foreach (Control control in form.Controls) { if (control.Handle == ptr) @@ -236,7 +240,7 @@ namespace BizHawk.Client.EmuHawk } catch (Exception ex) { - Log(ex.Message); + ConsoleLuaLibrary.Log(ex.Message); } return ""; @@ -254,7 +258,7 @@ namespace BizHawk.Client.EmuHawk { return form.Text; } - + foreach (Control control in form.Controls) { if (control.Handle == ptr) @@ -263,7 +267,7 @@ namespace BizHawk.Client.EmuHawk { return (control as LuaDropDown).SelectedItem.ToString(); } - + return control.Text; } } @@ -271,7 +275,7 @@ namespace BizHawk.Client.EmuHawk } catch (Exception ex) { - Log(ex.Message); + ConsoleLuaLibrary.Log(ex.Message); } return ""; @@ -287,7 +291,7 @@ namespace BizHawk.Client.EmuHawk { return false; } - + foreach (Control control in form.Controls) { if (control.Handle == ptr) @@ -296,7 +300,7 @@ namespace BizHawk.Client.EmuHawk { return (control as LuaCheckbox).Checked; } - + return false; } } @@ -305,7 +309,8 @@ namespace BizHawk.Client.EmuHawk return false; } - [LuaMethod("label", "Creates a label control on the given form. The caption property is the text of the label. x, and y are the optional location parameters for the position of the label within the given form. The function returns the handle of the created label. Width and Height are optional, if not specified they will be a default size.")] + [LuaMethod( + "label", "Creates a label control on the given form. The caption property is the text of the label. x, and y are the optional location parameters for the position of the label within the given form. The function returns the handle of the created label. Width and Height are optional, if not specified they will be a default size.")] public int Label( int formHandle, string caption, @@ -343,7 +348,8 @@ namespace BizHawk.Client.EmuHawk return (int)label.Handle; } - [LuaMethod("newform", "creates a new default dialog, if both width and height are specified it will create a dialog of the specified size. If title is specified it will be the caption of the dialog, else the dialog caption will be 'Lua Dialog'. The function will return an int representing the handle of the dialog created.")] + [LuaMethod( + "newform", "creates a new default dialog, if both width and height are specified it will create a dialog of the specified size. If title is specified it will be the caption of the dialog, else the dialog caption will be 'Lua Dialog'. The function will return an int representing the handle of the dialog created.")] public int NewForm(int? width = null, int? height = null, string title = null, LuaFunction onClose = null) { var form = new LuaWinform(CurrentThread); @@ -377,7 +383,8 @@ namespace BizHawk.Client.EmuHawk return (int)form.Handle; } - [LuaMethod("openfile", "Creates a standard openfile dialog with optional parameters for the filename, directory, and filter. The return value is the directory that the user picked. If they chose to cancel, it will return an empty string")] + [LuaMethod( + "openfile", "Creates a standard openfile dialog with optional parameters for the filename, directory, and filter. The return value is the directory that the user picked. If they chose to cancel, it will return an empty string")] public string OpenFile(string fileName = null, string initialDirectory = null, string filter = "All files (*.*)|*.*") { // filterext format ex: "Image Files(*.BMP;*.JPG;*.GIF)|*.BMP;*.JPG;*.GIF|All files (*.*)|*.*" @@ -386,27 +393,29 @@ namespace BizHawk.Client.EmuHawk { openFileDialog1.InitialDirectory = initialDirectory; } - + if (fileName != null) { openFileDialog1.FileName = fileName; } - + if (filter != null) { openFileDialog1.AddExtension = true; openFileDialog1.Filter = filter; } - + if (openFileDialog1.ShowDialog() == DialogResult.OK) { return openFileDialog1.FileName; } - + return ""; } - [LuaMethodAttributes("PictureBox", "Creates a new drawing area in the form. Optionally the location in the form as well as the size of the drawing area can be specified. Returns the handle the component can be refered to with.")] + [LuaMethod( + "pictureBox", + "Creates a new drawing area in the form. Optionally the location in the form as well as the size of the drawing area can be specified. Returns the handle the component can be refered to with.")] public int PictureBox(int formHandle, int? x = null, int? y = null, int? width = null, int? height = null) { var form = GetForm(formHandle); @@ -414,7 +423,7 @@ namespace BizHawk.Client.EmuHawk { return 0; } - + var pictureBox = new LuaPictureBox(); form.Controls.Add(pictureBox); @@ -435,8 +444,8 @@ namespace BizHawk.Client.EmuHawk #region LuaPictureBox Methods - [LuaMethodAttributes( - "Clear", + [LuaMethod( + "clear", "Clears the canvas")] public void Clear(int componentHandle, Color color) { @@ -466,8 +475,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "Refresh", + [LuaMethod( + "refresh", "Redraws the canvas")] public void Refresh(int componentHandle) { @@ -497,8 +506,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "SetDefaultForegroundColor", + [LuaMethod( + "setDefaultForegroundColor", "Sets the default foreground color to use in drawing methods, white by default")] public void SetDefaultForegroundColor(int componentHandle, Color color) { @@ -528,8 +537,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "SetDefaultBackgroundColor", + [LuaMethod( + "setDefaultBackgroundColor", "Sets the default background color to use in drawing methods, transparent by default")] public void SetDefaultBackgroundColor(int componentHandle, Color color) { @@ -559,8 +568,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "SetDefaultTextBackground", + [LuaMethod( + "setDefaultTextBackground", "Sets the default backgroiund color to use in text drawing methods, half-transparent black by default")] public void SetDefaultTextBackground(int componentHandle, Color color) { @@ -590,8 +599,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "DrawBezier", + [LuaMethod( + "drawBezier", "Draws a Bezier curve using the table of coordinates provided in the given color")] public void DrawBezier(int componentHandle, LuaTable points, Color color) { @@ -621,8 +630,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "DrawBox", + [LuaMethod( + "drawBox", "Draws a rectangle on screen from x1/y1 to x2/y2. Same as drawRectangle except it receives two points intead of a point and width/height")] public void DrawBox(int componentHandle, int x, int y, int x2, int y2, Color? line = null, Color? background = null) { @@ -652,8 +661,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "DrawEllipse", + [LuaMethod( + "drawEllipse", "Draws an ellipse at the given coordinates and the given width and height. Line is the color of the ellipse. Background is the optional fill color")] public void DrawEllipse(int componentHandle, int x, int y, int width, int height, Color? line = null, Color? background = null) { @@ -683,8 +692,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "DrawIcon", + [LuaMethod( + "drawIcon", "draws an Icon (.ico) file from the given path at the given coordinate. width and height are optional. If specified, it will resize the image accordingly")] public void DrawIcon(int componentHandle, string path, int x, int y, int? width = null, int? height = null) { @@ -714,8 +723,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "DrawImage", + [LuaMethod( + "drawImage", "draws an image file from the given path at the given coordinate. width and height are optional. If specified, it will resize the image accordingly")] public void DrawImage(int componentHandle, string path, int x, int y, int? width = null, int? height = null, bool cache = true) { @@ -750,8 +759,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "ClearImageCache", + [LuaMethod( + "clearImageCache", "clears the image cache that is built up by using gui.drawImage, also releases the file handle for cached images")] public void ClearImageCache(int componentHandle) { @@ -781,8 +790,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "DrawImageRegion", + [LuaMethod( + "drawImageRegion", "draws a given region of an image file from the given path at the given coordinate, and optionally with the given size")] public void DrawImageRegion(int componentHandle, string path, int source_x, int source_y, int source_width, int source_height, int dest_x, int dest_y, int? dest_width = null, int? dest_height = null) { @@ -817,8 +826,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "DrawLine", + [LuaMethod( + "drawLine", "Draws a line from the first coordinate pair to the 2nd. Color is optional (if not specified it will be drawn black)")] public void DrawLine(int componentHandle, int x1, int y1, int x2, int y2, Color? color = null) { @@ -848,8 +857,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "DrawAxis", + [LuaMethod( + "drawAxis", "Draws an axis of the specified size at the coordinate pair.)")] public void DrawAxis(int componentHandle, int x, int y, int size, Color? color = null) { @@ -879,8 +888,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "DrawArc", + [LuaMethod( + "drawArc", "draws a Arc shape at the given coordinates and the given width and height" )] public void DrawArc(int componentHandle, int x, int y, int width, int height, int startangle, int sweepangle, Color? line = null) @@ -911,8 +920,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "DrawPie", + [LuaMethod( + "drawPie", "draws a Pie shape at the given coordinates and the given width and height")] public void DrawPie( int componentHandle, @@ -951,8 +960,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "DrawPixel", + [LuaMethod( + "drawPixel", "Draws a single pixel at the given coordinates in the given color. Color is optional (if not specified it will be drawn black)")] public void DrawPixel(int componentHandle, int x, int y, Color? color = null) { @@ -982,8 +991,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "DrawPolygon", + [LuaMethod( + "drawPolygon", "Draws a polygon using the table of coordinates specified in points. This should be a table of tables(each of size 2). Line is the color of the polygon. Background is the optional fill color")] public void DrawPolygon(int componentHandle, LuaTable points, Color? line = null, Color? background = null) { @@ -1014,8 +1023,8 @@ namespace BizHawk.Client.EmuHawk } - [LuaMethodAttributes( - "DrawRectangle", + [LuaMethod( + "drawRectangle", "Draws a rectangle at the given coordinate and the given width and height. Line is the color of the box. Background is the optional fill color")] public void DrawRectangle(int componentHandle, int x, int y, int width, int height, Color? line = null, Color? background = null) { @@ -1045,8 +1054,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "DrawString", + [LuaMethod( + "drawString", "Alias of DrawText()")] public void DrawString( int componentHandle, @@ -1087,8 +1096,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "DrawText", + [LuaMethod( + "drawText", "Draws the given message at the given x,y coordinates and the given color. The default color is white. A fontfamily can be specified and is monospace generic if none is specified (font family options are the same as the .NET FontFamily class). The fontsize default is 12. The default font style is regular. Font style options are regular, bold, italic, strikethrough, underline. Horizontal alignment options are left (default), center, or right. Vertical alignment options are bottom (default), middle, or top. Alignment options specify which ends of the text will be drawn at the x and y coordinates.")] public void DrawText( int componentHandle, @@ -1130,8 +1139,8 @@ namespace BizHawk.Client.EmuHawk } // It'd be great if these were simplified into 1 function, but I cannot figure out how to return a LuaTable from this class - [LuaMethodAttributes( - "GetMouseX", + [LuaMethod( + "getMouseX", "Returns an integer representation of the mouse X coordinate relative to the PictureBox.")] public int GetMouseX(int componentHandle) { @@ -1164,8 +1173,8 @@ namespace BizHawk.Client.EmuHawk return 0; } - [LuaMethodAttributes( - "GetMouseY", + [LuaMethod( + "getMouseY", "Returns an integer representation of the mouse Y coordinate relative to the PictureBox.")] public int GetMouseY(int componentHandle) { @@ -1286,7 +1295,7 @@ namespace BizHawk.Client.EmuHawk throw new Exception("Invalid #aarrggbb color"); } - value = Color.FromArgb(int.Parse(sval.Substring(1),System.Globalization.NumberStyles.HexNumber)); + value = Color.FromArgb(int.Parse(sval.Substring(1), System.Globalization.NumberStyles.HexNumber)); } form.GetType() @@ -1319,7 +1328,7 @@ namespace BizHawk.Client.EmuHawk return Color.FromArgb(a, r, g, b); } - [LuaMethod("setsize", "Sets the size of the form or control to the given width or height")] + [LuaMethod("setsize", "TODO")] public void SetSize(int handle, int width, int height) { var ptr = new IntPtr(handle); @@ -1365,7 +1374,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethod("textbox", "Creates a textbox control on the given form. The caption property will be the initial value of the textbox (default is empty). Width and Height are option, if not specified they will be a default size of 100, 20. Type is an optional property to restrict the textbox input. The available options are HEX, SIGNED, and UNSIGNED. Passing it null or any other value will set it to no restriction. x, and y are the optional location parameters for the position of the textbox within the given form. The function returns the handle of the created textbox. If true, the multiline will enable the standard winform multi-line property. If true, the fixedWidth options will create a fixed width font. Scrollbars is an optional property to specify which scrollbars to display. The available options are Vertical, Horizontal, Both, and None. Scrollbars are only shown on a multiline textbox")] + [LuaMethod( + "textbox", "Creates a textbox control on the given form. The caption property will be the initial value of the textbox (default is empty). Width and Height are option, if not specified they will be a default size of 100, 20. Type is an optional property to restrict the textbox input. The available options are HEX, SIGNED, and UNSIGNED. Passing it null or any other value will set it to no restriction. x, and y are the optional location parameters for the position of the textbox within the given form. The function returns the handle of the created textbox. If true, the multiline will enable the standard winform multi-line property. If true, the fixedWidth options will create a fixed width font. Scrollbars is an optional property to specify which scrollbars to display. The available options are Vertical, Horizontal, Both, and None. Scrollbars are only shown on a multiline textbox")] public int Textbox( int formHandle, string caption = null, diff --git a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs index 8bf81d1f59..96685e56af 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/Libraries/EmuLuaLibrary.Gui.cs @@ -677,8 +677,7 @@ namespace BizHawk.Client.EmuHawk GlobalWin.OSD.AddGUIText(message, x, y, Color.Black, forecolor ?? Color.White, a); } - - [LuaMethodAttributes("createcanvas", "Creates a canvas of the given size and, if specified, the given coordinates.")] + [LuaMethod("createcanvas", "Creates a canvas of the given size and, if specified, the given coordinates.")] public LuaTable Text(int width, int height, int? x = null, int? y = null) { var canvas = new LuaCanvas(width, height, x, y); diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.Designer.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.Designer.cs index dc0b640832..eb602c90ef 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.Designer.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.Designer.cs @@ -1,4 +1,4 @@ -namespace BizHawk.Client.EmuHawk +namespace BizHawk.Client.EmuHawk { partial class LuaCanvas { @@ -28,36 +28,36 @@ namespace BizHawk.Client.EmuHawk /// private void InitializeComponent() { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LuaCanvas)); - this.luaPictureBox = new BizHawk.Client.EmuHawk.LuaPictureBox(); - ((System.ComponentModel.ISupportInitialize)(this.luaPictureBox)).BeginInit(); - this.SuspendLayout(); - // - // luaPictureBox - // - this.luaPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("luaPictureBox.Image"))); - this.luaPictureBox.Location = new System.Drawing.Point(0, 0); - this.luaPictureBox.Margin = new System.Windows.Forms.Padding(0); - this.luaPictureBox.Name = "luaPictureBox"; - this.luaPictureBox.Size = new System.Drawing.Size(282, 260); - this.luaPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; - this.luaPictureBox.TabIndex = 0; - this.luaPictureBox.TabStop = false; - // - // LuaCanvas - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.AutoSize = true; - this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.ClientSize = new System.Drawing.Size(284, 261); - this.Controls.Add(this.luaPictureBox); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; - this.Name = "LuaCanvas"; - this.Text = "LuaCanvas"; - ((System.ComponentModel.ISupportInitialize)(this.luaPictureBox)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LuaCanvas)); + this.luaPictureBox = new BizHawk.Client.EmuHawk.LuaPictureBox(); + ((System.ComponentModel.ISupportInitialize)(this.luaPictureBox)).BeginInit(); + this.SuspendLayout(); + // + // luaPictureBox + // + this.luaPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("luaPictureBox.Image"))); + this.luaPictureBox.Location = new System.Drawing.Point(0, 0); + this.luaPictureBox.Margin = new System.Windows.Forms.Padding(0); + this.luaPictureBox.Name = "luaPictureBox"; + this.luaPictureBox.Size = new System.Drawing.Size(100, 50); + this.luaPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; + this.luaPictureBox.TabIndex = 0; + this.luaPictureBox.TabStop = false; + // + // LuaCanvas + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.AutoSize = true; + this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.ClientSize = new System.Drawing.Size(284, 261); + this.Controls.Add(this.luaPictureBox); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; + this.Name = "LuaCanvas"; + this.Text = "LuaCanvas"; + ((System.ComponentModel.ISupportInitialize)(this.luaPictureBox)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); } @@ -65,4 +65,4 @@ namespace BizHawk.Client.EmuHawk private LuaPictureBox luaPictureBox; } -} +} \ No newline at end of file diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs index 882d88b4eb..dba8c9079f 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.cs @@ -6,12 +6,15 @@ using System.IO; using BizHawk.Client.Common; using NLua; using System; +using System.Collections.Generic; namespace BizHawk.Client.EmuHawk { [Description("Represents a canvas object returned by the gui.createcanvas() method")] public partial class LuaCanvas : Form { + //public List ControlEvents { get; } = new List(); + public LuaCanvas(int width, int height, int? x = null, int? y = null) { InitializeComponent(); @@ -30,69 +33,66 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "SetTitle", + [LuaMethod( + "setTitle", "Sets the canvas window title")] public void SetTitle(string title) { Text = title; } - [LuaMethodAttributes( - "SetLocation", + [LuaMethod( + "setLocation", "Sets the location of the canvas window")] - public void SetLocation(int x, int y) + public void SetLocation(int x, int y) { StartPosition = System.Windows.Forms.FormStartPosition.Manual; Left = (int)x; Top = (int)y; } - [LuaMethodAttributes( - "Clear", + [LuaMethod( + "clear", "Clears the canvas")] public void Clear(Color color) { luaPictureBox.Clear(color); } - - [LuaMethodAttributes( - "Refresh", + [LuaMethod( + "refresh", "Redraws the canvas")] public new void Refresh() { luaPictureBox.Refresh(); } - - [LuaMethodAttributes( - "SetDefaultForegroundColor", + [LuaMethod( + "setDefaultForegroundColor", "Sets the default foreground color to use in drawing methods, white by default")] public void SetDefaultForegroundColor(Color color) { luaPictureBox.SetDefaultForegroundColor(color); } - - [LuaMethodAttributes( - "SetDefaultBackgroundColor", + [LuaMethod( + "setDefaultBackgroundColor", "Sets the default background color to use in drawing methods, transparent by default")] public void SetDefaultBackgroundColor(Color color) { luaPictureBox.SetDefaultBackgroundColor(color); } - [LuaMethodAttributes( - "SetDefaultTextBackground", + [LuaMethod( + "setDefaultTextBackground", "Sets the default backgroiund color to use in text drawing methods, half-transparent black by default")] public void SetDefaultTextBackground(Color color) { luaPictureBox.SetDefaultTextBackground(color); } - [LuaMethodAttributes( - "DrawBezier", + [LuaMethod( + "drawBezier", "Draws a Bezier curve using the table of coordinates provided in the given color")] public void DrawBezier(LuaTable points, Color color) { @@ -107,9 +107,8 @@ namespace BizHawk.Client.EmuHawk } } - - [LuaMethodAttributes( - "DrawBox", + [LuaMethod( + "drawBox", "Draws a rectangle on screen from x1/y1 to x2/y2. Same as drawRectangle except it receives two points intead of a point and width/height")] public void DrawBox(int x, int y, int x2, int y2, Color? line = null, Color? background = null) { @@ -124,9 +123,8 @@ namespace BizHawk.Client.EmuHawk } } - - [LuaMethodAttributes( - "DrawEllipse", + [LuaMethod( + "drawEllipse", "Draws an ellipse at the given coordinates and the given width and height. Line is the color of the ellipse. Background is the optional fill color")] public void DrawEllipse(int x, int y, int width, int height, Color? line = null, Color? background = null) { @@ -141,9 +139,8 @@ namespace BizHawk.Client.EmuHawk } } - - [LuaMethodAttributes( - "DrawIcon", + [LuaMethod( + "drawIcon", "draws an Icon (.ico) file from the given path at the given coordinate. width and height are optional. If specified, it will resize the image accordingly")] public void DrawIcon(string path, int x, int y, int? width = null, int? height = null) { @@ -158,9 +155,8 @@ namespace BizHawk.Client.EmuHawk } } - - [LuaMethodAttributes( - "DrawImage", + [LuaMethod( + "drawImage", "draws an image file from the given path at the given coordinate. width and height are optional. If specified, it will resize the image accordingly")] public void DrawImage(string path, int x, int y, int? width = null, int? height = null, bool cache = true) { @@ -173,17 +169,16 @@ namespace BizHawk.Client.EmuHawk luaPictureBox.DrawImage(path, x, y, width, height, cache); } - - [LuaMethodAttributes( - "ClearImageCache", + [LuaMethod( + "clearImageCache", "clears the image cache that is built up by using gui.drawImage, also releases the file handle for cached images")] public void ClearImageCache() { luaPictureBox.ClearImageCache(); } - [LuaMethodAttributes( - "DrawImageRegion", + [LuaMethod( + "drawImageRegion", "draws a given region of an image file from the given path at the given coordinate, and optionally with the given size")] public void DrawImageRegion(string path, int source_x, int source_y, int source_width, int source_height, int dest_x, int dest_y, int? dest_width = null, int? dest_height = null) { @@ -196,24 +191,24 @@ namespace BizHawk.Client.EmuHawk luaPictureBox.DrawImageRegion(path, source_x, source_y, source_width, source_height, dest_x, dest_y, dest_width, dest_height); } - [LuaMethodAttributes( - "DrawLine", + [LuaMethod( + "drawLine", "Draws a line from the first coordinate pair to the 2nd. Color is optional (if not specified it will be drawn black)")] public void DrawLine(int x1, int y1, int x2, int y2, Color? color = null) { luaPictureBox.DrawLine(x1, y1, x2, y2, color); } - [LuaMethodAttributes( - "DrawAxis", + [LuaMethod( + "drawAxis", "Draws an axis of the specified size at the coordinate pair.)")] public void DrawAxis(int x, int y, int size, Color? color = null) { luaPictureBox.DrawAxis(x, y, size, color); } - [LuaMethodAttributes( - "DrawArc", + [LuaMethod( + "drawArc", "draws a Arc shape at the given coordinates and the given width and height" )] public void DrawArc(int x, int y, int width, int height, int startangle, int sweepangle, Color? line = null) @@ -221,8 +216,8 @@ namespace BizHawk.Client.EmuHawk luaPictureBox.DrawArc(x, y, width, height, startangle, sweepangle, line); } - [LuaMethodAttributes( - "DrawPie", + [LuaMethod( + "drawPie", "draws a Pie shape at the given coordinates and the given width and height")] public void DrawPie( int x, @@ -237,8 +232,8 @@ namespace BizHawk.Client.EmuHawk luaPictureBox.DrawPie(x, y, width, height, startangle, sweepangle, line, background); } - [LuaMethodAttributes( - "DrawPixel", + [LuaMethod( + "drawPixel", "Draws a single pixel at the given coordinates in the given color. Color is optional (if not specified it will be drawn black)")] public void DrawPixel(int x, int y, Color? color = null) { @@ -253,8 +248,8 @@ namespace BizHawk.Client.EmuHawk } } - [LuaMethodAttributes( - "DrawPolygon", + [LuaMethod( + "drawPolygon", "Draws a polygon using the table of coordinates specified in points. This should be a table of tables(each of size 2). Line is the color of the polygon. Background is the optional fill color")] public void DrawPolygon(LuaTable points, Color? line = null, Color? background = null) { @@ -270,16 +265,16 @@ namespace BizHawk.Client.EmuHawk } - [LuaMethodAttributes( - "DrawRectangle", + [LuaMethod( + "drawRectangle", "Draws a rectangle at the given coordinate and the given width and height. Line is the color of the box. Background is the optional fill color")] public void DrawRectangle(int x, int y, int width, int height, Color? line = null, Color? background = null) { luaPictureBox.DrawRectangle(x, y, width, height, line, background); } - [LuaMethodAttributes( - "DrawString", + [LuaMethod( + "drawString", "Alias of DrawText()")] public void DrawString( int x, @@ -296,8 +291,8 @@ namespace BizHawk.Client.EmuHawk luaPictureBox.DrawText(x, y, message, forecolor, backcolor, fontsize, fontfamily, fontstyle, horizalign, vertalign); } - [LuaMethodAttributes( - "DrawText", + [LuaMethod( + "drawText", "Draws the given message at the given x,y coordinates and the given color. The default color is white. A fontfamily can be specified and is monospace generic if none is specified (font family options are the same as the .NET FontFamily class). The fontsize default is 12. The default font style is regular. Font style options are regular, bold, italic, strikethrough, underline. Horizontal alignment options are left (default), center, or right. Vertical alignment options are bottom (default), middle, or top. Alignment options specify which ends of the text will be drawn at the x and y coordinates.")] public void DrawText( int x, @@ -316,8 +311,8 @@ namespace BizHawk.Client.EmuHawk // It'd be great if these were simplified into 1 function, but I cannot figure out how to return a LuaTable from this class - [LuaMethodAttributes( - "GetMouseX", + [LuaMethod( + "getMouseX", "Returns an integer representation of the mouse X coordinate relative to the canvas window.")] public int GetMouseX() { @@ -325,8 +320,8 @@ namespace BizHawk.Client.EmuHawk return position.X; } - [LuaMethodAttributes( - "GetMouseY", + [LuaMethod( + "getMouseY", "Returns an integer representation of the mouse Y coordinate relative to the canvas window.")] public int GetMouseY() { diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.resx b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.resx index 29dcb1b3a3..c86561be75 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.resx +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaCanvas.resx @@ -117,4 +117,12 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + iVBORw0KGgoAAAANSUhEUgAAAGQAAAAyCAYAAACqNX6+AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsIAAA7CARUoSoAAAAArSURBVHhe7cEBDQAAAMKg909tDjcgAAAAAAAAAAAAAAAA + AAAAAAAAAC7VAE5SAAHx0pUgAAAAAElFTkSuQmCC + + \ No newline at end of file From 6cb39218647a3196b46f86cc6ddcca5d787359e4 Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Thu, 13 Jul 2017 22:40:51 -0600 Subject: [PATCH 16/17] Fix BizHawk.Client.EmuHawk.csproj Missed some changed filenames --- .../BizHawk.Client.EmuHawk.csproj | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj b/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj index 86be870a07..2bdcaa31c9 100644 --- a/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj +++ b/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj @@ -696,7 +696,7 @@ - + Form @@ -1176,7 +1176,8 @@ - + + @@ -2133,12 +2134,12 @@ - @@ -2152,4 +2153,4 @@ - \ No newline at end of file + From 8e0926449f62fd8a4daffd00c729cc2a78c03c40 Mon Sep 17 00:00:00 2001 From: Trivial-Man Date: Thu, 13 Jul 2017 22:48:37 -0600 Subject: [PATCH 17/17] Fix LuaPictureBox Got left out when fixing other files. Sorry. --- .../tools/Lua/LuaPictureBox.cs | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaPictureBox.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaPictureBox.cs index 44cc72b43d..ff3db73575 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaPictureBox.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaPictureBox.cs @@ -2,9 +2,8 @@ using System.Drawing; using System.Windows.Forms; -using LuaInterface; +using NLua; using System.Collections.Generic; -using System.IO; namespace BizHawk.Client.EmuHawk { @@ -381,5 +380,17 @@ namespace BizHawk.Client.EmuHawk var p = PointToClient(Control.MousePosition); return p; } + + private void DoLuaClick(object sender, EventArgs e) + { + LuaWinform parent = Parent as LuaWinform; + parent?.DoLuaEvent(Handle); + } + + protected override void OnClick(EventArgs e) + { + DoLuaClick(this, e); + base.OnClick(e); + } } -} +} \ No newline at end of file