mirror of https://github.com/bra1n/townsquare.git
511 lines
12 KiB
Vue
511 lines
12 KiB
Vue
<template>
|
|
<div
|
|
id="app"
|
|
@keyup="keyup"
|
|
tabindex="-1"
|
|
v-bind:class="{ screenshot: isScreenshot }"
|
|
>
|
|
<TownInfo :players="players" :edition="edition"></TownInfo>
|
|
<TownSquare
|
|
:is-public="isPublic"
|
|
:players="players"
|
|
:roles="roles"
|
|
:zoom="zoom"
|
|
@screenshot="takeScreenshot"
|
|
></TownSquare>
|
|
|
|
<Modal
|
|
class="editions"
|
|
v-show="isEditionModalOpen"
|
|
@close="isEditionModalOpen = false"
|
|
>
|
|
<h3>Select an edition:</h3>
|
|
<ul class="editions">
|
|
<li
|
|
v-for="edition in editions"
|
|
class="edition"
|
|
v-bind:class="['edition-' + edition.id]"
|
|
v-bind:key="edition.id"
|
|
@click="setEdition(edition.id)"
|
|
>
|
|
{{ edition.name }}
|
|
</li>
|
|
</ul>
|
|
</Modal>
|
|
|
|
<RoleSelectionModal
|
|
:players="players"
|
|
:roles="roles"
|
|
:is-open="isRoleModalOpen"
|
|
@close="isRoleModalOpen = false"
|
|
></RoleSelectionModal>
|
|
|
|
<Screenshot
|
|
ref="screenshot"
|
|
@success="onScreenshot(true)"
|
|
@error="onScreenshot(false)"
|
|
></Screenshot>
|
|
|
|
<div class="controls">
|
|
<font-awesome-icon
|
|
icon="camera"
|
|
@click="takeScreenshot()"
|
|
v-bind:class="{ success: isScreenshotSuccess }"
|
|
/>
|
|
<div class="menu" v-bind:class="{ open: isControlOpen }">
|
|
<font-awesome-icon icon="cog" @click="isControlOpen = !isControlOpen" />
|
|
<ul>
|
|
<li @click="togglePublic">Toggle <em>G</em>rimoire</li>
|
|
<li>
|
|
Size
|
|
<font-awesome-icon @click="zoom -= 0.1" icon="search-minus" />
|
|
{{ Math.round(zoom * 100) }}%
|
|
<font-awesome-icon @click="zoom += 0.1" icon="search-plus" />
|
|
</li>
|
|
<li @click="addPlayer" v-if="players.length < 20">
|
|
<em>A</em>dd Player
|
|
</li>
|
|
<li @click="randomizeSeatings" v-if="players.length > 2">
|
|
<em>R</em>andomize Seatings
|
|
</li>
|
|
<li @click="clearPlayers" v-if="players.length">
|
|
Clear Players
|
|
</li>
|
|
<li @click="clearRoles" v-if="players.length">
|
|
Clear Roles
|
|
</li>
|
|
<li @click="showEditionModal" v-if="players.length > 4">
|
|
Select Edition
|
|
</li>
|
|
<li @click="showRoleModal" v-if="players.length > 4">
|
|
Select Roles
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TownSquare from "./components/TownSquare";
|
|
import TownInfo from "./components/TownInfo";
|
|
import Modal from "./components/Modal";
|
|
import RoleSelectionModal from "./components/RoleSelectionModal";
|
|
import rolesJSON from "./roles";
|
|
import editionJSON from "./editions";
|
|
import Screenshot from "./components/Screenshot";
|
|
|
|
export default {
|
|
components: {
|
|
Screenshot,
|
|
TownSquare,
|
|
TownInfo,
|
|
Modal,
|
|
RoleSelectionModal
|
|
},
|
|
data: function() {
|
|
return {
|
|
editions: editionJSON,
|
|
isPublic: true,
|
|
isControlOpen: false,
|
|
isEditionModalOpen: false,
|
|
isRoleModalOpen: false,
|
|
isScreenshotSuccess: false,
|
|
isScreenshot: false,
|
|
players: [],
|
|
roles: this.getRolesByEdition(),
|
|
edition: "tb",
|
|
zoom: 1
|
|
};
|
|
},
|
|
methods: {
|
|
takeScreenshot(dimensions = {}) {
|
|
this.isScreenshotSuccess = false;
|
|
this.isScreenshot = true;
|
|
this.$refs.screenshot.capture(dimensions, this.zoom);
|
|
},
|
|
onScreenshot(success = false) {
|
|
this.isScreenshotSuccess = success;
|
|
this.isScreenshot = false;
|
|
},
|
|
togglePublic() {
|
|
this.isPublic = !this.isPublic;
|
|
this.isControlOpen = !this.isPublic;
|
|
},
|
|
addPlayer() {
|
|
const name = prompt("Player name");
|
|
if (name) {
|
|
this.players.push({
|
|
name,
|
|
role: {},
|
|
reminders: []
|
|
});
|
|
}
|
|
},
|
|
randomizeSeatings() {
|
|
this.isPublic = false;
|
|
this.isControlOpen = false;
|
|
if (confirm("Are you sure you want to randomize seatings?")) {
|
|
this.players = this.players
|
|
.map(a => [Math.random(), a])
|
|
.sort((a, b) => a[0] - b[0])
|
|
.map(a => a[1]);
|
|
}
|
|
},
|
|
clearPlayers() {
|
|
this.isControlOpen = false;
|
|
if (confirm("Are you sure you want to remove all players?")) {
|
|
this.players = [];
|
|
}
|
|
},
|
|
clearRoles() {
|
|
this.isControlOpen = false;
|
|
if (confirm("Are you sure you want to remove all player roles?")) {
|
|
this.players.forEach(player => {
|
|
player.role = {};
|
|
player.reminders = [];
|
|
});
|
|
}
|
|
},
|
|
getRolesByEdition(edition = "tb") {
|
|
const selectedEdition = editionJSON.find(({ id }) => id === edition);
|
|
return new Map(
|
|
rolesJSON
|
|
.filter(
|
|
r => r.edition === edition || selectedEdition.roles.includes(r.id)
|
|
)
|
|
.sort((a, b) => b.team.localeCompare(a.team))
|
|
.map(role => [role.id, role])
|
|
);
|
|
},
|
|
showEditionModal() {
|
|
this.isEditionModalOpen = true;
|
|
this.isPublic = false;
|
|
this.isControlOpen = false;
|
|
},
|
|
setEdition(edition) {
|
|
this.edition = edition;
|
|
this.isEditionModalOpen = false;
|
|
},
|
|
showRoleModal() {
|
|
this.isRoleModalOpen = true;
|
|
this.isPublic = false;
|
|
this.isControlOpen = false;
|
|
},
|
|
keyup({ key }) {
|
|
switch (key) {
|
|
case "g":
|
|
this.togglePublic();
|
|
break;
|
|
case "a":
|
|
this.addPlayer();
|
|
break;
|
|
case "r":
|
|
this.randomizeSeatings();
|
|
break;
|
|
}
|
|
}
|
|
},
|
|
mounted() {
|
|
if (localStorage.isPublic !== undefined) {
|
|
this.isPublic = JSON.parse(localStorage.isPublic);
|
|
}
|
|
if (localStorage.edition) {
|
|
this.edition = localStorage.edition;
|
|
this.roles = this.getRolesByEdition(this.edition);
|
|
}
|
|
if (localStorage.players) {
|
|
this.players = JSON.parse(localStorage.players).map(player => ({
|
|
...player,
|
|
role: this.roles.get(player.role) || {}
|
|
}));
|
|
}
|
|
},
|
|
watch: {
|
|
players: {
|
|
handler(newPlayers) {
|
|
const firstNight = [0];
|
|
const otherNight = [0];
|
|
newPlayers.forEach(({ role }) => {
|
|
if (role.firstNight && !firstNight.includes(role.firstNight)) {
|
|
firstNight.push(role.firstNight);
|
|
}
|
|
if (role.otherNight && !otherNight.includes(role.otherNight)) {
|
|
otherNight.push(role.otherNight);
|
|
}
|
|
});
|
|
firstNight.sort((a, b) => a - b);
|
|
otherNight.sort((a, b) => a - b);
|
|
newPlayers.forEach(player => {
|
|
player.firstNight = Math.max(
|
|
firstNight.indexOf(player.role.firstNight),
|
|
0
|
|
);
|
|
player.otherNight = Math.max(
|
|
otherNight.indexOf(player.role.otherNight),
|
|
0
|
|
);
|
|
});
|
|
localStorage.players = JSON.stringify(
|
|
newPlayers.map(player => ({
|
|
...player,
|
|
role: player.role.id || {}
|
|
}))
|
|
);
|
|
},
|
|
deep: true
|
|
},
|
|
edition(newEdition) {
|
|
localStorage.edition = newEdition;
|
|
this.roles = this.getRolesByEdition(newEdition);
|
|
},
|
|
isPublic(newIsPublic) {
|
|
localStorage.isPublic = JSON.stringify(newIsPublic);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import "vars";
|
|
|
|
@font-face {
|
|
font-family: "Papyrus";
|
|
src: url("assets/fonts/papyrus.eot"); /* IE9*/
|
|
src: url("assets/fonts/papyrus.eot?#iefix") format("embedded-opentype"),
|
|
/* IE6-IE8 */ url("assets/fonts/papyrus.woff2") format("woff2"),
|
|
/* chrome firefox */ url("assets/fonts/papyrus.woff") format("woff"),
|
|
/* chrome firefox */ url("assets/fonts/papyrus.ttf") format("truetype"),
|
|
/* chrome firefox opera Safari, Android, iOS 4.2+*/
|
|
url("assets/fonts/papyrus.svg#PapyrusW01") format("svg"); /* iOS 4.1- */
|
|
}
|
|
|
|
html,
|
|
body {
|
|
font-size: 1.2em;
|
|
line-height: 1.4;
|
|
background: url("assets/background.jpg") center center;
|
|
background-size: cover;
|
|
color: white;
|
|
height: 100%;
|
|
font-family: "Roboto Condensed", sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
padding: 0;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5 {
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#app {
|
|
height: 100%;
|
|
}
|
|
|
|
// success animation
|
|
@keyframes greenToWhite {
|
|
from {
|
|
color: green;
|
|
}
|
|
to {
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
// Controls
|
|
.controls {
|
|
position: absolute;
|
|
right: 3px;
|
|
top: 3px;
|
|
text-align: right;
|
|
|
|
#app.screenshot & {
|
|
display: none;
|
|
}
|
|
|
|
svg {
|
|
cursor: pointer;
|
|
&.success {
|
|
animation: greenToWhite 1s normal forwards;
|
|
animation-iteration-count: 1;
|
|
}
|
|
}
|
|
|
|
.fa-camera {
|
|
position: absolute;
|
|
right: 50px;
|
|
top: 10px;
|
|
z-index: 5;
|
|
}
|
|
|
|
.menu {
|
|
transform-origin: 91% 5.5%;
|
|
transition: transform 500ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
|
|
transform: rotate(-90deg);
|
|
|
|
&.open {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
> svg {
|
|
background: rgba(0, 0, 0, 0.5);
|
|
border: 3px solid black;
|
|
width: 40px;
|
|
height: 50px;
|
|
margin-bottom: -8px;
|
|
border-bottom: 0;
|
|
border-radius: 10px 10px 0 0;
|
|
padding: 5px 5px 15px;
|
|
}
|
|
|
|
ul {
|
|
display: flex;
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
box-shadow: 0 0 10px black;
|
|
border: 3px solid black;
|
|
border-radius: 10px 0 10px 10px;
|
|
|
|
li {
|
|
padding: 5px 10px;
|
|
color: white;
|
|
text-align: center;
|
|
background: rgba(0, 0, 0, 0.7);
|
|
margin-bottom: 1px;
|
|
cursor: pointer;
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: red;
|
|
}
|
|
|
|
em {
|
|
text-decoration: underline;
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Editions
|
|
@each $img, $skipIcons in $editions {
|
|
.edition-#{$img} {
|
|
background-image: url("./assets/editions/#{$img}.png");
|
|
}
|
|
@if $skipIcons != true {
|
|
.edition-#{$img}.townsfolk {
|
|
background-image: url("./assets/editions/#{$img}-townsfolk.png");
|
|
}
|
|
.edition-#{$img}.outsider {
|
|
background-image: url("./assets/editions/#{$img}-outsider.png");
|
|
}
|
|
.edition-#{$img}.minion {
|
|
background-image: url("./assets/editions/#{$img}-minion.png");
|
|
}
|
|
.edition-#{$img}.demon {
|
|
background-image: url("./assets/editions/#{$img}-demon.png");
|
|
}
|
|
}
|
|
}
|
|
|
|
ul.editions .edition {
|
|
text-align: center;
|
|
padding-top: 100px;
|
|
background-position: center center;
|
|
background-size: 100% auto;
|
|
background-repeat: no-repeat;
|
|
width: 200px;
|
|
margin: 5px;
|
|
font-size: 120%;
|
|
font-weight: bold;
|
|
text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
|
|
1px 1px 0 #000, 0 0 5px rgba(0, 0, 0, 0.75);
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: red;
|
|
}
|
|
}
|
|
|
|
// Buttons
|
|
.button-group {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
align-content: center;
|
|
.button {
|
|
margin: 5px 0;
|
|
border-radius: 0;
|
|
&:first-child {
|
|
border-top-left-radius: 15px;
|
|
border-bottom-left-radius: 15px;
|
|
}
|
|
&:last-child {
|
|
border-top-right-radius: 15px;
|
|
border-bottom-right-radius: 15px;
|
|
}
|
|
}
|
|
}
|
|
.button {
|
|
padding: 0;
|
|
border: solid 0.125em transparent;
|
|
border-radius: 15px;
|
|
box-shadow: inset 0 1px 1px #9c9c9c, 0 0 10px #000;
|
|
background: radial-gradient(
|
|
at 0 -15%,
|
|
rgba(#fff, 0.07) 70%,
|
|
rgba(#fff, 0) 71%
|
|
)
|
|
0 0/ 80% 90% no-repeat content-box,
|
|
linear-gradient(#4e4e4e, #040404) content-box,
|
|
linear-gradient(#292929, #010101) border-box;
|
|
color: white;
|
|
font-weight: bold;
|
|
text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
|
|
line-height: 40px;
|
|
margin: 5px auto;
|
|
font-size: 1em;
|
|
cursor: pointer;
|
|
transition: all 200ms;
|
|
&:hover {
|
|
color: red;
|
|
}
|
|
&.disabled {
|
|
color: gray;
|
|
cursor: default;
|
|
}
|
|
&:before,
|
|
&:after {
|
|
content: " ";
|
|
display: inline-block;
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
}
|
|
</style>
|