Skip to content
Snippets Groups Projects
Commit 8b7d8565 authored by Jeremy Levin's avatar Jeremy Levin
Browse files

added numpad page

parent c4e17978
No related branches found
No related tags found
No related merge requests found
numpad.json 100644 → 100755
{
"button1": [
"q",
"pad1": [
"0",
"0",
"0"
],
"button2": [
"w",
"pad2": [
"1",
"10",
"0"
],
"button3": [
"e",
"pad3": [
"2",
"20",
"0"
],
"button4": [
"r",
"pad4": [
"3",
"30",
"0"
],
"button5": [
"t",
"pad5": [
"4",
"40",
"0"
],
"button6": [
"y",
"pad6": [
"5",
"50",
"0"
],
"button7": [
"u",
"pad7": [
"6",
"60",
"0"
],
"button8": [
"i",
"pad8": [
"7",
"70",
"0"
],
"button9": [
"o",
"pad9": [
"8",
"80",
"0"
],
"button10": [
"p",
"pad10": [
"9",
"90",
"0"
],
"button11": [
"a",
"pad11": [
"-",
"0",
"30"
],
"button12": [
"s",
"pad12": [
"/",
"10",
"30"
],
"button13": [
"d",
"pad13": [
":",
"20",
"30"
],
"button14": [
"f",
"pad14": [
";",
"30",
"30"
],
"button15": [
"g",
"pad15": [
"(",
"40",
"30"
],
"button16": [
"h",
"pad16": [
")",
"50",
"30"
],
"button17": [
"j",
"pad17": [
"$",
"60",
"30"
],
"button18": [
"k",
"pad18": [
"&",
"70",
"30"
],
"button19": [
"l",
"pad19": [
"@",
"80",
"30"
],
"button20": [
"z",
"pad20": [
"\"",
"0",
"60"
],
"button21": [
"x",
"pad21": [
".",
"10",
"60"
],
"button22": [
"c",
"pad22": [
",",
"20",
"60"
],
"button23": [
"v",
"pad23": [
"?",
"30",
"60"
],
"button24": [
"b",
"pad24": [
"!",
"40",
"60"
],
"button25": [
"n",
"pad25": [
"'",
"50",
"60"
],
"button26": [
"m",
"pad26": [
"#",
"60",
"60"
],
"button27": [
"#",
"pad27": [
"%",
"70",
"60"
],
"button28": [
"@",
"*",
"80",
"60"
],
"button29": [
"*",
"=",
"90",
"60"
]
......
File added
......@@ -56,6 +56,18 @@ socket.on('updateUrls', function(newVals) {
$('#loading').html('');
});
//Purpose: Receives information from the server to update the presentation of the keys on the client
socket.on('updateNumPad', function(newVals) {
console.log(newVals);
for (var i = 0; i < newVals.x.length; i++){
$('#numpad').append('<button class = "draggable key-button" id="pad' + (i+1).toString() + '">' + newVals.k[i] + '</button>');
var ele = $('#pad' + (i+1).toString())
ele.text(newVals.k[i])
ele.css({position:'absolute', left:newVals.x[i] + '%', top:(newVals.y[i]) + '%', minHeight: (keyboardWidth*.02).toString() + "px"});
}
$('#loading').html('');
});
//Purpose: Emits the key of keyboard upon click
var emitKey = function(str) {
......
......@@ -76,6 +76,18 @@ io.on('connection', function(socket) {
ypos.push(content[key][2]);
}
socket.emit('updateKeys', {k: keys, x: xpos, y: ypos});
content = []
//Load default numpad
var file = fs.readFileSync("numpad.json")
var content = JSON.parse(file)
for (var key in content) {
keys.push(content[key][0]);
xpos.push(content[key][1]);
ypos.push(content[key][2]);
}
socket.emit('updateNumPad', {k: keys, x: xpos, y: ypos});
content = []
//Load default urls
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment