mirror of
https://github.com/exane/not-gwent-online
synced 2024-10-31 10:36:53 +00:00
85 lines
1.7 KiB
JavaScript
85 lines
1.7 KiB
JavaScript
var Battleside = require("./Battleside");
|
|
var PubSub = require("pubsub-js");
|
|
|
|
var io = global.io;
|
|
|
|
var Battle = (function(){
|
|
var Battle = function(id, p1, p2){
|
|
if(!(this instanceof Battle)){
|
|
return (new Battle(id, p1, p2));
|
|
}
|
|
/**
|
|
* constructor here
|
|
*/
|
|
this._id = id;
|
|
this._user1 = p1;
|
|
this._user2 = p2;
|
|
};
|
|
var r = Battle.prototype;
|
|
/**
|
|
* methods && properties here
|
|
* r.property = null;
|
|
* r.getProperty = function() {...}
|
|
*/
|
|
|
|
r.p1 = null;
|
|
r.p2 = null;
|
|
r._user1 = null;
|
|
r._user2 = null;
|
|
r.turn = 0;
|
|
|
|
r._id = null;
|
|
|
|
|
|
r.init = function(){
|
|
this.p1 = Battleside(this._user1.getName(), 0, this, this._user1);
|
|
this.p2 = Battleside(this._user2.getName(), 1, this, this._user2);
|
|
this.p1.foe = this.p2;
|
|
this.p2.foe = this.p1;
|
|
|
|
this.start();
|
|
}
|
|
|
|
r.start = function(){
|
|
this.p1.setLeadercard();
|
|
this.p2.setLeadercard();
|
|
this.p1.draw(10);
|
|
this.p2.draw(10);
|
|
|
|
PubSub.subscribe("nextTurn", this.switchTurn.bind(this));
|
|
|
|
this.switchTurn();
|
|
}
|
|
|
|
r.switchTurn = function(){
|
|
/*this.playerManager.renderInfos();
|
|
if(this.playerManager.bothPassed() && !this._roundCheck) {
|
|
//start new round
|
|
this._roundCheck = true;
|
|
this.checkRound();
|
|
return;
|
|
}
|
|
if(this.playerManager.bothPassed()) {
|
|
return;
|
|
}
|
|
var entity = this.playerManager.getNextPlayer();
|
|
|
|
this.playerManager.renderInfos();*/
|
|
var side = this.turn++ % 2 ? this.p1 : this.p2;
|
|
|
|
|
|
PubSub.publish("onEachTurn");
|
|
PubSub.publish("turn/" + side.getID());
|
|
console.log("current Turn: ", side.getName());
|
|
|
|
}
|
|
|
|
|
|
r.send = function(event, data){
|
|
io.to(this._id).emit(event, data);
|
|
}
|
|
|
|
return Battle;
|
|
})();
|
|
|
|
module.exports = Battle; |