Made joypad_get independent of mnemonics. Here's the Lua script I used to test:
while true do joypad.set("Up", true) local buttons = joypad.get() local result = {} for index, value in pairs(buttons) do table.insert(result, index .. ": " .. tostring(value)) end gui.text(0, 36, table.concat(result, "\n")) emu.frameadvance() end For some bizarre reason, after a while, the ordering of the buttons goes from stable to chaotic, making it impossible to read the buttons pressed. adelikat says not to worry about this because order is meaningless in Lua. Still, this is very curious... TODO: Set using a ClickyVirtualPadController and Global.StickyXORAdapter.SetSticky(Controller + " Up", false)...whatever that means.
This commit is contained in:
parent
a4a8dec005
commit
78d8effcfc
|
@ -299,7 +299,7 @@ namespace BizHawk.MultiClient
|
|||
};
|
||||
|
||||
public static string[] JoypadFunctions = new string[] {
|
||||
//"set",
|
||||
"set",
|
||||
"get",
|
||||
};
|
||||
|
||||
|
@ -1100,13 +1100,16 @@ namespace BizHawk.MultiClient
|
|||
//Joypad library
|
||||
//----------------------------------------------------
|
||||
|
||||
public ControllerDefinition Type { get; set; }
|
||||
string ControlType { get { return Type.Name; } }
|
||||
|
||||
//Currently sends all controllers, needs to control which ones it sends
|
||||
public string joypad_get(object lua_input)
|
||||
public LuaTable joypad_get()
|
||||
{
|
||||
return Global.GetOutputControllersAsMnemonic();
|
||||
LuaTable buttons = new LuaTable(1, lua);
|
||||
foreach (string button in Global.ControllerOutput.Source.Type.BoolButtons)
|
||||
buttons[button] = Global.ControllerOutput[button];
|
||||
buttons["clear"] = null;
|
||||
buttons["getluafunctionslist"] = null;
|
||||
buttons["output"] = null;
|
||||
return buttons;
|
||||
}
|
||||
|
||||
public void joypad_set(object button, object value)
|
||||
|
@ -1118,7 +1121,7 @@ namespace BizHawk.MultiClient
|
|||
);
|
||||
return;
|
||||
}
|
||||
Global.RenderPanel.AddMessage("Button: " + button + ", Value: " + value.ToString());
|
||||
string result = "Button: " + button + ", Value: " + value.ToString();
|
||||
}
|
||||
|
||||
//----------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue