explorata/src/components/Canvas.vue

114 lines
2.9 KiB
Vue
Raw Normal View History

2022-01-08 13:12:15 +01:00
<template>
<main id="main">
<canvas
id="canvas"
ref="canvas"
2022-01-10 14:16:34 +01:00
:width="canvasWidth"
:height="canvasHeight"
/>
2022-01-08 13:12:15 +01:00
</main>
</template>
<script>
2022-01-11 13:16:42 +01:00
import { create1dState, create1dStateOneCell, create2dState, createBoard, conwayRules, evolve2d } from '../modules/automata.js'
2022-01-10 13:50:02 +01:00
import { getRandomInt, sleep } from '../modules/common.js'
2022-01-10 11:13:44 +01:00
import {mapGetters} from 'vuex'
export default {
name: 'Canvas',
data() {
return {
canvas: null,
2022-01-10 11:13:44 +01:00
ctx: null,
}
},
computed: {
2022-01-10 11:13:44 +01:00
...mapGetters({
cellProperties: 'getCellProperties',
rules: 'get1dRules',
2022-01-10 14:16:34 +01:00
drawing: 'isDrawing',
canvasWidth: 'getCanvasWidth',
2022-01-10 20:49:09 +01:00
canvasHeight: 'getCanvasHeight',
2022-01-11 13:16:42 +01:00
refreshRate: 'getRefreshRate',
initial1dState: 'getInitial1dState'
}),
boardWidth: function() {
return Math.floor(
this.canvas.width /
this.cellProperties.size)
},
boardHeight: function() {
return Math.floor(
this.canvas.height /
this.cellProperties.size)
}
},
mounted() {
this.canvas = this.$refs['canvas']
2022-01-10 11:13:44 +01:00
this.ctx = this.canvas.getContext('2d')
this.$root.$on('draw1d', () => { this.draw1d() })
2022-01-10 13:50:02 +01:00
this.$root.$on('draw2d', () => { this.draw2d() })
2022-01-10 11:13:44 +01:00
this.$root.$on('reset', () => { this.reset() })
2022-01-10 13:50:02 +01:00
this.$root.$on('stop', () => { this.stop() })
},
methods: {
drawCanvas(board) {
2022-01-10 11:13:44 +01:00
const props = this.cellProperties
board.map((row, y) => {
2022-01-10 11:13:44 +01:00
const d = props.size
return row.map(
(cell, x) => {
this.ctx.fillStyle = (
() => {
2022-01-10 11:13:44 +01:00
if (cell === 1) return props.liveColor
return props.deadColor
})()
this.ctx.fillRect(x * d, y * d, d, d)
return cell
},
2022-01-10 11:13:44 +01:00
)
})
},
2022-01-11 13:16:42 +01:00
compute1dInitialState() {
if(this.initial1dState === "onecell")
return create1dStateOneCell(this.boardWidth)
return create1dState(this.boardWidth, getRandomInt, [0, 2])
},
2022-01-10 11:13:44 +01:00
async draw1d() {
2022-01-11 13:16:42 +01:00
const initialState = this.compute1dInitialState()
const board = createBoard(
initialState,
2022-01-10 11:13:44 +01:00
this.rules,
2022-01-11 13:16:42 +01:00
this.boardHeight
2022-01-10 11:13:44 +01:00
)
this.drawCanvas(board)
},
2022-01-10 13:50:02 +01:00
async draw2d() {
if (this.drawing === 0) return
2022-01-11 13:16:42 +01:00
const initialState = create2dState(
this.boardWidth,
this.boardHeight,
2022-01-10 13:50:02 +01:00
getRandomInt,
[0, 2],
);
const board = evolve2d(initialState, conwayRules);
const draw2dNext = async (b) => {
if (this.drawing === 0) return
const newBoard = evolve2d(b, conwayRules)
this.drawCanvas(b, this.cellProperties)
2022-01-10 20:49:09 +01:00
await sleep(this.refreshRate)
2022-01-10 13:50:02 +01:00
draw2dNext(newBoard)
}
return draw2dNext(board)
},
stop() {
2022-01-10 14:16:34 +01:00
this.$store.commit('setDrawingStatus', 0)
2022-01-10 13:50:02 +01:00
},
2022-01-10 11:13:44 +01:00
reset() {
2022-01-10 13:50:02 +01:00
this.stop()
2022-01-10 11:13:44 +01:00
this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height)
}
}
}
</script>