mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-23 21:02:15 +00:00
63 lines
No EOL
1.5 KiB
JavaScript
63 lines
No EOL
1.5 KiB
JavaScript
"use strict";
|
|
|
|
/*
|
|
* Implements Gatherer
|
|
*
|
|
* Stores necessary information including:
|
|
* - user data
|
|
* - voting preferences
|
|
* - leader status
|
|
* - Team: "lobby" "alien" "marine"
|
|
*/
|
|
|
|
var User = require("../user/user");
|
|
|
|
var MAX_MAP_VOTES = 2;
|
|
var MAX_SERVER_VOTES = 2;
|
|
|
|
function Gatherer (user) {
|
|
this.leaderVote = null;
|
|
this.mapVote = [];
|
|
this.serverVote = [];
|
|
this.confirm = false;
|
|
this.id = user.id;
|
|
this.user = user;
|
|
this.leader = false;
|
|
this.team = "lobby";
|
|
this.regatherVote = false;
|
|
};
|
|
|
|
Gatherer.prototype.voteForMap = function (mapId) {
|
|
if (this.mapVote.some(votedId => votedId === mapId)) return;
|
|
this.mapVote.push(mapId);
|
|
this.mapVote = this.mapVote.slice(this.mapVote.length - MAX_MAP_VOTES,
|
|
this.mapVote.length);
|
|
};
|
|
|
|
Gatherer.prototype.voteForServer = function (serverId) {
|
|
if (this.serverVote.some(votedId => votedId === serverId)) return;
|
|
this.serverVote.push(serverId);
|
|
this.serverVote = this.serverVote.slice(this.serverVote.length -
|
|
MAX_SERVER_VOTES, this.serverVote.length);
|
|
};
|
|
|
|
Gatherer.prototype.voteForLeader = function (candidate) {
|
|
if (candidate === null) {
|
|
return this.leaderVote = null;
|
|
}
|
|
if (typeof candidate === 'number') {
|
|
return this.leaderVote = candidate;
|
|
}
|
|
this.leaderVote = candidate.id;
|
|
};
|
|
|
|
Gatherer.prototype.voteRegather = function (vote) {
|
|
if (vote !== undefined && typeof vote === 'boolean') {
|
|
return this.regatherVote = vote;
|
|
} else {
|
|
this.regatherVote = true;
|
|
}
|
|
return this.regatherVote;
|
|
};
|
|
|
|
module.exports = Gatherer; |