Transformania Time Hotkeys

Hotkeys for Transformania Time multiplayer edition webgame

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Transformania Time Hotkeys
// @namespace    http://steamcommunity.com/id/siggo/
// @description  Hotkeys for Transformania Time multiplayer edition webgame
// @version      0.5.9
// @author       Prios
// @exclude      https://www.transformaniatime.com/chat/rooms/*
// @match        https://www.transformaniatime.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

function keyboardShortcutListener(extraKeys) { // handles keyboard shortcuts
    
    if (event.key === "x") { // kludge
        showHidePlayers();
        return;
    }
    
	var shortcutKeys = {'l':'/PvP/Search',
						'p':'/pvp/myskills',
						'q':'/PvP/Search',
						'r':'/PvP/Meditate',
						'm':'/pvp/worldmap?showEnchant=false',
						'n':'/pvp/worldmap?showEnchant=true',
						'c':'/PvP/Cleanse',
						'h':'/PvP/Cleanse',
						'i':'/item/myinventory',
						'b':'/item/myinventory',
						'e':'/PvP/EnchantLocation',
						't':'/pvp/shout',
						'z':'/PvP/ShowOffline',
						'f':'/pvp/playerlookup',
					    '?':'/Info/GearTool'};
	jQuery.extend(shortcutKeys, extraKeys); // merges the two objects together
	var keyTarget = shortcutKeys[event.key];
	var InputFocus = $(":input").is(":focus");
	if ((keyTarget !== undefined) && !InputFocus) {
			document.removeEventListener('keypress', keyboardShortcutListener);
			window.location.href = keyTarget;
	}
}

(function() {
    'use strict';
	
	var extraKeyBinds = {};
	
	var cardinalDirCells = {1:'w', 3:'a', 5:'d', 7:'s'};
	var $movementCells = $('.tableLines').find('td');
	for (var cellOffset in cardinalDirCells) {
		var cellHref = $movementCells.eq(cellOffset).find('a').attr('href'); // putting attr() on the same line here is a teeny tiny bit wasteful for when there's no anchor found
		if (cellHref !== undefined) {
			var cellHotkey = cardinalDirCells[cellOffset];
			extraKeyBinds[cellHotkey] = cellHref;
		}
	}
	
	// keyboard shortcuts listener is attached to the document, so the page itself, or one of its components, must be in focus; the address bar, debug panel, extensions etc. are not part of the page
	document.addEventListener('keypress', function() { keyboardShortcutListener(extraKeyBinds); } );
    
})();