Compare commits

..

No commits in common. "5eb24797a2466a8764b116ec2dba2db07a66db02" and "f178148416d7638206d938a51b8de1ac494ff181" have entirely different histories.

13 changed files with 381 additions and 346 deletions

View File

@ -1,9 +0,0 @@
repos:
- repo: https://github.com/pre-commit/mirrors-eslint
rev: "v8.28.0"
hooks:
- id: eslint
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v2.7.1"
hooks:
- id: prettier

22
package-lock.json generated
View File

@ -12,7 +12,8 @@
"install": "^0.13.0",
"pinia": "^2.0.27",
"vite": "^3.2.4",
"vue": "3.2"
"vue": "3.2",
"vuex": "4.1"
},
"devDependencies": {
"eslint": "^8.28.0",
@ -2019,6 +2020,17 @@
"eslint": ">=6.0.0"
}
},
"node_modules/vuex": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/vuex/-/vuex-4.1.0.tgz",
"integrity": "sha512-hmV6UerDrPcgbSy9ORAtNXDr9M4wlNP4pEFKye4ujJF8oqgFFuxDCdOLS3eNoRTtq5O3hoBDh9Doj1bQMYHRbQ==",
"dependencies": {
"@vue/devtools-api": "^6.0.0-beta.11"
},
"peerDependencies": {
"vue": "^3.2.0"
}
},
"node_modules/which": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
@ -3380,6 +3392,14 @@
"semver": "^7.3.6"
}
},
"vuex": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/vuex/-/vuex-4.1.0.tgz",
"integrity": "sha512-hmV6UerDrPcgbSy9ORAtNXDr9M4wlNP4pEFKye4ujJF8oqgFFuxDCdOLS3eNoRTtq5O3hoBDh9Doj1bQMYHRbQ==",
"requires": {
"@vue/devtools-api": "^6.0.0-beta.11"
}
},
"which": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",

View File

@ -14,7 +14,8 @@
"install": "^0.13.0",
"pinia": "^2.0.27",
"vite": "^3.2.4",
"vue": "3.2"
"vue": "3.2",
"vuex": "4.1"
},
"devDependencies": {
"eslint": "^8.28.0",

View File

@ -9,8 +9,6 @@
</main>
</template>
<script>
import { mapActions, mapState, mapWritableState } from "pinia";
import { globalStore } from "../stores/index.js";
import {
create1dState,
create1dStateOneCell,
@ -20,7 +18,7 @@
evolve2d,
} from "../modules/automata.js";
import { getRandomInt, sleep } from "../modules/common.js";
import { mapGetters } from "vuex";
export default {
name: "CanvasBoard",
data() {
@ -30,22 +28,20 @@
};
},
computed: {
...mapState(globalStore, {
cellProperties: "cellProperties",
rules: "rules1d",
refreshRate: "refreshRate",
initial1dState: "initial1dState",
drawingDirection: "drawingDirection",
canDraw: "canDraw",
getDraw1d: "draw1d",
getDraw2d: "draw2d",
getDraw2dLast: "draw2dLast",
}),
...mapWritableState(globalStore, {
lastBoard: "lastBoard",
canvasWidth: "canvasWidth",
canvasHeight: "canvasHeight",
getReset: "reset",
...mapGetters({
cellProperties: "getCellProperties",
rules: "get1dRules",
canvasWidth: "getCanvasWidth",
canvasHeight: "getCanvasHeight",
refreshRate: "getRefreshRate",
initial1dState: "getInitial1dState",
drawingDirection: "getDrawingDirection",
canDraw: "getCanDraw",
lastBoard: "getLastBoard",
getDraw1d: "getDraw1d",
getDraw2d: "getDraw2d",
getDraw2dLast: "getDraw2dLast",
getReset: "getReset",
}),
boardWidth: function () {
return Math.floor(this.canvasWidth / this.cellProperties.size);
@ -71,11 +67,13 @@
mounted() {
this.canvas = Object.freeze(document.getElementById("canvas-board"));
this.ctx = this.canvas.getContext("2d");
this.canvasWidth = this.canvas.parentElement.clientWidth;
this.canvasHeight = this.canvas.parentElement.clientHeight;
this.$store.commit("setCanvasWidth", this.canvas.parentElement.clientWidth);
this.$store.commit(
"setCanvasHeight",
this.canvas.parentElement.clientHeight
);
},
methods: {
...mapActions(globalStore, ["toggleStop"]),
drawCanvas(board) {
const props = this.cellProperties;
board.map((row, y) => {
@ -104,9 +102,9 @@
this.rules.rules,
this.boardWidth
);
this.lastBoard = Object.freeze(board);
this.$store.commit("setLastBoard", Object.freeze(board));
this.drawCanvas(board);
this.toggleStop();
this.$store.dispatch("stop");
},
draw2d(board) {
if (!this.canDraw) return;
@ -127,16 +125,16 @@
[0, 2]
);
const board = evolve2d(initialState, conwayRules);
this.lastBoard = Object.freeze(board);
this.$store.commit("setLastBoard", Object.freeze(board));
this.draw2d(board);
},
async draw2dLast() {
if (this.lastBoard != undefined) this.draw2d(this.lastBoard);
this.draw2d(this.lastBoard);
},
reset() {
this.toggleStop();
this.$store.dispatch("stop");
this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height);
this.getReset = 0;
this.$store.commit("toggleReset", 0);
},
},
};

View File

@ -2,50 +2,55 @@
<MenuRow row-title="2D Cellular Automata">
<div class="form-field">
<label>Start from last result</label>
<input type="button" value="start" @click="toggleDraw2dLast()" />
<input type="button" value="start" @click="draw2dLast" />
</div>
<div class="form-field">
<input
type="button"
name="start2d"
value="start"
@click="toggleDraw2d()"
/>
<input type="button" name="start2d" value="start" @click="draw2d" />
<input
type="button"
name="stop"
class="stop"
value="stop"
@click="toggleStop()"
@click="stop"
/>
<input
type="button"
name="reset"
class="reset"
value="reset"
@click="toggleReset()"
@click="reset"
/>
</div>
</MenuRow>
</template>
<script>
import { mapActions } from "pinia";
import MenuRow from "./MenuRow.vue";
import { globalStore } from "../stores/index.js";
import { mapGetters } from "vuex";
export default {
name: "Menu2dCA",
components: {
MenuRow,
},
computed: {
...mapGetters({
lastBoard: "getLastBoard",
}),
},
methods: {
...mapActions(globalStore, [
"toggleDraw2d",
"toggleDraw2dLast",
"toggleReset",
"toggleStop",
]),
draw2d() {
this.$store.dispatch("draw2d");
},
draw2dLast() {
this.$store.dispatch("draw2dLast");
},
reset() {
this.$store.dispatch("reset");
},
stop() {
this.$store.dispatch("stop");
},
},
};
</script>

View File

@ -34,26 +34,28 @@
</template>
<script>
import { mapWritableState } from "pinia";
import { globalStore } from "../stores/index.js";
import MenuRow from "./MenuRow.vue";
export default {
name: "MainMenu",
components: {
MenuRow,
},
computed: {
...mapWritableState(globalStore, ["cellProperties"]),
data() {
return {
cellProperties: this.$store.state.cellProperties,
};
},
methods: {
getCellProperties(event) {
const elem = event.target;
const prop = this.cellProperties;
const prop = this.$store.state.cellProperties;
return prop[elem.name];
},
updateCellProperties(event) {
const elem = event.target;
this.cellProperties[elem.name] = elem.value;
const prop = { name: elem.name, value: elem.value };
//console.log(prop)
this.$store.commit("setCellProperties", prop);
},
},
};

View File

@ -63,21 +63,21 @@
</div>
</form>
<div class="form-field">
<input type="button" name="start" value="start" @click="toggleDraw1d()" />
<input type="button" name="start" value="start" @click="draw1d" />
<input
type="button"
name="reset"
class="reset"
value="reset"
@click="toggleReset"
@click="reset"
/>
</div>
</MenuRow>
</template>
<script>
import { mapActions, mapWritableState } from "pinia";
import { presetRules, initialStates } from "./preset.js";
import { mapActions, mapState, mapWritableState } from 'pinia'
import { presetRules, initialStates } from "./preset.js"
import { globalStore } from "../stores/index.js";
import MenuRow from "./MenuRow.vue";
export default {
@ -92,12 +92,17 @@
};
},
computed: {
...mapWritableState(globalStore, {
...mapWritableState(
globalStore, {
initialState: "initial1dState",
rules: "rules1d",
}),
}
),
...mapState(
globalStore, {
rules: "rules1d"
}
),
rules1dFileName() {
// TODO: broken
return (
Object.keys(this.rules)
.map((index) => {
@ -108,7 +113,7 @@
},
},
methods: {
...mapActions(globalStore, ["toggleDraw1d", "toggleReset"]),
...mapActions(globalStore, ["draw1d", "reset"]),
copyRules() {
const rules = JSON.stringify(this.rules);
navigator.clipboard.writeText(rules);
@ -128,11 +133,11 @@
const newRuleset = this.presetRules.find((ruleset) => {
return ruleset.name === name;
});
this.rules.rules = newRuleset.rules;
this.rules.rules = newRuleset.rules
},
updateInitialState(event) {
const elem = event.target;
this.initial1dState = elem.value;
this.initial1dState = elem.value
},
},
};

View File

@ -56,39 +56,39 @@
</template>
<script>
import { mapWritableState } from "pinia";
import { globalStore } from "../stores/index.js";
import MenuRow from "./MenuRow.vue";
import { mapGetters } from "vuex";
export default {
name: "MenuGeneralOptions",
components: {
MenuRow,
},
computed: {
...mapWritableState(globalStore, [
"canvasWidth",
"canvasHeight",
"refreshRate",
"drawingDirection",
]),
...mapGetters({
canvasWidth: "getCanvasWidth",
canvasHeight: "getCanvasHeight",
refreshRate: "getRefreshRate",
drawingDirection: "getDrawingDirection",
}),
},
methods: {
updateCanvasHeight: function (event) {
const elem = event.target;
this.canvasHeight = elem.value;
this.$store.commit("setCanvasHeight", elem.value);
},
updateCanvasWidth: function (event) {
const elem = event.target;
this.canvasWidth = elem.value;
this.$store.commit("setCanvasWidth", elem.value);
},
updateRefreshRate: function (event) {
const elem = event.target;
this.refreshRate = elem.value;
this.$store.commit("setRefreshRate", elem.value);
},
updateDrawingDirection: function (event) {
const elem = event.target;
const value = elem.checked ? "x" : "y";
this.drawingDirection = value;
this.$store.commit("setDrawingDirection", value);
console.log(this.drawingDirection);
},
},
};

View File

@ -10,8 +10,7 @@
</template>
<script>
import { mapWritableState } from "pinia";
import { globalStore } from "../stores/index.js";
import { mapGetters } from "vuex";
export default {
name: "MenuRow",
@ -22,15 +21,16 @@
},
},
computed: {
// TODO: should be passed as a props/slot, not in a store
...mapWritableState(globalStore, ["activeMenu"]),
...mapGetters({
activeMenu: "getActiveMenu",
}),
},
methods: {
updateActiveMenu(event) {
const elem = event.target;
const value = elem.id;
if (value == this.activeMenu) this.activeMenu = "";
else this.activeMenu = value;
if (value == this.activeMenu) this.$store.commit("setActiveMenu", "");
else this.$store.commit("setActiveMenu", value);
},
},
};

View File

@ -77,7 +77,7 @@ const presetRules = [
"000": 1,
},
},
];
]
const initialStates = [
{
@ -90,6 +90,6 @@ const initialStates = [
name: "Random cell",
description: "State populated with random cells",
},
];
]
export { presetRules, initialStates };
export { presetRules, initialStates }

View File

@ -35,25 +35,25 @@ export const globalStore = defineStore("globalStore", {
draw2dLast: false,
reset: false,
canDraw: true,
};
}
},
actions: {
toggleDraw1d() {
draw1d() {
this.draw1d = true;
},
toggleDraw2d() {
draw2d() {
this.canDraw = true;
this.draw2d = true;
},
toggleDraw2dLast() {
draw2dLast() {
this.canDraw = true;
this.draw2dLast = true;
},
toggleReset() {
this.toggleStop();
reset() {
this.stop();
this.reset = true;
},
toggleStop() {
stop() {
this.draw1d = false;
this.draw2d = false;
this.draw2dLast = false;

13
vue.config.js Normal file
View File

@ -0,0 +1,13 @@
module.exports = {
configureWebpack: {
devServer: {
overlay: {
warnings: true,
errors: true,
},
watchOptions: {
ignored: [/node_modules/, /public/, /\.#/],
},
},
},
};