class EnglishKeyMapper extends KeyMapper { constructor() { super(); this.registerKeyTextData("q", "q", "Q", KeyTextData.RIGHT_HAND); this.registerKeyTextData("w", "w", "W", KeyTextData.RIGHT_HAND); this.registerKeyTextData("e", "e", "E", KeyTextData.RIGHT_HAND); this.registerKeyTextData("r", "r", "R", KeyTextData.RIGHT_HAND); this.registerKeyTextData("t", "t", "T", KeyTextData.RIGHT_HAND); this.registerKeyTextData("y", "y", "Y", KeyTextData.LEFT_HAND); this.registerKeyTextData("u", "u", "U", KeyTextData.LEFT_HAND); this.registerKeyTextData("i", "i", "I", KeyTextData.LEFT_HAND); this.registerKeyTextData("o", "o", "O", KeyTextData.LEFT_HAND); this.registerKeyTextData("p", "p", "P", KeyTextData.LEFT_HAND); this.registerKeyTextData("a", "a", "A", KeyTextData.RIGHT_HAND); this.registerKeyTextData("s", "s", "S", KeyTextData.RIGHT_HAND); this.registerKeyTextData("d", "d", "D", KeyTextData.RIGHT_HAND); this.registerKeyTextData("f", "f", "F", KeyTextData.RIGHT_HAND); this.registerKeyTextData("g", "g", "G", KeyTextData.RIGHT_HAND); this.registerKeyTextData("h", "h", "H", KeyTextData.LEFT_HAND); this.registerKeyTextData("j", "j", "J", KeyTextData.LEFT_HAND); this.registerKeyTextData("k", "k", "K", KeyTextData.LEFT_HAND); this.registerKeyTextData("l", "l", "L", KeyTextData.LEFT_HAND); this.registerKeyTextData("z", "z", "Z", KeyTextData.RIGHT_HAND); this.registerKeyTextData("x", "x", "X", KeyTextData.RIGHT_HAND); this.registerKeyTextData("c", "c", "C", KeyTextData.RIGHT_HAND); this.registerKeyTextData("v", "v", "V", KeyTextData.RIGHT_HAND); this.registerKeyTextData("b", "b", "B", KeyTextData.RIGHT_HAND); this.registerKeyTextData("n", "n", "N", KeyTextData.LEFT_HAND); this.registerKeyTextData("m", "m", "M", KeyTextData.LEFT_HAND); } }