From 4f5e43f40c311f04e077c5875364851191ceb760 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 16 May 2014 22:55:11 +0000 Subject: [PATCH] add Lua script that shows a target on screen for the zapper x,y --- output/Lua/NES/ZapperTarget.lua | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 output/Lua/NES/ZapperTarget.lua diff --git a/output/Lua/NES/ZapperTarget.lua b/output/Lua/NES/ZapperTarget.lua new file mode 100644 index 0000000000..1c74748464 --- /dev/null +++ b/output/Lua/NES/ZapperTarget.lua @@ -0,0 +1,20 @@ +-- Draws a target on screen representing the x,y coordinates of the Zapper plugged into the 2nd port + +while true do + buttons = joypad.get(); + x = buttons["P2 Zapper X"]; + y = buttons["P2 Zapper Y"]; + fired = buttons["P2 Fire"]; + + color = "white"; + if fired then + color = "red"; + end + + gui.drawLine(x - 4, y + 4, x + 4, y - 4, color); + gui.drawLine(x + 4, y + 4, x - 4, y - 4, color); + gui.drawEllipse(x - 5, y - 5, 10, 10, color); + gui.drawPixel(x, y, "red"); + gui.drawEllipse(x - 1, y - 1, 2, 2, "red"); + emu.frameadvance() +end \ No newline at end of file