townsquare/src/App.vue

641 lines
15 KiB
Vue
Raw Normal View History

2020-04-01 20:57:14 +00:00
<template>
2020-04-22 19:21:54 +00:00
<div
id="app"
@keyup="keyup"
tabindex="-1"
v-bind:class="{ screenshot: isScreenshot }"
v-bind:style="{ backgroundImage: background ? `url('${background}')` : '' }"
2020-04-22 19:21:54 +00:00
>
2020-04-28 19:47:28 +00:00
<div class="intro" v-if="!players.length">
2020-04-28 20:03:28 +00:00
<img src="static/apple-icon.png" alt="" />
2020-05-01 19:20:15 +00:00
Welcome to the (unofficial)
2020-04-28 19:47:28 +00:00
<b> Virtual Blood on the Clocktower Town Square</b>!<br />
Please add more players through the
<span class="button" @click="isControlOpen = !isControlOpen">
<font-awesome-icon icon="cog" /> Menu
</span>
on the top right or by pressing <b>[A]</b>.<br />
This project is free and open source and can be found on
<a href="https://github.com/bra1n/townsquare" target="_blank">GitHub</a>.
</div>
<TownInfo
:players="players"
:edition="edition"
v-if="players.length"
></TownInfo>
2020-04-05 19:50:06 +00:00
<TownSquare
:is-public="isPublic"
:is-night-order="isNightOrder"
2020-04-05 19:50:06 +00:00
:players="players"
:roles="roles"
2020-04-15 15:30:26 +00:00
:zoom="zoom"
2020-04-19 20:54:25 +00:00
@screenshot="takeScreenshot"
2020-04-05 19:50:06 +00:00
></TownSquare>
2020-04-11 20:55:37 +00:00
<Modal
class="editions"
v-show="isEditionModalOpen"
@close="isEditionModalOpen = false"
>
2020-04-18 19:03:58 +00:00
<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>
2020-04-11 20:55:37 +00:00
<RoleSelectionModal
:players="players"
:roles="roles"
:is-open="isRoleModalOpen"
@close="isRoleModalOpen = false"
></RoleSelectionModal>
2020-04-19 20:54:25 +00:00
<Screenshot
ref="screenshot"
2020-04-22 19:21:54 +00:00
@success="onScreenshot(true)"
@error="onScreenshot(false)"
2020-04-19 20:54:25 +00:00
></Screenshot>
2020-04-01 20:57:14 +00:00
<div class="controls">
2020-04-19 20:54:25 +00:00
<font-awesome-icon
icon="camera"
@click="takeScreenshot()"
v-bind:class="{ success: isScreenshotSuccess }"
/>
2020-04-26 19:38:35 +00:00
<div class="menu" v-bind:class="{ open: isControlOpen }">
<font-awesome-icon icon="cog" @click="isControlOpen = !isControlOpen" />
<ul>
<!-- Grimoire -->
<li class="headline">
<font-awesome-icon icon="book-open" />
Grimoire
</li>
2020-04-28 19:47:28 +00:00
<li @click="togglePublic" v-if="players.length">
<em>[G]</em>
<template v-if="!isPublic">Hide</template>
<template v-if="isPublic">Show</template>
</li>
2020-04-28 19:47:28 +00:00
<li @click="toggleNightOrder" v-if="players.length">
<em
><font-awesome-icon
:icon="['fas', isNightOrder ? 'check-square' : 'square']"
/></em>
Night order
</li>
2020-04-28 19:47:28 +00:00
<li v-if="players.length">
<em>
<font-awesome-icon @click="zoom -= 0.1" icon="search-minus" />
{{ Math.round(zoom * 100) }}%
<font-awesome-icon @click="zoom += 0.1" icon="search-plus" />
</em>
Zoom
</li>
<li @click="setBackground">
Background image
</li>
<!-- Users -->
<li class="headline">
<font-awesome-icon icon="users" />
Players
2020-04-26 19:38:35 +00:00
</li>
<li @click="addPlayer" v-if="players.length < 20">
<em>[A]</em> Add
2020-04-26 19:38:35 +00:00
</li>
<li @click="randomizeSeatings" v-if="players.length > 2">
<em>[R]</em> Randomize
2020-04-26 19:38:35 +00:00
</li>
<li @click="clearPlayers" v-if="players.length">
Remove all
2020-04-26 19:38:35 +00:00
</li>
<!-- Characters -->
<li class="headline">
<font-awesome-icon icon="theater-masks" />
Characters
2020-04-26 19:38:35 +00:00
</li>
<li @click="showEditionModal">
<em>[E]</em>
2020-04-26 19:38:35 +00:00
Select Edition
</li>
<li @click="showRoleModal" v-if="players.length > 4">
<em>[C]</em>
Choose & Assign
</li>
<li @click="clearRoles" v-if="players.length">
Remove all
2020-04-26 19:38:35 +00:00
</li>
</ul>
</div>
2020-04-01 20:57:14 +00:00
</div>
</div>
</template>
<script>
import TownSquare from "./components/TownSquare";
import TownInfo from "./components/TownInfo";
import Modal from "./components/Modal";
2020-04-11 20:55:37 +00:00
import RoleSelectionModal from "./components/RoleSelectionModal";
2020-04-05 19:50:06 +00:00
import rolesJSON from "./roles";
2020-04-11 20:55:37 +00:00
import editionJSON from "./editions";
2020-04-19 20:54:25 +00:00
import Screenshot from "./components/Screenshot";
2020-04-01 20:57:14 +00:00
2020-04-05 17:50:33 +00:00
export default {
components: {
2020-04-19 20:54:25 +00:00
Screenshot,
TownSquare,
TownInfo,
2020-04-11 20:55:37 +00:00
Modal,
RoleSelectionModal
},
data: function() {
return {
background: "",
2020-04-11 20:55:37 +00:00
editions: editionJSON,
isNightOrder: true,
isPublic: true,
isControlOpen: false,
2020-04-11 20:55:37 +00:00
isEditionModalOpen: false,
isRoleModalOpen: false,
2020-04-19 20:54:25 +00:00
isScreenshotSuccess: false,
2020-04-22 19:21:54 +00:00
isScreenshot: false,
players: [],
roles: this.getRolesByEdition(),
2020-04-15 15:30:26 +00:00
edition: "tb",
zoom: 1
};
2020-04-05 19:50:06 +00:00
},
2020-04-05 17:50:33 +00:00
methods: {
2020-04-19 20:54:25 +00:00
takeScreenshot(dimensions = {}) {
this.isScreenshotSuccess = false;
2020-04-22 19:21:54 +00:00
this.isScreenshot = true;
2020-04-25 17:25:32 +00:00
this.$refs.screenshot.capture(dimensions, this.zoom);
2020-04-19 20:54:25 +00:00
},
2020-04-22 19:21:54 +00:00
onScreenshot(success = false) {
this.isScreenshotSuccess = success;
this.isScreenshot = false;
},
2020-04-05 17:50:33 +00:00
togglePublic() {
this.isPublic = !this.isPublic;
2020-04-26 19:38:35 +00:00
this.isControlOpen = !this.isPublic;
2020-04-05 19:50:06 +00:00
},
toggleNightOrder() {
this.isNightOrder = !this.isNightOrder;
},
setBackground() {
this.background = prompt("Enter custom background URL");
},
2020-04-05 19:50:06 +00:00
addPlayer() {
const name = prompt("Player name");
if (name) {
this.players.push({
name,
role: {},
reminders: []
});
}
},
randomizeSeatings() {
2020-04-11 21:02:04 +00:00
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]);
}
2020-04-09 20:14:48 +00:00
},
2020-04-10 08:59:32 +00:00
clearPlayers() {
2020-04-11 21:02:04 +00:00
this.isControlOpen = false;
2020-04-11 20:55:37 +00:00
if (confirm("Are you sure you want to remove all players?")) {
this.players = [];
}
2020-04-10 08:59:32 +00:00
},
2020-04-11 20:55:37 +00:00
clearRoles() {
2020-04-11 21:02:04 +00:00
this.isControlOpen = false;
2020-04-11 20:55:37 +00:00
if (confirm("Are you sure you want to remove all player roles?")) {
this.players.forEach(player => {
player.role = {};
player.hasDied = false;
2020-04-11 20:55:37 +00:00
player.reminders = [];
});
2020-04-09 20:14:48 +00:00
}
},
getRolesByEdition(edition = "tb") {
2020-04-11 20:55:37 +00:00
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])
);
},
2020-04-11 21:02:04 +00:00
showEditionModal() {
this.isEditionModalOpen = true;
this.isPublic = false;
this.isControlOpen = false;
},
setEdition(edition) {
this.edition = edition;
2020-04-11 20:55:37 +00:00
this.isEditionModalOpen = false;
},
2020-04-11 21:02:04 +00:00
showRoleModal() {
this.isRoleModalOpen = true;
this.isPublic = false;
this.isControlOpen = false;
},
2020-04-11 20:55:37 +00:00
keyup({ key }) {
switch (key) {
case "g":
this.togglePublic();
break;
case "a":
this.addPlayer();
break;
case "r":
this.randomizeSeatings();
break;
case "e":
this.showEditionModal();
break;
case "c":
this.showRoleModal();
break;
2020-04-11 20:55:37 +00:00
}
2020-04-09 20:14:48 +00:00
}
},
mounted() {
if (localStorage.background !== undefined) {
this.background = JSON.parse(localStorage.background);
}
if (localStorage.isPublic !== undefined) {
this.isPublic = JSON.parse(localStorage.isPublic);
}
2020-04-10 09:37:06 +00:00
if (localStorage.edition) {
this.edition = localStorage.edition;
this.roles = this.getRolesByEdition(this.edition);
2020-04-10 09:37:06 +00:00
}
2020-04-09 20:14:48 +00:00
if (localStorage.players) {
2020-04-10 08:59:32 +00:00
this.players = JSON.parse(localStorage.players).map(player => ({
...player,
2020-04-10 09:37:06 +00:00
role: this.roles.get(player.role) || {}
2020-04-10 08:59:32 +00:00
}));
}
2020-04-09 20:14:48 +00:00
},
watch: {
players: {
handler(newPlayers) {
2020-04-22 21:07:25 +00:00
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);
}
});
2020-04-25 20:19:47 +00:00
firstNight.sort((a, b) => a - b);
otherNight.sort((a, b) => a - b);
2020-04-22 21:07:25 +00:00
newPlayers.forEach(player => {
2020-04-22 21:13:59 +00:00
player.firstNight = Math.max(
firstNight.indexOf(player.role.firstNight),
0
);
player.otherNight = Math.max(
otherNight.indexOf(player.role.otherNight),
0
);
2020-04-22 21:07:25 +00:00
});
2020-04-10 08:59:32 +00:00
localStorage.players = JSON.stringify(
newPlayers.map(player => ({
...player,
role: player.role.id || {}
}))
);
2020-04-09 20:14:48 +00:00
},
deep: true
2020-04-10 08:59:32 +00:00
},
2020-04-10 09:37:06 +00:00
edition(newEdition) {
localStorage.edition = newEdition;
this.roles = this.getRolesByEdition(newEdition);
},
isPublic(newIsPublic) {
localStorage.isPublic = JSON.stringify(newIsPublic);
},
background(newBackground) {
if (newBackground) {
localStorage.background = JSON.stringify(newBackground);
} else {
localStorage.removeItem("background");
}
2020-04-01 20:57:14 +00:00
}
}
2020-04-05 17:50:33 +00:00
};
2020-04-01 20:57:14 +00:00
</script>
<style lang="scss">
@import "vars";
2020-04-05 17:50:33 +00:00
@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- */
}
2020-04-01 20:57:14 +00:00
2020-04-05 17:50:33 +00:00
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;
2020-04-09 20:14:48 +00:00
overflow: hidden;
2020-04-05 17:50:33 +00:00
}
2020-04-01 20:57:14 +00:00
2020-04-05 19:50:06 +00:00
* {
box-sizing: border-box;
position: relative;
}
2020-04-28 19:47:28 +00:00
a {
color: $townsfolk;
&:hover {
color: $demon;
}
}
h1,
h2,
h3,
h4,
h5 {
2020-04-18 19:03:58 +00:00
margin: 0;
text-align: center;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
2020-04-05 17:50:33 +00:00
#app {
height: 100%;
background-position: center center;
background-size: cover;
2020-04-28 19:47:28 +00:00
display: flex;
align-items: center;
align-content: center;
justify-content: center;
2020-04-05 17:50:33 +00:00
}
2020-04-01 20:57:14 +00:00
2020-04-19 20:54:25 +00:00
// success animation
@keyframes greenToWhite {
from {
color: green;
}
to {
color: white;
}
}
2020-04-28 19:47:28 +00:00
// Intro
.intro {
text-align: center;
width: 50%;
font-size: 120%;
position: absolute;
padding: 10px;
background: rgba(0, 0, 0, 0.5);
border: 3px solid black;
border-radius: 10px;
z-index: 3;
img {
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -96px;
margin-bottom: 20px;
border-radius: 50%;
box-shadow: 0 0 10px black;
border: 3px solid black;
}
}
2020-04-05 17:50:33 +00:00
// Controls
.controls {
position: absolute;
2020-04-26 19:38:35 +00:00
right: 3px;
top: 3px;
text-align: right;
2020-04-26 20:36:39 +00:00
#app.screenshot & {
display: none;
}
svg {
cursor: pointer;
filter: drop-shadow(0 0 5px rgba(0, 0, 0, 1));
2020-04-19 20:54:25 +00:00
&.success {
animation: greenToWhite 1s normal forwards;
animation-iteration-count: 1;
}
}
2020-04-26 19:38:35 +00:00
.fa-camera {
position: absolute;
right: 50px;
top: 10px;
2020-04-26 20:36:39 +00:00
z-index: 5;
2020-04-26 19:38:35 +00:00
}
.menu {
2020-04-28 19:47:28 +00:00
width: 210px;
transform-origin: 190px 22px;
2020-04-26 19:38:35 +00:00
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: 2px 10px;
2020-04-26 19:38:35 +00:00
color: white;
text-align: left;
2020-04-26 19:38:35 +00:00
background: rgba(0, 0, 0, 0.7);
&:last-child {
margin-bottom: 0;
}
&:not(.headline):hover {
cursor: pointer;
color: red;
2020-04-26 19:38:35 +00:00
}
em {
float: right;
2020-04-26 19:38:35 +00:00
font-style: normal;
margin-left: 10px;
font-size: 80%;
line-height: 31px;
2020-04-26 19:38:35 +00:00
}
2020-04-09 20:14:48 +00:00
}
.headline {
padding: 5px 10px;
text-align: center;
font-weight: bold;
background: linear-gradient(
to right,
$demon 0%,
rgba(0, 0, 0, 0.5) 20%,
rgba(0, 0, 0, 0.5) 80%,
$townsfolk 100%
);
}
2020-04-05 19:50:06 +00:00
}
}
}
// 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;
2020-04-18 19:14:06 +00:00
&: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;
}
}
2020-04-01 20:57:14 +00:00
</style>