File size: 10,015 Bytes
831f7e7 aeb9637 55a034a 8725cc4 fe9a0c4 55a034a 8725cc4 fe9a0c4 8725cc4 831f7e7 aeb9637 55a034a 6864389 55a034a 35af7d4 8606349 35af7d4 55a034a fe9a0c4 55a034a 8725cc4 fe9a0c4 444233f aeb9637 55a034a 831f7e7 55a034a 444233f 8725cc4 aeb9637 8725cc4 6864389 aeb9637 8725cc4 aeb9637 8725cc4 aeb9637 8725cc4 55a034a fe9a0c4 ac04e03 81e6964 444233f ac04e03 fe9a0c4 aeb9637 fe9a0c4 831f7e7 fe9a0c4 55a034a 8725cc4 55a034a ac04e03 55a034a 8725cc4 831f7e7 8725cc4 55a034a aeb9637 45444c0 aeb9637 8725cc4 fe9a0c4 ac04e03 8725cc4 8606349 45444c0 8606349 8725cc4 55a034a 8725cc4 55a034a 8725cc4 55a034a 8725cc4 0ce34cb fe9a0c4 aeb9637 fe9a0c4 81e6964 fe9a0c4 0ce34cb 8725cc4 55a034a 5835ecd 55a034a fe9a0c4 8725cc4 81e6964 55a034a 8725cc4 35af7d4 8725cc4 fe9a0c4 8725cc4 55a034a 8725cc4 fe9a0c4 ac04e03 55a034a 8725cc4 8ec33d8 81e6964 8725cc4 6864389 8725cc4 0ce34cb 8725cc4 aeb9637 8725cc4 444233f aeb9637 8606349 8725cc4 6864389 55a034a aeb9637 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 |
import { useState, KeyboardEvent, useEffect, useContext } from "react";
import { getRandomWord } from "@/lib/words-standard";
import { getRandomSportsWord } from "@/lib/words-sports";
import { getRandomFoodWord } from "@/lib/words-food";
import { motion } from "framer-motion";
import { generateAIResponse, guessWord } from "@/services/mistralService";
import { getThemedWord } from "@/services/themeService";
import { useToast } from "@/components/ui/use-toast";
import { WelcomeScreen } from "./game/WelcomeScreen";
import { ThemeSelector } from "./game/ThemeSelector";
import { SentenceBuilder } from "./game/SentenceBuilder";
import { GuessDisplay } from "./game/GuessDisplay";
import { useTranslation } from "@/hooks/useTranslation";
import { LanguageContext } from "@/contexts/LanguageContext";
import { supabase } from "@/integrations/supabase/client";
type GameState = "welcome" | "theme-selection" | "building-sentence" | "showing-guess";
const normalizeWord = (word: string): string => {
return word.normalize('NFD')
.replace(/[\u0300-\u036f]/g, '')
.toLowerCase()
.replace(/[^a-z]/g, '') // just match on lowercase chars, remove everything else
.trim();
};
export const GameContainer = () => {
const [gameState, setGameState] = useState<GameState>("welcome");
const [currentWord, setCurrentWord] = useState<string>("");
const [currentTheme, setCurrentTheme] = useState<string>("standard");
const [sentence, setSentence] = useState<string[]>([]);
const [playerInput, setPlayerInput] = useState<string>("");
const [isAiThinking, setIsAiThinking] = useState(false);
const [aiGuess, setAiGuess] = useState<string>("");
const [successfulRounds, setSuccessfulRounds] = useState<number>(0);
const [totalWords, setTotalWords] = useState<number>(0);
const [usedWords, setUsedWords] = useState<string[]>([]);
const [sessionId, setSessionId] = useState<string>("");
const [isHighScoreDialogOpen, setIsHighScoreDialogOpen] = useState(false);
const { toast } = useToast();
const t = useTranslation();
const { language } = useContext(LanguageContext);
useEffect(() => {
if (gameState === "theme-selection") {
setSessionId(crypto.randomUUID());
}
}, [gameState]);
useEffect(() => {
const handleKeyPress = (e: KeyboardEvent) => {
if (e.key === 'Enter' && !isHighScoreDialogOpen) {
if (gameState === 'welcome') {
handleStart();
} else if (gameState === 'showing-guess') {
if (isGuessCorrect()) {
handleNextRound();
} else {
handlePlayAgain();
}
}
}
};
window.addEventListener('keydown', handleKeyPress as any);
return () => window.removeEventListener('keydown', handleKeyPress as any);
}, [gameState, aiGuess, currentWord, isHighScoreDialogOpen]);
const handleStart = () => {
setGameState("theme-selection");
};
const handleBack = () => {
setGameState("welcome");
setSentence([]);
setAiGuess("");
setCurrentWord("");
setCurrentTheme("standard");
setSuccessfulRounds(0);
setTotalWords(0);
setUsedWords([]);
setSessionId("");
};
const handleThemeSelect = async (theme: string) => {
setCurrentTheme(theme);
try {
let word;
switch (theme) {
case "sports":
word = getRandomSportsWord(language);
break;
case "food":
word = getRandomFoodWord(language);
break;
case "standard":
word = getRandomWord(language);
break;
default:
word = await getThemedWord(theme, usedWords, language);
}
setCurrentWord(word);
setGameState("building-sentence");
setSuccessfulRounds(0);
setTotalWords(0);
setUsedWords([word]);
console.log("Game started with word:", word, "theme:", theme, "language:", language);
} catch (error) {
console.error('Error getting themed word:', error);
toast({
title: "Error",
description: "Failed to get a word for the selected theme. Please try again.",
variant: "destructive",
});
}
};
const handlePlayerWord = async (e: React.FormEvent) => {
e.preventDefault();
if (!playerInput.trim()) return;
const word = playerInput.trim();
const newSentence = [...sentence, word];
setSentence(newSentence);
setPlayerInput("");
setTotalWords(prev => prev + 1);
setIsAiThinking(true);
try {
const aiWord = await generateAIResponse(currentWord, newSentence, language);
const newSentenceWithAi = [...newSentence, aiWord];
setSentence(newSentenceWithAi);
setTotalWords(prev => prev + 1);
} catch (error) {
console.error('Error in AI turn:', error);
toast({
title: t.game.aiThinking,
description: t.game.aiDelayed,
variant: "default",
});
} finally {
setIsAiThinking(false);
}
};
const saveGameResult = async (sentence: string[], aiGuess: string, isCorrect: boolean) => {
try {
const { error } = await supabase
.from('game_results')
.insert({
target_word: currentWord,
description: sentence.join(' '),
ai_guess: aiGuess,
is_correct: normalizeWord(aiGuess) === normalizeWord(currentWord), // Fixed comparison here
session_id: sessionId
});
if (error) {
console.error('Error saving game result:', error);
} else {
console.log('Game result saved successfully');
}
} catch (error) {
console.error('Error saving game result:', error);
}
};
const handleMakeGuess = async () => {
setIsAiThinking(true);
try {
let finalSentence = sentence;
if (playerInput.trim()) {
finalSentence = [...sentence, playerInput.trim()];
setSentence(finalSentence);
setPlayerInput("");
setTotalWords(prev => prev + 1);
}
if (finalSentence.length === 0) return;
const sentenceString = finalSentence.join(' ');
const guess = await guessWord(sentenceString, language);
setAiGuess(guess);
// Save game result using the normalized word comparison
await saveGameResult(finalSentence, guess, normalizeWord(guess) === normalizeWord(currentWord));
setGameState("showing-guess");
} catch (error) {
console.error('Error getting AI guess:', error);
toast({
title: "AI Response Delayed",
description: "The AI is currently busy. Please try again in a moment.",
variant: "default",
});
} finally {
setIsAiThinking(false);
}
};
const handleNextRound = () => {
if (handleGuessComplete()) {
const getNewWord = async () => {
try {
let word;
switch (currentTheme) {
case "sports":
word = getRandomSportsWord(language);
break;
case "food":
word = getRandomFoodWord(language);
break;
case "standard":
word = getRandomWord(language);
break;
default:
word = await getThemedWord(currentTheme, usedWords, language);
}
setCurrentWord(word);
setGameState("building-sentence");
setSentence([]);
setAiGuess("");
setUsedWords(prev => [...prev, word]);
console.log("Next round started with word:", word, "theme:", currentTheme);
} catch (error) {
console.error('Error getting new word:', error);
toast({
title: "Error",
description: "Failed to get a new word. Please try again.",
variant: "destructive",
});
}
};
getNewWord();
}
};
const handlePlayAgain = () => {
setGameState("theme-selection");
setSentence([]);
setAiGuess("");
setCurrentWord("");
setCurrentTheme("standard");
setSuccessfulRounds(0);
setTotalWords(0);
setUsedWords([]);
};
const isGuessCorrect = () => {
return normalizeWord(aiGuess) === normalizeWord(currentWord);
};
const handleGuessComplete = () => {
if (isGuessCorrect()) {
setSuccessfulRounds(prev => prev + 1);
return true;
}
return false;
};
const getAverageWordsPerRound = () => {
if (successfulRounds === 0) return 0;
return totalWords / (successfulRounds + 1);
};
return (
<div className="flex min-h-screen items-center justify-center p-4">
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
className="w-full max-w-md rounded-xl bg-white p-8 shadow-lg"
>
{gameState === "welcome" ? (
<WelcomeScreen onStart={handleStart} />
) : gameState === "theme-selection" ? (
<ThemeSelector onThemeSelect={handleThemeSelect} onBack={handleBack} />
) : gameState === "building-sentence" ? (
<SentenceBuilder
currentWord={currentWord}
successfulRounds={successfulRounds}
sentence={sentence}
playerInput={playerInput}
isAiThinking={isAiThinking}
onInputChange={setPlayerInput}
onSubmitWord={handlePlayerWord}
onMakeGuess={handleMakeGuess}
normalizeWord={normalizeWord}
onBack={handleBack}
/>
) : (
<GuessDisplay
sentence={sentence}
aiGuess={aiGuess}
currentWord={currentWord}
onNextRound={handleNextRound}
onPlayAgain={handlePlayAgain}
onBack={handleBack}
currentScore={successfulRounds}
avgWordsPerRound={getAverageWordsPerRound()}
sessionId={sessionId}
currentTheme={currentTheme}
onHighScoreDialogChange={setIsHighScoreDialogOpen}
normalizeWord={normalizeWord}
/>
)}
</motion.div>
</div>
);
};
|