slitscan/src/components/Player.vue

144 lines
3.8 KiB
Vue

<template>
<div id="player" :class="{fullscreen: fullscreen}">
<div>
<label for="zoom">Zoom:</label>
<input type="number" min="1" :max="50" value="1" class="slider" v-model.number="zoom" id="zoom">
</div>
<div id="player-canvas-container">
<canvas ref="canvas" id="player-canvas"
:height="canvas_height" :width="canvas_width">
</canvas>
</div>
<div id="controls" class="{'fullscreen-controls': fullscreen}">
<div>
<input type="range" min="0" :max="frames - 1" value="0" class="slider" v-model.number="position">
</div>
<button @click="playPause">{{buttonLabel}}</button>
</div>
</div>
</template>
<script>
export default {
name: 'player',
props: {
width: String,
height: String
},
data: function () {
return {
image: null,
buttonLabel: 'PLAY',
playing: false,
zoom: 1,
fullscreen: false,
position: 0,
tmp_ctx: null,
animation_id: null
}
},
computed: {
frames: function () {
if (this.image === null) return 0
return Math.ceil(this.image.width / this.width) *
Math.ceil(this.image.height / this.height)
},
canvas_height: function () {
return this.height * this.zoom
},
canvas_width: function () {
return this.width * this.zoom
}
},
mounted: function () {
this.$bus.$on('imageLoaded', (image) => {
this.image = image
})
this.clear('red')
},
watch: {
canvas_width: function () {
setTimeout(() => {
this.clear('red')
}, 0)
},
canvas_height: function () {
setTimeout(() => {
this.clear('red')
}, 0)
},
position: function () {
if (this.playing || this.image === null) return
this.tmp_ctx = this.$refs.canvas.getContext('2d')
this.$render()
}
},
methods: {
playPause: function () {
if (this.frames === 0) {
return
}
this.playing = !this.playing
if (this.playing) {
this.tmp_ctx = this.$refs.canvas.getContext('2d')
this.animation_id = requestAnimationFrame(this.$render_advance)
this.buttonLabel = 'STOP'
} else {
cancelAnimationFrame(this.animation_id)
this.buttonLabel = 'PLAY'
}
},
clear: function (style) {
let ctx = this.$refs.canvas.getContext('2d')
ctx.fillStyle = style
ctx.fillRect(0, 0, parseInt(this.canvas_width), parseInt(this.canvas_height))
},
$render: function () {
let wb = Math.ceil(this.image.width / this.width)
let x = (this.position % wb) * this.width
let w = x + this.width < this.image.width ? this.width : this.image.width - x
let y = Math.floor(this.position / wb) * this.height
let h = y + this.height < this.image.height ? this.height : this.image.height - y
if (w !== this.width || h !== this.height) this.clear('black')
this.tmp_ctx.drawImage(this.image,
x, y, w, h,
0, 0, w * this.zoom, h * this.zoom)
},
$render_advance: function () {
this.$render()
if (this.position < this.frames) {
this.position += 1
this.animation_id = requestAnimationFrame(this.$render_advance)
} else {
this.playPause()
this.position = 0
}
}
}
}
</script>
<style scoped>
#player {
text-align: center;
}
.fullscreen {
position: absolute;
top: 0;
left: 0;
background-color: rgba(1, 1, 1, .9);
width: 100%;
height: 100%;
}
.fullscreen-controls {
position: absolute;
bottom: 0;
}
#zoom {
width: 3em;
}
</style>