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

69 lines
1.3 KiB
JavaScript
Raw Normal View History

2015-06-14 14:01:25 +00:00
var Field = (function(){
var Field = function(){
if(!(this instanceof Field)){
return (new Field());
}
/**
* constructor here
*/
this._cards = [];
};
var r = Field.prototype;
/**
* methods && properties here
* r.property = null;
* r.getProperty = function() {...}
*/
r._cards = null;
r._score = 0;
2015-06-14 18:50:53 +00:00
r.add = function(card){
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;
}
r.replaceWith = function(oldCard, newCard){
var index = this.getPosition(oldCard);
this._cards[index] = newCard;
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-14 14:01:25 +00:00
return Field;
})();
module.exports = Field;