= session.lockedVote - 1;
},
voters: function () {
- const nomination = this.session.nomination[1];
+ const nomination = this.nominee
+ ? this.session.nomination[1]
+ : this.session.nomination[0];
const voters = Array(this.players.length)
.fill("")
.map((x, index) =>
diff --git a/src/components/modals/SpecialVoteModal.vue b/src/components/modals/SpecialVoteModal.vue
new file mode 100644
index 0000000..3b7c801
--- /dev/null
+++ b/src/components/modals/SpecialVoteModal.vue
@@ -0,0 +1,128 @@
+
+
+ {{ locale.modal.specialvote.title }}
+
+
+
+
+
+
+
diff --git a/src/components/modals/VoteHistoryModal.vue b/src/components/modals/VoteHistoryModal.vue
index aaf299c..7be939c 100644
--- a/src/components/modals/VoteHistoryModal.vue
+++ b/src/components/modals/VoteHistoryModal.vue
@@ -60,7 +60,7 @@
{{ vote.votes == null ? "?" : vote.votes.length }}
-
+ |
{{ vote.majority }}
|
+
|
{{
vote.votes == null
diff --git a/src/store/index.js b/src/store/index.js
index 808a10c..7b66ae6 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -128,6 +128,7 @@ export default new Vuex.Store({
role: false,
roles: false,
voteHistory: false,
+ specialVote: false,
},
edition: editionJSONbyId.get("tb"),
editions: editionJSON,
diff --git a/src/store/locale/en/ui.json b/src/store/locale/en/ui.json
index 7cf5f9d..112f283 100644
--- a/src/store/locale/en/ui.json
+++ b/src/store/locale/en/ui.json
@@ -151,6 +151,7 @@
"removePlayer": "Remove",
"emptySeat": "Empty seat",
"nomination": "Nomination",
+ "specialVote": "Special vote",
"claimSeat": "Claim seat",
"vacateSeat": "Vacate seat",
"occupiedSeat": "Seat occupied"
@@ -257,6 +258,17 @@
"execution": "Execution",
"exile": "Exile",
"hiddenVote": "The result is hidden because of the Organ Grinder"
+ },
+ "specialvote": {
+ "title": "Choose a vote type:",
+ "bishop": "Nomination by the Story Teller",
+ "atheist": "Nomination of the Story Teller",
+ "st": "the Story Teller",
+ "cultleader": "Cult creation",
+ "cultleaderMessages": ["wants to create a cult","Do you want to join $player's cult?","Cult"],
+ "custom": "Custom vote",
+ "complete": "Complete: ",
+ "customMessages": ["","The debate is open","(Custom)"]
}
}
}
diff --git a/src/store/locale/fr/ui.json b/src/store/locale/fr/ui.json
index efde34f..70b2af9 100644
--- a/src/store/locale/fr/ui.json
+++ b/src/store/locale/fr/ui.json
@@ -151,6 +151,7 @@
"removePlayer": "Retirer le joueur",
"emptySeat": "Vider le siège",
"nomination": "Accusation",
+ "specialVote": "Vote spécial",
"claimSeat": "S'asseoir ici",
"vacateSeat": "Libérer le Siège",
"occupiedSeat": "Siège Occupé"
@@ -257,6 +258,17 @@
"execution": "Exécution",
"exile": "Exil",
"hiddenVote": "Résultat caché par l'Organiste"
+ },
+ "specialvote": {
+ "title": "Sélectionnez un type de vote :",
+ "bishop": "Accusation par le Narrateur",
+ "atheist": "Accusation du Narrateur",
+ "st": "le Narrateur",
+ "cultleader": "Création de secte",
+ "cultleaderMessages": ["veut créer une secte","Voulez-vous rejoindre la secte créée par $player ?","Secte"],
+ "custom": "Vote personnalisé",
+ "complete": "Complétez : ",
+ "customMessages": ["","Le débat est ouvert","(Personnalisé)"]
}
}
}
diff --git a/src/store/modules/session.js b/src/store/modules/session.js
index 574f755..91a7f5d 100644
--- a/src/store/modules/session.js
+++ b/src/store/modules/session.js
@@ -28,6 +28,7 @@ const state = () => ({
isVoteInProgress: false,
voteHistory: [],
markedPlayer: -1,
+ playerForSpecialVote: -1,
isVoteHistoryAllowed: true,
isRolesDistributed: false,
});
@@ -50,6 +51,7 @@ const mutations = {
setVotingSpeed: set("votingSpeed"),
setVoteInProgress: set("isVoteInProgress"),
setMarkedPlayer: set("markedPlayer"),
+ setPlayerForSpecialVote: set("playerForSpecialVote"),
setNomination: set("nomination"),
setVoteHistoryAllowed: set("isVoteHistoryAllowed"),
claimSeat: set("claimedSeat"),
@@ -80,16 +82,29 @@ const mutations = {
addHistory(state, players) {
if (!state.isVoteHistoryAllowed && state.isSpectator) return;
if (!state.nomination || state.lockedVote <= players.length) return;
- const isExile = players[state.nomination[1]].role.team === "traveler";
+ const isExile =
+ typeof state.nomination[1] == "number" &&
+ players[state.nomination[1]].role.team === "traveler";
const organGrinder = gameInfo.state.grimoire.isOrganVoteMode && !isExile;
state.voteHistory.push({
timestamp: new Date(),
- nominator: players[state.nomination[0]].name,
- nominee: players[state.nomination[1]].name,
- type: isExile
- ? gameInfo.state.locale.modal.voteHistory.exile
- : gameInfo.state.locale.modal.voteHistory.execution +
- (organGrinder && !state.isSpectator ? "*" : ""),
+ nominator:
+ typeof state.nomination[0] == "number"
+ ? players[state.nomination[0]].name
+ : state.nomination[0],
+ nominee:
+ typeof state.nomination[1] == "number"
+ ? players[state.nomination[1]].name
+ : typeof state.nomination[1] == "string"
+ ? state.nomination[1]
+ : "",
+ type:
+ typeof state.nomination[1] !== "object"
+ ? isExile
+ ? gameInfo.state.locale.modal.voteHistory.exile
+ : gameInfo.state.locale.modal.voteHistory.execution +
+ (organGrinder && !state.isSpectator ? "*" : "")
+ : state.nomination[1][2],
majority: Math.ceil(
players.filter((player) => !player.isDead || isExile).length / 2,
),
diff --git a/src/store/socket.js b/src/store/socket.js
index 9950420..7cb4d3b 100644
--- a/src/store/socket.js
+++ b/src/store/socket.js
@@ -699,7 +699,8 @@ class LiveSession {
const players = this._store.state.players.players;
if (
!nomination ||
- (players.length > nomination[0] && players.length > nomination[1])
+ ((typeof nomination[0] !== "number" || players.length > nomination[0]) &&
+ (typeof nomination[1] !== "number" || players.length > nomination[1]))
) {
this.setVotingSpeed(this._store.state.session.votingSpeed);
this._send("nomination", nomination);
@@ -815,7 +816,13 @@ class LiveSession {
const { session, players } = this._store.state;
const playerCount = players.players.length;
const indexAdjusted =
- (index - 1 + playerCount - session.nomination[1]) % playerCount;
+ (index -
+ 1 +
+ playerCount -
+ (typeof session.nomination[1] == "number"
+ ? session.nomination[1]
+ : session.nomination[0])) %
+ playerCount;
if (fromST || indexAdjusted >= session.lockedVote - 1) {
this._store.commit("session/vote", [index, vote]);
}
@@ -828,7 +835,11 @@ class LiveSession {
if (this._isSpectator) return;
const { lockedVote, votes, nomination } = this._store.state.session;
const { players } = this._store.state.players;
- const index = (nomination[1] + lockedVote - 1) % players.length;
+ const index =
+ ((typeof nomination[1] == "number" ? nomination[1] : nomination[0]) +
+ lockedVote -
+ 1) %
+ players.length;
this._send("lock", [this._store.state.session.lockedVote, votes[index]]);
}
@@ -844,7 +855,11 @@ class LiveSession {
if (lock > 1) {
const { lockedVote, nomination } = this._store.state.session;
const { players } = this._store.state.players;
- const index = (nomination[1] + lockedVote - 1) % players.length;
+ const index =
+ ((typeof nomination[1] == "number" ? nomination[1] : nomination[0]) +
+ lockedVote -
+ 1) %
+ players.length;
if (this._store.state.session.votes[index] !== vote) {
this._store.commit("session/vote", [index, vote]);
}
|