This commit is contained in:
2025-12-08 12:24:45 +00:00
parent 2db041f919
commit e987f3de3b
6 changed files with 107 additions and 0 deletions
+10
View File
@@ -1,6 +1,7 @@
import { useState, useEffect, useCallback, useRef } from 'react';
import { motion } from 'framer-motion';
import { useSettings } from '@/contexts/SettingsContext';
import { useAchievements } from '@/contexts/AchievementsContext';
import { Link } from 'react-router-dom';
import GlitchCrash from '@/components/GlitchCrash';
import { Maximize2, Minimize2 } from 'lucide-react';
@@ -17,6 +18,7 @@ type Position = { x: number; y: number };
const Snake = () => {
const { playSound } = useSettings();
const { checkGameScoreAchievements, unlockMaxScore } = useAchievements();
const [snake, setSnake] = useState<Position[]>([{ x: 10, y: 10 }]);
const [direction, setDirection] = useState<Direction>('right');
const [food, setFood] = useState<Position>({ x: 15, y: 10 });
@@ -94,6 +96,14 @@ const Snake = () => {
if (saved) setHighScore(Math.min(parseInt(saved, 10), MAX_SCORE));
}, []);
// Check score achievements
useEffect(() => {
if (score > 0) {
checkGameScoreAchievements('snake', score);
if (score >= MAX_SCORE) unlockMaxScore();
}
}, [score, checkGameScoreAchievements, unlockMaxScore]);
const spawnFood = useCallback((currentSnake: Position[]): Position | null => {
const occupied = new Set(currentSnake.map(s => `${s.x},${s.y}`));
const available: Position[] = [];