mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 18:47:35 +00:00
added debug information when users join
This commit is contained in:
parent
bffb16e77c
commit
e37d1eeb2e
2 changed files with 25 additions and 2 deletions
|
|
@ -52,8 +52,14 @@ define(["Protocol/Helper", "Chuck/ClientGame"], function(ProtocolHelper, ClientG
|
|||
Networker.prototype.onJoinSuccess = function(channelName) {
|
||||
this.clientGame = new ClientGame(this);
|
||||
this.clientGame.loadLevel("default.json")
|
||||
console.log("Joined " + channelName);
|
||||
}
|
||||
|
||||
Networker.prototype.onUserJoined = function(userId) {
|
||||
//this.clientGame.userJoined(userId);
|
||||
console.log("User " + userId + " joined");
|
||||
};
|
||||
|
||||
Networker.prototype.processControlCommand = function(command, options){
|
||||
switch(command) {
|
||||
case 'joinSuccess':
|
||||
|
|
@ -64,6 +70,10 @@ define(["Protocol/Helper", "Chuck/ClientGame"], function(ProtocolHelper, ClientG
|
|||
this.clientGame.processGameCommand(options);
|
||||
break;
|
||||
|
||||
case 'userJoined':
|
||||
this.onUserJoined(options);
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue