Lua - convert SNES library to service injection system

This commit is contained in:
adelikat 2015-01-01 20:37:31 +00:00
parent 01019686cf
commit 6f4b01417f
1 changed files with 57 additions and 69 deletions

View File

@ -9,6 +9,9 @@ namespace BizHawk.Client.Common
[Description("Functions specific to SNESHawk (functions may not run when an SNES game is not loaded)")]
public sealed class SnesLuaLibrary : LuaLibraryBase
{
[OptionalService]
private LibsnesCore Snes { get; set; }
public SnesLuaLibrary(Lua lua)
: base(lua) { }
@ -17,20 +20,29 @@ namespace BizHawk.Client.Common
public override string Name { get { return "snes"; } }
private static LibsnesCore.SnesSettings GetSettings()
private LibsnesCore.SnesSettings GetSettings()
{
return ((LibsnesCore)Global.Emulator).GetSettings();
if (Snes != null)
{
return Snes.GetSettings();
}
return new LibsnesCore.SnesSettings();
}
private static void PutSettings(LibsnesCore.SnesSettings settings) {
((LibsnesCore)Global.Emulator).PutSettings(settings);
}
private void PutSettings(LibsnesCore.SnesSettings settings)
{
if (Snes != null)
{
Snes.PutSettings(settings);
}
}
[LuaMethodAttributes(
"getlayer_bg_1",
"Returns whether the bg 1 layer is displayed"
)]
public static bool GetLayerBg1()
public bool GetLayerBg1()
{
return GetSettings().ShowBG1_1;
}
@ -39,7 +51,7 @@ namespace BizHawk.Client.Common
"getlayer_bg_2",
"Returns whether the bg 2 layer is displayed"
)]
public static bool GetLayerBg2()
public bool GetLayerBg2()
{
return GetSettings().ShowBG2_1;
}
@ -48,7 +60,7 @@ namespace BizHawk.Client.Common
"getlayer_bg_3",
"Returns whether the bg 3 layer is displayed"
)]
public static bool GetLayerBg3()
public bool GetLayerBg3()
{
return GetSettings().ShowBG3_1;
}
@ -57,7 +69,7 @@ namespace BizHawk.Client.Common
"getlayer_bg_4",
"Returns whether the bg 4 layer is displayed"
)]
public static bool GetLayerBg4()
public bool GetLayerBg4()
{
return GetSettings().ShowBG4_1;
}
@ -66,7 +78,7 @@ namespace BizHawk.Client.Common
"getlayer_obj_1",
"Returns whether the obj 1 layer is displayed"
)]
public static bool GetLayerObj1()
public bool GetLayerObj1()
{
return GetSettings().ShowOBJ_0;
}
@ -75,7 +87,7 @@ namespace BizHawk.Client.Common
"getlayer_obj_2",
"Returns whether the obj 2 layer is displayed"
)]
public static bool GetLayerObj2()
public bool GetLayerObj2()
{
return GetSettings().ShowOBJ_1;
}
@ -84,7 +96,7 @@ namespace BizHawk.Client.Common
"getlayer_obj_3",
"Returns whether the obj 3 layer is displayed"
)]
public static bool GetLayerObj3()
public bool GetLayerObj3()
{
return GetSettings().ShowOBJ_2;
}
@ -93,7 +105,7 @@ namespace BizHawk.Client.Common
"getlayer_obj_4",
"Returns whether the obj 4 layer is displayed"
)]
public static bool GetLayerObj4()
public bool GetLayerObj4()
{
return GetSettings().ShowOBJ_3;
}
@ -102,112 +114,88 @@ namespace BizHawk.Client.Common
"setlayer_bg_1",
"Sets whether the bg 1 layer is displayed"
)]
public static void SetLayerBg1(bool value)
public void SetLayerBg1(bool value)
{
if (Global.Emulator is LibsnesCore)
{
var s = GetSettings();
s.ShowBG1_1 = s.ShowBG1_0 = value;
PutSettings(s);
}
var s = GetSettings();
s.ShowBG1_1 = s.ShowBG1_0 = value;
PutSettings(s);
}
[LuaMethodAttributes(
"setlayer_bg_2",
"Sets whether the bg 2 layer is displayed"
)]
public static void SetLayerBg2(bool value)
public void SetLayerBg2(bool value)
{
if (Global.Emulator is LibsnesCore)
{
var s = GetSettings();
s.ShowBG2_1 = s.ShowBG2_0 = value;
PutSettings(s);
}
var s = GetSettings();
s.ShowBG2_1 = s.ShowBG2_0 = value;
PutSettings(s);
}
[LuaMethodAttributes(
"setlayer_bg_3",
"Sets whether the bg 3 layer is displayed"
)]
public static void SetLayerBg3(bool value)
public void SetLayerBg3(bool value)
{
if (Global.Emulator is LibsnesCore)
{
var s = GetSettings();
s.ShowBG3_1 = s.ShowBG3_0 = value;
PutSettings(s);
}
var s = GetSettings();
s.ShowBG3_1 = s.ShowBG3_0 = value;
PutSettings(s);
}
[LuaMethodAttributes(
"setlayer_bg_4",
"Sets whether the bg 4 layer is displayed"
)]
public static void SetLayerBg4(bool value)
public void SetLayerBg4(bool value)
{
if (Global.Emulator is LibsnesCore)
{
var s = GetSettings();
s.ShowBG4_1 = s.ShowBG4_0 = value;
PutSettings(s);
}
var s = GetSettings();
s.ShowBG4_1 = s.ShowBG4_0 = value;
PutSettings(s);
}
[LuaMethodAttributes(
"setlayer_obj_1",
"Sets whether the obj 1 layer is displayed"
)]
public static void SetLayerObj1(bool value)
public void SetLayerObj1(bool value)
{
if (Global.Emulator is LibsnesCore)
{
var s = GetSettings();
s.ShowOBJ_0 = value;
PutSettings(s);
}
var s = GetSettings();
s.ShowOBJ_0 = value;
PutSettings(s);
}
[LuaMethodAttributes(
"setlayer_obj_2",
"Sets whether the obj 2 layer is displayed"
)]
public static void SetLayerObj2(bool value)
public void SetLayerObj2(bool value)
{
if (Global.Emulator is LibsnesCore)
{
var s = GetSettings();
s.ShowOBJ_1 = value;
PutSettings(s);
}
var s = GetSettings();
s.ShowOBJ_1 = value;
PutSettings(s);
}
[LuaMethodAttributes(
"setlayer_obj_3",
"Sets whether the obj 3 layer is displayed"
)]
public static void SetLayerObj3(bool value)
public void SetLayerObj3(bool value)
{
if (Global.Emulator is LibsnesCore)
{
var s = GetSettings();
s.ShowOBJ_2 = value;
PutSettings(s);
}
var s = GetSettings();
s.ShowOBJ_2 = value;
PutSettings(s);
}
[LuaMethodAttributes(
"setlayer_obj_4",
"Sets whether the obj 4 layer is displayed"
)]
public static void SetLayerObj4(bool value)
public void SetLayerObj4(bool value)
{
if (Global.Emulator is LibsnesCore)
{
var s = GetSettings();
s.ShowOBJ_3 = value;
PutSettings(s);
}
var s = GetSettings();
s.ShowOBJ_3 = value;
PutSettings(s);
}
}
}