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
|
|
@ -12,14 +12,27 @@ define(["Chuck/ServerGame"], function(ServerGame) {
|
|||
|
||||
Channel.prototype.addUser = function(user){
|
||||
this.users[user.id] = user;
|
||||
|
||||
user.sendCommand('joinSuccess', this.name);
|
||||
this.sendCommandToAllUsersBut('userJoined', user.id, user);
|
||||
}
|
||||
|
||||
Channel.prototype.releaseUser = function(user){
|
||||
delete this.users[user.id];
|
||||
}
|
||||
|
||||
Channel.prototype.sendToAllUsers = function(package) {
|
||||
console.log("not implemented sendToAllUsers: " + JSON.stringify(package))
|
||||
Channel.prototype.sendCommandToAllUsers = function(command, options) {
|
||||
for(var id in this.users) {
|
||||
this.users[id].sendCommand(command, options);
|
||||
}
|
||||
}
|
||||
|
||||
Channel.prototype.sendCommandToAllUsersBut = function(command, options, user) {
|
||||
for(var id in this.users) {
|
||||
if (id != user.id) {
|
||||
this.users[id].sendCommand(command, options);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return Channel;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue