forked from noxious/client
worked on character selection
This commit is contained in:
parent
45df1ce886
commit
15c9c43acc
629
package-lock.json
generated
629
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -95,4 +95,18 @@
|
|||||||
font-size: 3rem;
|
font-size: 3rem;
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
text-shadow: -1px -1px 0 gray, 1px -1px 0 gray, -1px 1px 0 gray, 1px 1px 0 gray;
|
text-shadow: -1px -1px 0 gray, 1px -1px 0 gray, -1px 1px 0 gray, 1px 1px 0 gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
p, a, li, label {
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
color: #FFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
background-color: transparent;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
@ -14,20 +14,6 @@ body {
|
|||||||
user-select: none; /* Standard syntax */
|
user-select: none; /* Standard syntax */
|
||||||
}
|
}
|
||||||
|
|
||||||
p, a, li, label {
|
|
||||||
font-family: Arial, sans-serif;
|
|
||||||
color: #FFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
background-color: transparent;
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
font-family: GentiumPlus, serif;
|
font-family: GentiumPlus, serif;
|
||||||
}
|
}
|
||||||
|
@ -55,8 +55,8 @@ onBeforeMount(() => {
|
|||||||
|
|
||||||
// Listen for the zone event from the server and load the zone
|
// Listen for the zone event from the server and load the zone
|
||||||
socket.socket?.on('character:zone:load', (data) => {
|
socket.socket?.on('character:zone:load', (data) => {
|
||||||
|
console.log('character:zone:load', data);
|
||||||
zoneStore.loadTiles(data.zone.tiles)
|
zoneStore.loadTiles(data.zone.tiles)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @TODO
|
* @TODO
|
||||||
* bug , when 2nd player joins, the first player is not added to the zone
|
* bug , when 2nd player joins, the first player is not added to the zone
|
||||||
|
@ -1,3 +1,47 @@
|
|||||||
<template>
|
<template>
|
||||||
|
<div>
|
||||||
|
<!-- radio controls with characters that belongs to user in plain html -->
|
||||||
|
<div id="characters-wrapper">
|
||||||
|
<div id="characters">
|
||||||
|
<h1>Select your character</h1>
|
||||||
|
<div>
|
||||||
|
<input type="radio" id="character1" name="character" value="character1">
|
||||||
|
<label for="character1">
|
||||||
|
Weed
|
||||||
|
</label>
|
||||||
|
<input type="radio" id="character2" name="character" value="character2">
|
||||||
|
<label for="character2">
|
||||||
|
Ethereal
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
</template>
|
<button>Play</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { useSocketStore } from '@/stores/socket'
|
||||||
|
|
||||||
|
const socket = useSocketStore();
|
||||||
|
socket.getSocket.emit('characters:get');
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
#characters-wrapper {
|
||||||
|
// vertical and vertical center
|
||||||
|
height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#characters {
|
||||||
|
background: #FFFFFF;
|
||||||
|
padding:30px;
|
||||||
|
color:black;
|
||||||
|
}
|
||||||
|
</style>
|
@ -12,7 +12,7 @@ export const useZoneStore = defineStore('zone', {
|
|||||||
getPlayers: (state) => state.players
|
getPlayers: (state) => state.players
|
||||||
},
|
},
|
||||||
actions: {
|
actions: {
|
||||||
loadTiles(tiles) {
|
loadTiles(tiles: any) {
|
||||||
this.tiles = tiles;
|
this.tiles = tiles;
|
||||||
this.loaded = true;
|
this.loaded = true;
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user