ensl_gathers/lib/gather/gatherer.js
2015-07-27 12:55:36 +01:00

36 lines
No EOL
696 B
JavaScript

"use strict";
/*
* Implements Gatherer
*
* Stores necessary information including:
* - user data
* - voting preferences
* - leader status
* - Team: "lobby" "alien" "marine"
*/
var User = require("../user/user");
function Gatherer (user) {
this.leaderVote = null;
this.mapVote = null;
this.serverVote = null;
this.confirm = false;
this.id = user.id;
this.user = user;
this.leader = false;
this.team = "lobby";
}
Gatherer.prototype.voteForLeader = function (candidate) {
if (candidate === null) {
return this.leaderVote = null;
}
if (typeof candidate === 'number') {
return this.leaderVote = candidate;
}
this.leaderVote = candidate.id;
};
module.exports = Gatherer;