Sharkey/src/client/app/common/views/components/othello.room.vue

298 lines
8.1 KiB
Vue
Raw Normal View History

2018-03-08 10:57:57 +02:00
<template>
<div class="root">
<header><b>{{ game.user1.name }}</b> vs <b>{{ game.user2.name }}</b></header>
2018-03-11 00:07:17 +02:00
<div>
<p>ゲームの設定</p>
<el-card class="map">
<div slot="header">
<el-select :class="$style.mapSelect" v-model="mapName" placeholder="マップを選択" @change="onMapChange">
<el-option label="ランダム" :value="null"/>
<el-option-group v-for="c in mapCategories" :key="c" :label="c">
<el-option v-for="m in maps" v-if="m.category == c" :key="m.name" :label="m.name" :value="m.name">
<span style="float: left">{{ m.name }}</span>
<span style="float: right; color: #8492a6; font-size: 13px" v-if="m.author">(by <i>{{ m.author }}</i>)</span>
</el-option>
</el-option-group>
</el-select>
</div>
<div :class="$style.board" v-if="game.settings.map != null" :style="{ 'grid-template-rows': `repeat(${ game.settings.map.length }, 1fr)`, 'grid-template-columns': `repeat(${ game.settings.map[0].length }, 1fr)` }">
<div v-for="(x, i) in game.settings.map.join('')"
2018-03-11 16:50:17 +02:00
:data-none="x == ' '"
2018-03-11 00:07:17 +02:00
@click="onPixelClick(i, x)"
>
<template v-if="x == 'b'">%fa:circle%</template>
<template v-if="x == 'w'">%fa:circle R%</template>
</div>
</div>
</el-card>
<el-card class="bw">
<div slot="header">
<span>先手/後手</span>
</div>
2018-03-10 05:48:41 +02:00
<el-radio v-model="game.settings.bw" label="random" @change="updateSettings">ランダム</el-radio>
<el-radio v-model="game.settings.bw" :label="1" @change="updateSettings">{{ game.user1.name }}が黒</el-radio>
<el-radio v-model="game.settings.bw" :label="2" @change="updateSettings">{{ game.user2.name }}が黒</el-radio>
2018-03-11 00:07:17 +02:00
</el-card>
<el-card class="rules">
<div slot="header">
<span>ルール</span>
</div>
2018-03-29 08:48:47 +03:00
<mk-switch v-model="game.settings.isLlotheo" @change="updateSettings" text="石の少ない方が勝ち(ロセオ)"/>
<mk-switch v-model="game.settings.loopedBoard" @change="updateSettings" text="ループマップ"/>
<mk-switch v-model="game.settings.canPutEverywhere" @change="updateSettings" text="どこでも置けるモード"/>
2018-03-11 00:07:17 +02:00
</el-card>
<el-card class="bot-form" v-if="form">
<div slot="header">
<span>Botの設定</span>
</div>
<el-alert v-for="message in messages"
:title="message.text"
:type="message.type"
:key="message.id"
/>
<template v-for="item in form">
<mk-switch v-if="item.type == 'button'" v-model="item.value" :key="item.id" :text="item.label" @change="onChangeForm($event, item)">{{ item.desc || '' }}</mk-switch>
<el-card v-if="item.type == 'radio'" :key="item.id">
<div slot="header">
<span>{{ item.label }}</span>
</div>
<el-radio v-for="(r, i) in item.items" :key="item.id + ':' + i" v-model="item.value" :label="r.value" @change="onChangeForm($event, item)">{{ r.label }}</el-radio>
</el-card>
<el-card v-if="item.type == 'textbox'" :key="item.id">
<div slot="header">
<span>{{ item.label }}</span>
</div>
<el-input v-model="item.value" @change="onChangeForm($event, item)"/>
</el-card>
</template>
</el-card>
2018-03-08 10:57:57 +02:00
</div>
2018-03-08 15:11:08 +02:00
<footer>
<p class="status">
<template v-if="isAccepted && isOpAccepted">ゲームは数秒後に開始されます<mk-ellipsis/></template>
<template v-if="isAccepted && !isOpAccepted">相手の準備が完了するのを待っています<mk-ellipsis/></template>
<template v-if="!isAccepted && isOpAccepted">あなたの準備が完了するのを待っています</template>
<template v-if="!isAccepted && !isOpAccepted">準備中<mk-ellipsis/></template>
</p>
<div class="actions">
<el-button @click="exit">キャンセル</el-button>
<el-button type="primary" @click="accept" v-if="!isAccepted">準備完了</el-button>
<el-button type="primary" @click="cancel" v-if="isAccepted">準備続行</el-button>
</div>
</footer>
2018-03-08 10:57:57 +02:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-04-02 06:58:53 +03:00
import * as maps from '../../../../../othello/maps';
2018-03-08 10:57:57 +02:00
export default Vue.extend({
props: ['game', 'connection'],
data() {
return {
o: null,
isLlotheo: false,
mapName: maps.eighteight.name,
2018-03-11 00:07:17 +02:00
maps: maps,
form: null,
messages: []
2018-03-08 10:57:57 +02:00
};
},
computed: {
2018-03-08 15:11:08 +02:00
mapCategories(): string[] {
const categories = Object.entries(maps).map(x => x[1].category);
return categories.filter((item, pos) => categories.indexOf(item) == pos);
},
2018-03-08 10:57:57 +02:00
isAccepted(): boolean {
2018-03-29 08:48:47 +03:00
if (this.game.user1Id == (this as any).os.i.id && this.game.user1Accepted) return true;
if (this.game.user2Id == (this as any).os.i.id && this.game.user2Accepted) return true;
2018-03-08 10:57:57 +02:00
return false;
2018-03-08 11:30:28 +02:00
},
isOpAccepted(): boolean {
2018-03-29 08:48:47 +03:00
if (this.game.user1Id != (this as any).os.i.id && this.game.user1Accepted) return true;
if (this.game.user2Id != (this as any).os.i.id && this.game.user2Accepted) return true;
2018-03-08 11:30:28 +02:00
return false;
2018-03-08 10:57:57 +02:00
}
},
created() {
this.connection.on('change-accepts', this.onChangeAccepts);
this.connection.on('update-settings', this.onUpdateSettings);
2018-03-11 00:07:17 +02:00
this.connection.on('init-form', this.onInitForm);
this.connection.on('message', this.onMessage);
2018-03-29 08:48:47 +03:00
if (this.game.user1Id != (this as any).os.i.id && this.game.settings.form1) this.form = this.game.settings.form1;
if (this.game.user2Id != (this as any).os.i.id && this.game.settings.form2) this.form = this.game.settings.form2;
2018-03-08 10:57:57 +02:00
},
beforeDestroy() {
this.connection.off('change-accepts', this.onChangeAccepts);
this.connection.off('update-settings', this.onUpdateSettings);
2018-03-11 00:07:17 +02:00
this.connection.off('init-form', this.onInitForm);
this.connection.off('message', this.onMessage);
2018-03-08 10:57:57 +02:00
},
methods: {
exit() {
},
accept() {
this.connection.send({
type: 'accept'
});
},
cancel() {
this.connection.send({
type: 'cancel-accept'
});
},
onChangeAccepts(accepts) {
2018-03-29 08:48:47 +03:00
this.game.user1Accepted = accepts.user1;
this.game.user2Accepted = accepts.user2;
2018-03-08 10:57:57 +02:00
this.$forceUpdate();
},
2018-03-10 05:48:41 +02:00
updateSettings() {
2018-03-08 10:57:57 +02:00
this.connection.send({
type: 'update-settings',
settings: this.game.settings
});
},
2018-03-10 05:48:41 +02:00
onUpdateSettings(settings) {
this.game.settings = settings;
2018-03-10 06:42:26 +02:00
if (this.game.settings.map == null) {
this.mapName = null;
} else {
const foundMap = Object.entries(maps).find(x => x[1].data.join('') == this.game.settings.map.join(''));
this.mapName = foundMap ? foundMap[1].name : '-Custom-';
}
2018-03-10 05:48:41 +02:00
},
2018-03-11 00:07:17 +02:00
onInitForm(x) {
2018-03-29 08:48:47 +03:00
if (x.userId == (this as any).os.i.id) return;
2018-03-11 00:07:17 +02:00
this.form = x.form;
},
onMessage(x) {
2018-03-29 08:48:47 +03:00
if (x.userId == (this as any).os.i.id) return;
2018-03-11 00:07:17 +02:00
this.messages.unshift(x.message);
},
onChangeForm(v, item) {
this.connection.send({
type: 'update-form',
id: item.id,
value: v
});
},
2018-03-10 05:48:41 +02:00
onMapChange(v) {
2018-03-10 06:42:26 +02:00
if (v == null) {
this.game.settings.map = null;
} else {
this.game.settings.map = Object.entries(maps).find(x => x[1].name == v)[1].data;
}
2018-03-08 10:57:57 +02:00
this.$forceUpdate();
2018-03-10 05:48:41 +02:00
this.updateSettings();
},
2018-03-10 05:48:41 +02:00
onPixelClick(pos, pixel) {
const x = pos % this.game.settings.map[0].length;
const y = Math.floor(pos / this.game.settings.map[0].length);
const newPixel =
pixel == ' ' ? '-' :
pixel == '-' ? 'b' :
pixel == 'b' ? 'w' :
' ';
const line = this.game.settings.map[y].split('');
line[x] = newPixel;
this.$set(this.game.settings.map, y, line.join(''));
this.$forceUpdate();
2018-03-10 05:48:41 +02:00
this.updateSettings();
2018-03-08 10:57:57 +02:00
}
}
});
</script>
<style lang="stylus" scoped>
@import '~const.styl'
.root
text-align center
2018-03-11 00:07:17 +02:00
background #f9f9f9
2018-03-08 10:57:57 +02:00
> header
padding 8px
border-bottom dashed 1px #c4cdd4
2018-03-11 00:07:17 +02:00
> div
padding 0 16px
2018-03-08 10:57:57 +02:00
2018-03-11 00:07:17 +02:00
> .map
> .bw
> .rules
> .bot-form
max-width 400px
margin 0 auto 16px auto
2018-03-08 15:11:08 +02:00
> footer
position sticky
bottom 0
padding 16px
background rgba(255, 255, 255, 0.9)
border-top solid 1px #c4cdd4
2018-03-08 10:57:57 +02:00
2018-03-08 15:11:08 +02:00
> .status
margin 0 0 16px 0
2018-03-08 10:57:57 +02:00
</style>
2018-03-11 00:07:17 +02:00
<style lang="stylus" module>
.mapSelect
width 100%
.board
display grid
grid-gap 4px
width 300px
height 300px
margin 0 auto
> div
background transparent
border solid 2px #ddd
border-radius 6px
overflow hidden
cursor pointer
*
pointer-events none
user-select none
width 100%
height 100%
2018-03-11 16:50:17 +02:00
&[data-none]
2018-03-11 00:07:17 +02:00
border-color transparent
</style>
<style lang="stylus">
.el-alert__content
position initial !important
</style>