Path: blob/main/public/webretro/assets/charToCodeMap.js
1224 views
var charToCodeMap = {1"q": {code: "KeyQ"},2"w": {code: "KeyW"},3"e": {code: "KeyE"},4"r": {code: "KeyR"},5"t": {code: "KeyT"},6"y": {code: "KeyY"},7"u": {code: "KeyU"},8"i": {code: "KeyI"},9"o": {code: "KeyO"},10"p": {code: "KeyP"},11"a": {code: "KeyA"},12"s": {code: "KeyS"},13"d": {code: "KeyD"},14"f": {code: "KeyF"},15"g": {code: "KeyG"},16"h": {code: "KeyH"},17"j": {code: "KeyJ"},18"k": {code: "KeyK"},19"l": {code: "KeyL"},20"z": {code: "KeyZ"},21"x": {code: "KeyX"},22"c": {code: "KeyC"},23"v": {code: "KeyV"},24"b": {code: "KeyB"},25"n": {code: "KeyN"},26"m": {code: "KeyM"},27"Q": {code: "KeyQ", shift: true},28"W": {code: "KeyW", shift: true},29"E": {code: "KeyE", shift: true},30"R": {code: "KeyR", shift: true},31"T": {code: "KeyT", shift: true},32"Y": {code: "KeyY", shift: true},33"U": {code: "KeyU", shift: true},34"I": {code: "KeyI", shift: true},35"O": {code: "KeyO", shift: true},36"P": {code: "KeyP", shift: true},37"A": {code: "KeyA", shift: true},38"S": {code: "KeyS", shift: true},39"D": {code: "KeyD", shift: true},40"F": {code: "KeyF", shift: true},41"G": {code: "KeyG", shift: true},42"H": {code: "KeyH", shift: true},43"J": {code: "KeyJ", shift: true},44"K": {code: "KeyK", shift: true},45"L": {code: "KeyL", shift: true},46"Z": {code: "KeyZ", shift: true},47"X": {code: "KeyX", shift: true},48"C": {code: "KeyC", shift: true},49"V": {code: "KeyV", shift: true},50"B": {code: "KeyB", shift: true},51"N": {code: "KeyN", shift: true},52"M": {code: "KeyM", shift: true},53"0": {code: "Digit0"},54"1": {code: "Digit1"},55"2": {code: "Digit2"},56"3": {code: "Digit3"},57"4": {code: "Digit4"},58"5": {code: "Digit5"},59"6": {code: "Digit6"},60"7": {code: "Digit7"},61"8": {code: "Digit8"},62"9": {code: "Digit9"},63")": {code: "Digit0", shift: true},64"!": {code: "Digit1", shift: true},65"@": {code: "Digit2", shift: true},66"#": {code: "Digit3", shift: true},67"$": {code: "Digit4", shift: true},68"%": {code: "Digit5", shift: true},69"^": {code: "Digit6", shift: true},70"&": {code: "Digit7", shift: true},71"*": {code: "Digit8", shift: true},72"(": {code: "Digit9", shift: true},73"`": {code: "Backquote"},74"-": {code: "Minus"},75"=": {code: "Equal"},76"[": {code: "BracketLeft"},77"]": {code: "BracketRight"},78"\\": {code: "Backslash"},79";": {code: "Semicolon"},80"'": {code: "Quote"},81",": {code: "Comma"},82".": {code: "Period"},83"/": {code: "Slash"},84"~": {code: "Backquote", shift: true},85"_": {code: "Minus", shift: true},86"+": {code: "Equal", shift: true},87"{": {code: "BracketLeft", shift: true},88"}": {code: "BracketRight", shift: true},89"|": {code: "Backslash", shift: true},90":": {code: "Semicolon", shift: true},91"\"": {code: "Quote", shift: true},92"<": {code: "Comma", shift: true},93">": {code: "Period", shift: true},94"?": {code: "Slash", shift: true},95"\t": {code: "Tab"},96"\n": {code: "Enter"},97" ": {code: "Space"}98};99100var charToKeyMap = {101"\t": {key: "Tab"},102"\n": {key: "Enter"}103};104105var codeToConfigIDMap = {106"KeyA": "a",107"KeyB": "b",108"KeyC": "c",109"KeyD": "d",110"KeyE": "e",111"KeyF": "f",112"KeyG": "g",113"KeyH": "h",114"KeyI": "i",115"KeyJ": "j",116"KeyK": "k",117"KeyL": "l",118"KeyM": "m",119"KeyN": "n",120"KeyO": "o",121"KeyP": "p",122"KeyQ": "q",123"KeyR": "r",124"KeyS": "s",125"KeyT": "t",126"KeyU": "u",127"KeyV": "v",128"KeyW": "w",129"KeyX": "x",130"KeyY": "y",131"KeyZ": "z",132"ArrowLeft": "left",133"ArrowRight": "right",134"ArrowUp": "up",135"ArrowDown": "down",136"Enter": "enter",137"NumpadEnter": "kp_enter",138"Tab": "tab",139"Insert": "insert",140"Delete": "del",141"End": "end",142"Home": "home",143"ShiftRight": "rshift",144"ShiftLeft": "shift",145"ControlLeft": "ctrl",146"AltLeft": "alt",147"Space": "space",148"Escape": "escape",149"NumpadAdd": "add",150"NumpadSubtract": "subtract",151"F1": "f1",152"F2": "f2",153"F3": "f3",154"F4": "f4",155"F5": "f5",156"F6": "f6",157"F7": "f7",158"F8": "f8",159"F9": "f9",160"F10": "f10",161"F11": "f11",162"F12": "f12",163"Digit0": "num0",164"Digit1": "num1",165"Digit2": "num2",166"Digit3": "num3",167"Digit4": "num4",168"Digit5": "num5",169"Digit6": "num6",170"Digit7": "num7",171"Digit8": "num8",172"Digit9": "num9",173"PageUp": "pageup",174"PageDown": "pagedown",175"Numpad0": "keypad0",176"Numpad1": "keypad1",177"Numpad2": "keypad2",178"Numpad3": "keypad3",179"Numpad4": "keypad4",180"Numpad5": "keypad5",181"Numpad6": "keypad6",182"Numpad7": "keypad7",183"Numpad8": "keypad8",184"Numpad9": "keypad9",185"Period": "period",186"CapsLock": "capslock",187"NumLock": "numlock",188"Backspace": "backspace",189"NumpadMultiply": "multiply",190"NumpadDivide": "divide",191"PrintScreen": "print_screen",192"ScrollLock": "scroll_lock",193"Backquote": "tilde",194"Pause": "pause",195"Quote": "quote",196"Comma": "comma",197"Minus": "minus",198"Slash": "slash",199"Semicolon": "semicolon",200"Equal": "equals",201"BracketLeft": "leftbracket",202"Backslash": "backslash",203"BracketRight": "rightbracket",204"NumpadDecimal": "kp_period",205"NumpadEqual": "kp_equals",206"ControlRight": "rctrl",207"AltRight": "ralt",208"F13": "f13",209"F14": "f14",210"F15": "f15",211"MetaRight": "rmeta",212"MetaLeft": "lmeta",213"Help": "help",214"ContextMenu": "menu",215"Power": "power"216};217218219