1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-10-31 10:36:53 +00:00
not-gwent-online/server/Field.js

162 lines
3.4 KiB
JavaScript
Raw Normal View History

2015-06-14 14:01:25 +00:00
var Field = (function(){
2015-06-21 14:50:50 +00:00
var Field = function(side, hasHornField){
2015-06-14 14:01:25 +00:00
if(!(this instanceof Field)){
2015-06-21 14:50:50 +00:00
return (new Field(side, hasHornField));
2015-06-14 14:01:25 +00:00
}
/**
* constructor here
*/
2015-06-21 14:50:50 +00:00
this._hasHornField = hasHornField || false;
2015-06-14 14:01:25 +00:00
this._cards = [];
2015-06-21 14:50:50 +00:00
this.side = side;
2015-06-14 14:01:25 +00:00
};
var r = Field.prototype;
/**
* methods && properties here
* r.property = null;
* r.getProperty = function() {...}
*/
r._cards = null;
r._score = 0;
2015-06-21 14:50:50 +00:00
r._hasHornField = null;
r._hornCard = null;
r.side = null;
2015-06-14 14:01:25 +00:00
2015-06-21 14:50:50 +00:00
r.add = function(card, isHorn){
/*if(card.hasAbility("commanders_horn")) {
this.setHorn(card);
return;
}*/
if(isHorn && this._hasHornField) {
this.setHorn(card);
return;
}
2015-06-14 14:01:25 +00:00
this._cards.push(card);
this.updateScore();
}
2015-06-14 18:50:53 +00:00
r.get = function(){
2015-06-14 14:01:25 +00:00
return this._cards;
}
2015-06-14 18:50:53 +00:00
r.getScore = function(){
this.updateScore();
2015-06-14 14:01:25 +00:00
return this._score;
}
2015-06-14 18:50:53 +00:00
r.updateScore = function(){
2015-06-14 14:01:25 +00:00
this._score = 0;
2015-06-14 18:50:53 +00:00
for(var i = 0; i < this._cards.length; i++) {
2015-06-14 14:01:25 +00:00
var card = this._cards[i];
this._score += card.getPower();
}
}
2015-06-14 18:50:53 +00:00
r.getPosition = function(card){
for(var i = 0; i < this._cards.length; i++) {
if(this._cards[i].getID() === card.getID()) return i;
}
return -1;
}
2015-06-19 19:53:48 +00:00
r.isOnField = function(card){
2015-06-21 14:50:50 +00:00
if(this._hasHornField && this.getHorn() && card.getID() === this.getHorn().getID()){
return true;
}
2015-06-19 19:53:48 +00:00
return this.getPosition(card) >= 0;
}
2015-06-14 18:50:53 +00:00
r.replaceWith = function(oldCard, newCard){
var index = this.getPosition(oldCard);
this._cards[index] = newCard;
2015-06-19 19:53:48 +00:00
oldCard.reset();
2015-06-14 18:50:53 +00:00
return oldCard;
}
r.getCard = function(id){
for(var i = 0; i < this._cards.length; i++) {
var card = this._cards[i];
if(card.getID() == id) return card;
}
return -1;
}
2015-06-19 19:53:48 +00:00
r.removeAll = function(){
2015-06-17 19:18:14 +00:00
var tmp = this._cards.slice();
2015-06-21 14:50:50 +00:00
var self = this;
2015-06-19 19:53:48 +00:00
tmp.forEach(function(card){
card.reset();
2015-06-21 14:50:50 +00:00
for(var event in card._uidEvents) {
self.side.off(event, card.getUidEvents(event));
}
2015-06-19 12:14:37 +00:00
})
2015-06-17 19:18:14 +00:00
this._cards = [];
2015-06-21 14:50:50 +00:00
if(this.getHorn()) {
var card = this.getHorn();
card.reset();
this.setHorn(null);
for(var event in card._uidEvents) {
self.side.off(event, card.getUidEvents(event));
}
tmp.push(card);
}
2015-06-17 19:18:14 +00:00
return tmp;
}
2015-06-14 14:01:25 +00:00
2015-06-26 11:17:28 +00:00
r.removeCard = function(cards) {
var res = [];
var _cards = this.get();
if(!Array.isArray(cards)) {
cards = [cards];
}
var self = this;
cards.forEach(function(card) {
res.push(_cards.splice(self.getPosition(card), 1)[0]);
})
return res;
}
2015-06-21 14:50:50 +00:00
r.getInfo = function() {
var self = this;
return {
cards: self._cards,
horn: self.getHorn(),
score: self._score
}
}
r.getHorn = function() {
if(!this._hasHornField) return null;
return this._hornCard;
}
r.setHorn = function(card) {
if(!this._hasHornField) return null;
this._hornCard = card;
}
2015-06-26 12:40:19 +00:00
r.getHighestCards = function(noHeroes) {
noHeroes = noHeroes || false;
2015-06-26 11:17:28 +00:00
var res = [];
var highest = 0;
this.get().forEach(function(card) {
2015-06-30 16:26:24 +00:00
if(noHeroes && card.hasAbility("hero")) return;
2015-06-26 11:17:28 +00:00
highest = card.getPower() > highest ? card.getPower() : highest;
})
this.get().forEach(function(card) {
2015-06-30 16:26:24 +00:00
if(noHeroes && card.hasAbility("hero")) return;
2015-06-26 11:17:28 +00:00
if(card.getPower() === highest) res.push(card);
});
return res;
}
2015-06-14 14:01:25 +00:00
return Field;
})();
module.exports = Field;