2 Commits

Author SHA1 Message Date
43822d03ac 1.8.2 2026-02-11 04:47:09 +01:00
2e83d3ea9f feat(i18n): add translations for difficulty simulation feature 2026-02-11 04:47:02 +01:00
4 changed files with 51 additions and 17 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "vue-nonograms-solid", "name": "vue-nonograms-solid",
"version": "1.8.1", "version": "1.8.2",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "vue-nonograms-solid", "name": "vue-nonograms-solid",
"version": "1.8.1", "version": "1.8.2",
"dependencies": { "dependencies": {
"fireworks-js": "^2.10.8", "fireworks-js": "^2.10.8",
"flag-icons": "^7.5.0", "flag-icons": "^7.5.0",

View File

@@ -1,6 +1,6 @@
{ {
"name": "vue-nonograms-solid", "name": "vue-nonograms-solid",
"version": "1.8.1", "version": "1.8.2",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@@ -3,9 +3,11 @@
import { ref, computed } from 'vue'; import { ref, computed } from 'vue';
import { generateRandomGrid, calculateHints } from '@/utils/puzzleUtils'; import { generateRandomGrid, calculateHints } from '@/utils/puzzleUtils';
import { solvePuzzle } from '@/utils/solver'; import { solvePuzzle } from '@/utils/solver';
import { useI18n } from '@/composables/useI18n';
import { X, Play, Square, RotateCcw } from 'lucide-vue-next'; import { X, Play, Square, RotateCcw } from 'lucide-vue-next';
const emit = defineEmits(['close']); const emit = defineEmits(['close']);
const { t } = useI18n();
const SIZES = [5, 10, 15, 20, 25, 30, 35, 40, 45, 50]; const SIZES = [5, 10, 15, 20, 25, 30, 35, 40, 45, 50];
const DENSITIES = [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]; const DENSITIES = [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9];
@@ -13,12 +15,17 @@ const SAMPLES_PER_POINT = 10; // Reduced for web performance demo
const isRunning = ref(false); const isRunning = ref(false);
const progress = ref(0); const progress = ref(0);
const currentStatus = ref('Ready'); const currentStatus = ref('');
const results = ref([]); const results = ref([]);
const simulationSpeed = ref(1); // 1 = Normal, 2 = Fast (less render updates) const simulationSpeed = ref(1); // 1 = Normal, 2 = Fast (less render updates)
let stopRequested = false; let stopRequested = false;
const displayStatus = computed(() => {
if (!currentStatus.value) return t('simulation.status.ready');
return currentStatus.value;
});
const startSimulation = async () => { const startSimulation = async () => {
if (isRunning.value) return; if (isRunning.value) return;
isRunning.value = true; isRunning.value = true;
@@ -32,12 +39,15 @@ const startSimulation = async () => {
for (const size of SIZES) { for (const size of SIZES) {
for (const density of DENSITIES) { for (const density of DENSITIES) {
if (stopRequested) { if (stopRequested) {
currentStatus.value = 'Stopped'; currentStatus.value = t('simulation.status.stopped');
isRunning.value = false; isRunning.value = false;
return; return;
} }
currentStatus.value = `Simulating ${size}x${size} @ ${(density * 100).toFixed(0)}%`; currentStatus.value = t('simulation.status.simulating', {
size: size,
density: (density * 100).toFixed(0)
});
let totalSolved = 0; let totalSolved = 0;
@@ -66,7 +76,7 @@ const startSimulation = async () => {
} }
isRunning.value = false; isRunning.value = false;
currentStatus.value = 'Completed'; currentStatus.value = t('simulation.status.completed');
}; };
const stopSimulation = () => { const stopSimulation = () => {
@@ -86,7 +96,7 @@ const getRowColor = (solved) => {
<div class="modal-overlay" @click.self="emit('close')"> <div class="modal-overlay" @click.self="emit('close')">
<div class="modal glass-panel"> <div class="modal glass-panel">
<div class="header"> <div class="header">
<h2>Difficulty Simulation</h2> <h2>{{ t('simulation.title') }}</h2>
<button class="close-btn" @click="emit('close')"> <button class="close-btn" @click="emit('close')">
<X /> <X />
</button> </button>
@@ -95,7 +105,7 @@ const getRowColor = (solved) => {
<div class="content"> <div class="content">
<div class="controls"> <div class="controls">
<div class="status-bar"> <div class="status-bar">
<div class="status-text">{{ currentStatus }}</div> <div class="status-text">{{ displayStatus }}</div>
<div class="progress-track"> <div class="progress-track">
<div class="progress-fill" :style="{ width: progress + '%' }"></div> <div class="progress-fill" :style="{ width: progress + '%' }"></div>
</div> </div>
@@ -103,10 +113,10 @@ const getRowColor = (solved) => {
<div class="actions"> <div class="actions">
<button v-if="!isRunning" class="btn-neon" @click="startSimulation"> <button v-if="!isRunning" class="btn-neon" @click="startSimulation">
<Play class="icon" /> Start Simulation <Play class="icon" /> {{ t('simulation.start') }}
</button> </button>
<button v-else class="btn-neon secondary" @click="stopSimulation"> <button v-else class="btn-neon secondary" @click="stopSimulation">
<Square class="icon" /> Stop <Square class="icon" /> {{ t('simulation.stop') }}
</button> </button>
</div> </div>
</div> </div>
@@ -115,9 +125,9 @@ const getRowColor = (solved) => {
<table class="results-table"> <table class="results-table">
<thead> <thead>
<tr> <tr>
<th>Size</th> <th>{{ t('simulation.table.size') }}</th>
<th>Density</th> <th>{{ t('simulation.table.density') }}</th>
<th>Solved (Logic)</th> <th>{{ t('simulation.table.solved') }}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@@ -129,7 +139,7 @@ const getRowColor = (solved) => {
</tbody> </tbody>
</table> </table>
<div v-if="results.length === 0" class="empty-state"> <div v-if="results.length === 0" class="empty-state">
Press Start to run Monte Carlo simulation {{ t('simulation.empty') }}
</div> </div>
</div> </div>
</div> </div>

View File

@@ -106,7 +106,19 @@ const messages = {
'language.searchLabel': 'Wyszukaj język', 'language.searchLabel': 'Wyszukaj język',
'language.searchPlaceholder': 'Wpisz nazwę języka...', 'language.searchPlaceholder': 'Wpisz nazwę języka...',
'nav.newGame': 'NOWA GRA', 'nav.newGame': 'NOWA GRA',
'nav.guide': 'PRZEWODNIK' 'nav.guide': 'PRZEWODNIK',
'custom.simulationHelp': 'Jak to jest obliczane?',
'simulation.title': 'Symulacja Trudności',
'simulation.status.ready': 'Gotowy',
'simulation.status.stopped': 'Zatrzymano',
'simulation.status.completed': 'Zakończono',
'simulation.status.simulating': 'Symulacja {size}x{size} @ {density}%',
'simulation.start': 'Start Symulacji',
'simulation.stop': 'Stop',
'simulation.table.size': 'Rozmiar',
'simulation.table.density': 'Gęstość',
'simulation.table.solved': 'Rozwiązano (Logika)',
'simulation.empty': 'Naciśnij Start, aby uruchomić symulację Monte Carlo'
}, },
en: { en: {
'app.title': 'Nonograms', 'app.title': 'Nonograms',
@@ -265,7 +277,19 @@ const messages = {
'language.searchLabel': 'Search language', 'language.searchLabel': 'Search language',
'language.searchPlaceholder': 'Type language name...', 'language.searchPlaceholder': 'Type language name...',
'nav.newGame': 'NEW GAME', 'nav.newGame': 'NEW GAME',
'nav.guide': 'GUIDE' 'nav.guide': 'GUIDE',
'custom.simulationHelp': 'How is this calculated?',
'simulation.title': 'Difficulty Simulation',
'simulation.status.ready': 'Ready',
'simulation.status.stopped': 'Stopped',
'simulation.status.completed': 'Completed',
'simulation.status.simulating': 'Simulating {size}x{size} @ {density}%',
'simulation.start': 'Start Simulation',
'simulation.stop': 'Stop',
'simulation.table.size': 'Size',
'simulation.table.density': 'Density',
'simulation.table.solved': 'Solved (Logic)',
'simulation.empty': 'Press Start to run Monte Carlo simulation'
}, },
zh: { zh: {
'app.title': 'Nonograms', 'app.title': 'Nonograms',