mirror of
https://github.com/exane/not-gwent-online
synced 2024-10-31 10:36:53 +00:00
119 lines
2.5 KiB
JavaScript
119 lines
2.5 KiB
JavaScript
var shortid = require("shortid");
|
|
var Battle = require("./Battle");
|
|
|
|
var Room = (function(){
|
|
var Room = function(scServer){
|
|
if(!(this instanceof Room)){
|
|
return (new Room(scServer));
|
|
}
|
|
/**
|
|
* constructor here
|
|
*/
|
|
|
|
var self = this;
|
|
this._id = shortid.generate();
|
|
this._users = [];
|
|
this._ready = {};
|
|
this.socket = scServer.global;
|
|
/*
|
|
this._channel = this.socket.subscribe(this._id);*/
|
|
|
|
/*this._channel.watch(function(data) {
|
|
*//*self._users.forEach(function(user) {
|
|
|
|
})*//*
|
|
});*/
|
|
|
|
};
|
|
var r = Room.prototype;
|
|
/**
|
|
* methods && properties here
|
|
* r.property = null;
|
|
* r.getProperty = function() {...}
|
|
*/
|
|
r.MAX_USER = 2;
|
|
r._users = null;
|
|
r._id = null;
|
|
r._battle = null;
|
|
r._ready = null;
|
|
r._channel = null;
|
|
|
|
r.getID = function(){
|
|
return this._id;
|
|
}
|
|
|
|
r.join = function(user){
|
|
if(this._users.length >= 2) return;
|
|
this._users.push(user);
|
|
user.addRoom(this);
|
|
/*user.joinRoom(this.getID());*/
|
|
|
|
if(!this.isOpen()){
|
|
this.initBattle();
|
|
}
|
|
}
|
|
|
|
r.isOpen = function(){
|
|
return !(this._users.length >= 2);
|
|
}
|
|
/*
|
|
|
|
r.send = function(event, data){
|
|
*/
|
|
/*this.socket.publish(this._id + "|" + event, data);
|
|
this.socket.publish(this._id, {
|
|
event: event,
|
|
data: data
|
|
});
|
|
var subs = this.socket.subscriptions();
|
|
subs.forEach(function(sub) {
|
|
|
|
});*//*
|
|
|
|
this._channel.publish(event, data);
|
|
}
|
|
*/
|
|
|
|
r.getPlayers = function(){
|
|
return this._users;
|
|
}
|
|
|
|
r.initBattle = function(){
|
|
var self = this;
|
|
var side = 0;
|
|
this._battle = Battle(this._id, this._users[0], this._users[1], this.socket);
|
|
this._users[0].send("init:battle", {side: "p1"});
|
|
this._users[1].send("init:battle", {side: "p2"});
|
|
}
|
|
|
|
r.setReady = function(user, b){
|
|
b = typeof b == "undefined" ? true : b;
|
|
this._ready[user.getID()] = b;
|
|
if(this.bothReady()){
|
|
this._battle.init();
|
|
}
|
|
/*
|
|
if(!this.checkIfReady()) return;
|
|
|
|
this._users[0].send("init:battle", {side: "p1"});
|
|
this._users[1].send("init:battle", {side: "p2"});
|
|
if(!this.checkIfReady()) return;
|
|
this._battle.init();*/
|
|
}
|
|
|
|
r.bothReady = function(){
|
|
return !!this._ready[this._users[0].getID()] && !!this._ready[this._users[1].getID()];
|
|
}
|
|
/*
|
|
r.checkIfReady = function(){
|
|
for(var i = 0; i < this._users.length; i++) {
|
|
if(!this._ready[this._users[i].getID()]) return false;
|
|
}
|
|
return true;
|
|
}*/
|
|
|
|
|
|
return Room;
|
|
})();
|
|
|
|
module.exports = Room; |