// connection.send(JSON.stringify(position));
// }
+ function userName(){
+ var username = document.getElementById("nick").value;
+ if(username == ""){
+ alert('You must enter a user name to enter the game lobby');
+ return;
+ }
+
+ connection.send(JSON.stringify({name: username}));
+ }
+
function showLobby() {
- U = new UserEvent();
- U.playerIdx = "userInfo";
+ // var username =
+ // U = new UserEvent();
+ // U.playerIdx = "userInfo";
document.querySelector(".content").style.display = "none";
document.getElementById("lobby").style.display = "flex";
- connection.send(JSON.stringify(U));
- console.log(JSON.stringify(U));
+ // connection.send(JSON.stringify(U));
+ // console.log(JSON.stringify(U));
}
function backToHome() {