8
2015
Ludum Dare Theme Slaughter with keyboard

Quick & dirty GreaseMonkey script (for Firefox) to use Ludum Dare voting page with arrow keys (left = good, right = bad, down = slaughter)
Added also TextToSpeech (reads the theme name), commented out by default, see below.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name LudumDareThemeSlaughterKeyboard | |
| // @namespace unitycoder.com | |
| // @description use arrowkeys to vote | |
| // @include http://ludumdare.com/theme/* | |
| // @include http://www.ludumdare.com/theme/* | |
| // @version 1.3 | |
| // @grant none | |
| // ==/UserScript== | |
| // OPTIONAL(remove comments from next 2 lines) – Reads the theme name : Powered by TTS-API.COM | |
| //var theme = document.querySelector("body > center:nth-child(1) > table:nth-child(4) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > a:nth-child(1)").innerHTML; | |
| //document.querySelector("body").innerHTML +=("<audio autoplay><source src=http://tts-api.com/tts.mp3?q=" + escape(theme) + " type=audio/mpeg></audio>"); | |
| // select voting elements | |
| var good = document.querySelector("body > center:nth-child(1) > table:nth-child(4) > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(1) > a:nth-child(1)"); | |
| var bad = document.querySelector("body > center:nth-child(1) > table:nth-child(4) > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(2) > a:nth-child(1)"); | |
| var slaughter = document.querySelector("body > center:nth-child(1) > table:nth-child(4) > tbody:nth-child(1) > tr:nth-child(3) > td:nth-child(1) > a:nth-child(1)"); | |
| // append arrows | |
| good.innerHTML = "< "+good.innerHTML; | |
| bad.innerHTML += " >"; | |
| slaughter.innerHTML = " \\/ "+slaughter.innerHTML+" \\/"; | |
| // listen keys | |
| document.onkeydown = KeyListener; | |
| function KeyListener(e) | |
| { | |
| e = e || window.event; | |
| if (e.keyCode == '40') Vote(slaughter); // down arrow (slaughter) | |
| if (e.keyCode == '37') Vote(good); // left arrow (good) | |
| if (e.keyCode == '39') Vote(bad); // right arrow (bad) | |
| } | |
| function Vote(obj) | |
| { | |
| obj.parentElement.style.backgroundColor = "#00FF00"; | |
| // window.location = url; // doesnt set header Referer, in case the server checks it | |
| obj.click(); // call click() on the link, sets Referer | |
| } |
Related Posts
2 Comments + Add Comment
Leave a comment to mgear
Recent posts
- Testing Unity AI Beta
- Ways to Support UnityCoder Development
- Using UI Slider to Create 5-Star Rating Element
- Game Music Library For Unity (editor plugin)
- Fontastic : Easily Test Fonts in Unity Editor!
- GeoTiff Importer & Terrain Generator for Unity
- Create Baked DropShadow for UI images
- .JP2 Ortho Image Converter to PNG/JPG/TIFF
- Convert LAS/LAZ/PLY pointclouds to GLTF (GLB) Point Meshes (standalone converter)
- Detect SRP (URP or HDRP) with Assembly Definition Version Defines
- [LudumDare57] Theme: Depths
- MotionVector Effect: Object “disappears” when paused
Recent Comments
- on [Asset Store] PolygonCollider2D Optimizer
- on Trajectory Test Scene 2.0
- on Vector3 maths for dummies!
- on UnityHub 3.6.0: Remove Version Control & Cloud Dashboard columns
- on Using RenderDoc with Unity (graphics debugger)
- on UI Scroll View automatic Content height
- on [Asset Store] Point Cloud Viewer & Tools
- on [Asset Store] Point Cloud Viewer & Tools
Coin:
CUgDSbRqFcAumDSAcdKDvuXsw26VdkJe8C8WGUQHBAGS
An article by












^ did some cleaning up on the code, and now it also sets Headers/Referrer, using .click(), just in case the server checks for it
Theme Slaughter Command Line (shell script)
http://ludumdare.com/compo/2015/04/03/theme-slaughter-command-line/