2018-03-06 20:40:40 -06:00
|
|
|
<template>
|
2018-03-07 02:48:32 -06:00
|
|
|
<div class="root">
|
|
|
|
<header><b>{{ game.black_user.name }}</b>(黒) vs <b>{{ game.white_user.name }}</b>(白)</header>
|
2018-03-07 03:45:16 -06:00
|
|
|
<p class="turn" v-if="!iAmPlayer && !isEnded">{{ turn.name }}のターンです<mk-ellipsis/></p>
|
|
|
|
<p class="turn" v-if="iAmPlayer && !isEnded">{{ isMyTurn ? 'あなたのターンです' : '相手のターンです' }}<mk-ellipsis v-if="!isMyTurn"/></p>
|
|
|
|
<p class="result" v-if="isEnded">
|
|
|
|
<template v-if="winner"><b>{{ winner.name }}</b>の勝ち</template>
|
|
|
|
<template v-else>引き分け</template>
|
|
|
|
</p>
|
2018-03-07 02:48:32 -06:00
|
|
|
<div>
|
|
|
|
<div v-for="(stone, i) in o.board"
|
2018-03-07 03:45:16 -06:00
|
|
|
:class="{ empty: stone == null, myTurn: isMyTurn, can: o.canReverse(turn.id == game.black_user.id ? 'black' : 'white', i) }"
|
2018-03-07 02:48:32 -06:00
|
|
|
@click="set(i)"
|
|
|
|
>
|
|
|
|
<img v-if="stone == 'black'" :src="`${game.black_user.avatar_url}?thumbnail&size=64`" alt="">
|
|
|
|
<img v-if="stone == 'white'" :src="`${game.white_user.avatar_url}?thumbnail&size=64`" alt="">
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-03-06 20:40:40 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-03-07 02:48:32 -06:00
|
|
|
import { OthelloGameStream } from '../../scripts/streaming/othello-game';
|
|
|
|
import Othello from '../../../../../common/othello';
|
|
|
|
|
2018-03-06 20:40:40 -06:00
|
|
|
export default Vue.extend({
|
|
|
|
props: ['game'],
|
|
|
|
data() {
|
|
|
|
return {
|
2018-03-07 02:48:32 -06:00
|
|
|
o: new Othello(),
|
|
|
|
turn: null,
|
2018-03-07 03:45:16 -06:00
|
|
|
isMyTurn: null,
|
|
|
|
isEnded: false,
|
|
|
|
winner: null,
|
2018-03-07 02:48:32 -06:00
|
|
|
connection: null
|
2018-03-06 20:40:40 -06:00
|
|
|
};
|
|
|
|
},
|
2018-03-07 02:48:32 -06:00
|
|
|
computed: {
|
2018-03-07 03:45:16 -06:00
|
|
|
iAmPlayer(): boolean {
|
|
|
|
return this.game.black_user_id == (this as any).os.i.id || this.game.white_user_id == (this as any).os.i.id;
|
|
|
|
},
|
2018-03-07 02:48:32 -06:00
|
|
|
myColor(): string {
|
|
|
|
return this.game.black_user_id == (this as any).os.i.id ? 'black' : 'white';
|
|
|
|
},
|
|
|
|
opColor(): string {
|
|
|
|
return this.myColor == 'black' ? 'white' : 'black';
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.game.logs.forEach(log => {
|
|
|
|
this.o.set(log.color, log.pos);
|
|
|
|
});
|
2018-03-06 20:40:40 -06:00
|
|
|
|
2018-03-07 03:45:16 -06:00
|
|
|
this.turn = this.game.turn_user_id == this.game.black_user_id ? this.game.black_user : this.game.white_user;
|
|
|
|
this.isMyTurn = this.game.turn_user_id == (this as any).os.i.id;
|
|
|
|
this.isEnded = this.game.is_ended;
|
|
|
|
this.winner = this.game.winner;
|
2018-03-07 02:48:32 -06:00
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.connection = new OthelloGameStream((this as any).os.i, this.game);
|
2018-03-06 20:40:40 -06:00
|
|
|
this.connection.on('set', this.onSet);
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
this.connection.off('set', this.onSet);
|
2018-03-07 02:48:32 -06:00
|
|
|
this.connection.close();
|
2018-03-06 20:40:40 -06:00
|
|
|
},
|
2018-03-07 02:48:32 -06:00
|
|
|
methods: {
|
|
|
|
set(pos) {
|
2018-03-07 03:45:16 -06:00
|
|
|
if (!this.isMyTurn) return;
|
2018-03-07 02:48:32 -06:00
|
|
|
if (!this.o.canReverse(this.myColor, pos)) return;
|
|
|
|
this.o.set(this.myColor, pos);
|
|
|
|
if (this.o.getPattern(this.opColor).length > 0) {
|
2018-03-07 03:45:16 -06:00
|
|
|
this.isMyTurn = !this.isMyTurn;
|
|
|
|
this.turn = this.myColor == 'black' ? this.game.white_user : this.game.black_user;
|
|
|
|
} else if (this.o.getPattern(this.myColor).length == 0) {
|
|
|
|
this.isEnded = true;
|
|
|
|
const blackCount = this.o.board.filter(s => s == 'black').length;
|
|
|
|
const whiteCount = this.o.board.filter(s => s == 'white').length;
|
|
|
|
this.winner = blackCount == whiteCount ? null : blackCount > whiteCount ? this.game.black_user : this.game.white_user;
|
2018-03-07 02:48:32 -06:00
|
|
|
}
|
|
|
|
this.connection.send({
|
|
|
|
type: 'set',
|
|
|
|
pos
|
|
|
|
});
|
|
|
|
this.$forceUpdate();
|
|
|
|
},
|
|
|
|
onSet(x) {
|
|
|
|
this.o.set(x.color, x.pos);
|
2018-03-07 03:45:16 -06:00
|
|
|
if (this.o.getPattern('black').length == 0 && this.o.getPattern('white').length == 0) {
|
|
|
|
this.isEnded = true;
|
|
|
|
const blackCount = this.o.board.filter(s => s == 'black').length;
|
|
|
|
const whiteCount = this.o.board.filter(s => s == 'white').length;
|
|
|
|
this.winner = blackCount == whiteCount ? null : blackCount > whiteCount ? this.game.black_user : this.game.white_user;
|
|
|
|
} else {
|
|
|
|
if (this.iAmPlayer && this.o.getPattern(this.myColor).length > 0) {
|
|
|
|
this.isMyTurn = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x.color == 'black' && this.o.getPattern('white').length > 0) {
|
|
|
|
this.turn = this.game.white_user;
|
|
|
|
}
|
|
|
|
if (x.color == 'black' && this.o.getPattern('white').length == 0) {
|
|
|
|
this.turn = this.game.black_user;
|
|
|
|
}
|
|
|
|
if (x.color == 'white' && this.o.getPattern('black').length > 0) {
|
|
|
|
this.turn = this.game.black_user;
|
|
|
|
}
|
|
|
|
if (x.color == 'white' && this.o.getPattern('black').length == 0) {
|
|
|
|
this.turn = this.game.white_user;
|
|
|
|
}
|
2018-03-07 02:48:32 -06:00
|
|
|
}
|
|
|
|
this.$forceUpdate();
|
|
|
|
}
|
|
|
|
}
|
2018-03-06 20:40:40 -06:00
|
|
|
});
|
|
|
|
</script>
|
2018-03-07 02:48:32 -06:00
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
@import '~const.styl'
|
|
|
|
|
|
|
|
.root
|
|
|
|
text-align center
|
|
|
|
|
|
|
|
> header
|
|
|
|
padding 8px
|
|
|
|
border-bottom dashed 1px #c4cdd4
|
|
|
|
|
|
|
|
> div
|
|
|
|
display grid
|
|
|
|
grid-template-rows repeat(8, 1fr)
|
|
|
|
grid-template-columns repeat(8, 1fr)
|
|
|
|
grid-gap 4px
|
|
|
|
width 300px
|
|
|
|
height 300px
|
|
|
|
margin 0 auto
|
|
|
|
|
|
|
|
> div
|
|
|
|
background transparent
|
|
|
|
border-radius 6px
|
|
|
|
overflow hidden
|
|
|
|
|
|
|
|
*
|
|
|
|
pointer-events none
|
|
|
|
user-select none
|
|
|
|
|
|
|
|
&.empty
|
|
|
|
border solid 2px #f5f5f5
|
|
|
|
|
|
|
|
&.empty.can
|
|
|
|
background #f5f5f5
|
|
|
|
|
|
|
|
&.empty.myTurn
|
|
|
|
border-color #eee
|
|
|
|
|
|
|
|
&.can
|
|
|
|
background #eee
|
|
|
|
cursor pointer
|
|
|
|
|
|
|
|
&:hover
|
|
|
|
border-color darken($theme-color, 10%)
|
|
|
|
background $theme-color
|
|
|
|
|
|
|
|
&:active
|
|
|
|
background darken($theme-color, 10%)
|
|
|
|
|
|
|
|
> img
|
|
|
|
display block
|
|
|
|
width 100%
|
|
|
|
height 100%
|
|
|
|
</style>
|