Add lua canvas methods to documentation

This commit is contained in:
adelikat 2017-05-07 16:33:35 -05:00
parent 999dcdaec8
commit e839a1c163
3 changed files with 38 additions and 13 deletions

View File

@ -65,8 +65,8 @@ namespace BizHawk.Client.Common
var luaAttr = typeof(LuaMethodAttributes);
var methods = GetType()
.GetMethods()
.Where(m => m.GetCustomAttributes(luaAttr, false).Any());
.GetMethods()
.Where(m => m.GetCustomAttributes(luaAttr, false).Any());
foreach (var method in methods)
{

View File

@ -1,13 +1,15 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading;
using BizHawk.Client.Common;
using LuaInterface;
using System.Reflection;
using System.Collections.Generic;
using BizHawk.Common.ReflectionExtensions;
using BizHawk.Emulation.Common;
using System.IO;
using BizHawk.Client.Common;
namespace BizHawk.Client.EmuHawk
{
@ -90,6 +92,22 @@ namespace BizHawk.Client.EmuHawk
EmulatorLuaLibrary.FrameAdvanceCallback = Frameadvance;
EmulatorLuaLibrary.YieldCallback = EmuYield;
// Add LuaCanvas to Docs
Type luaCanvas = typeof(LuaCanvas);
var luaAttr = typeof(LuaMethodAttributes);
var methods = luaCanvas
.GetMethods()
.Where(m => m.GetCustomAttributes(typeof(LuaMethodAttributes), false).Any());
foreach (var method in methods)
{
var luaMethodAttr = method.GetCustomAttributes(luaAttr, false).First() as LuaMethodAttributes;
var luaName = "(Canvas)." + luaMethodAttr.Name;
Docs.Add(new LibraryFunction(nameof(LuaCanvas), luaCanvas.Description(), method));
}
}
public void Restart(IEmulatorServiceProvider newServiceProvider)

View File

@ -1,14 +1,12 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using BizHawk.Client.Common;
namespace BizHawk.Client.EmuHawk
{
[Description("Represents a canvas object returned by the gui.createcanvas() method")]
public partial class LuaCanvas : Form
{
private Graphics graphics;
@ -22,21 +20,27 @@ namespace BizHawk.Client.EmuHawk
graphics = Graphics.FromImage(pictureBox.Image);
}
[LuaMethodAttributes("SetTitle", "Sets the canvas window title")]
public void SetTitle(string title)
{
this.Text = title;
Text = title;
}
[LuaMethodAttributes("Clear", "Clears the canvas")]
public void Clear(Color color)
{
graphics.Clear(color);
}
[LuaMethodAttributes("Refresh", "Redraws the canvas")]
public new void Refresh()
{
pictureBox.Refresh();
}
[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)
{
if (fill.HasValue)
@ -49,6 +53,9 @@ namespace BizHawk.Client.EmuHawk
graphics.DrawRectangle(pen, x, y, width, height);
}
[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)
{
var family = FontFamily.GenericMonospace;