Path: blob/main/public/games/files/webretro/assets/charToCodeMap.js
1034 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};104105