Spaces:
Paused
Paused
File size: 10,952 Bytes
0539b50 |
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 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 |
import gradio as gr
import pandas as pd
import random
from datasets import load_dataset
# Load dataset
dataset = load_dataset("tejasashinde/a2z-multidomain-glossary", split="train")
df = pd.DataFrame(dataset)
# Prepare dataset
df = (
df.dropna(subset=["word", "description"])
.sample(frac=1)
.reset_index(drop=True)
)
# Game settings
GAME_LENGTHS = {
"Quick Game (10 Qs)": 10,
"Medium Game (20 Qs)": 20,
"Endless Mode": None,
}
# Session state
session_state = {
"score": 0,
"question_idx": 0,
"game_length": 10,
"used_indices": [],
"current_correct_word": "",
"current_options": [],
"mode": None,
}
def generate_question():
while True:
idx = random.randint(0, len(df) - 1)
if idx not in session_state["used_indices"]:
session_state["used_indices"].append(idx)
break
row = df.loc[idx]
correct = row["word"]
description = row["description"]
domain = row["domain"]
prev = df[(df["domain"] == domain) & (df["word"] != correct)]
distractors = (
prev["word"].sample(3).tolist()
if len(prev) >= 3
else df[df["word"] != correct]["word"].sample(3).tolist()
)
options = distractors + [correct]
random.shuffle(options)
session_state.update(current_correct_word=correct, current_options=options)
return description, options
def show_mode_selection():
return (
gr.update(visible=False), # start_btn
gr.update(visible=True), # mode_selector
gr.update(visible=True), # proceed_btn
gr.update(visible=False), # level_text
gr.update(value="", visible=False), # question_display
*(gr.update(visible=False),)*4, # buttons b0,b1,b2,b3
"", # feedback cleared
"", # summary cleared
gr.update(visible=False), # play_again_btn
gr.update(visible=False), # end_game_btn
)
def start_game(mode):
session_state.update(
score=0,
question_idx=0,
used_indices=[],
game_length=GAME_LENGTHS[mode],
mode=mode,
)
desc, options = generate_question()
return (
gr.update(visible=False), # mode_selector
gr.update(visible=False), # proceed_btn
gr.update(value=f"Question 1", visible=True), # level_text
gr.update(value=desc, visible=True), # question_display
*[gr.update(value=opt, visible=True) for opt in options], # buttons
"", # feedback cleared
"", # summary cleared
gr.update(visible=False), # play_again_btn
gr.update(visible=(mode == "Endless Mode")), # end_game_btn only visible in endless mode
)
def answer_question(choice):
session_state["question_idx"] += 1
correct = session_state["current_correct_word"]
if choice == correct:
session_state["score"] += 1
feedback = '<div class="alert alert-success">โ
Correct!</div>'
else:
feedback = f'<div class="alert alert-danger">โ Wrong! Correct was <b>{correct}</b></div>'
# Check if game ended (for finite mode)
if session_state["game_length"] and session_state["question_idx"] >= session_state["game_length"]:
summary_html = f'''
<div class="game-over-box">
<h2>๐ Game Over</h2>
<p>You scored <strong>{session_state["score"]}</strong> out of <strong>{session_state["game_length"]}</strong></p>
</div>
'''
return (
gr.update(value=feedback, visible=True), # Show last feedback
gr.update(value="", visible=False), # Hide question_display
*(gr.update(visible=False),)*4, # Hide buttons
gr.update(value=summary_html, visible=True), # Show summary
gr.update(visible=False), # Hide level_text
gr.update(visible=True), # Show play_again_btn
gr.update(visible=False), # Hide end_game_btn
)
# For ongoing game (including endless mode)
desc, options = generate_question()
return (
gr.update(value=feedback, visible=True), # Show feedback
gr.update(value=desc, visible=True),
*[gr.update(value=o, visible=True) for o in options],
gr.update(value="", visible=False), # Clear summary
f"Question {session_state['question_idx'] + 1}",
gr.update(visible=False), # Hide play_again_btn during game
gr.update(visible=(session_state["mode"] == "Endless Mode")), # Show end_game_btn only in endless mode
)
def end_game():
summary_html = f'''
<div class="game-over-box">
<h2>๐ Game Ended</h2>
<p>You scored <strong>{session_state["score"]}</strong> points.</p>
</div>
'''
return (
gr.update(value="", visible=False), # Clear feedback
gr.update(value="", visible=False), # Hide question_display
*(gr.update(visible=False),)*4, # Hide buttons
gr.update(value=summary_html, visible=True),
gr.update(visible=False), # Hide level_text
gr.update(visible=True), # Show play_again_btn
gr.update(visible=False), # Hide end_game_btn
)
# Styling (unchanged)
custom_css = """
.alert { padding:10px; border-radius:4px; margin-top:10px; font-weight:bold; }
.alert-success { background: #d4edda; color: #155724; }
.alert-danger { background: #f8d7da; color: #721c24; }
.alert b { color: black; }
body {
background: radial-gradient(ellipse at center, #001f3f 0%, #000 100%);
color: white; font-family: 'Open Sans', sans-serif;
margin:0; padding:0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.tv-screen {
position: relative;
display: flex;
flex-direction: column;
background: #000;
border: 20px solid #444;
border-radius: 30px;
width: 650px;
height: 600px;
padding: 25px;
box-shadow: inset 0 0 30px #0ff, 0 0 20px #0ff;
overflow: hidden;
}
.gr-button.option {
margin: 10px 5px;
background:#003366;
color:white;
border-radius:8px;
min-width: 140px;
font-weight: bold;
font-size: 16px;
}
.gr-button.option:hover { background:#0052cc; }
.question-header {
font-size: 28px;
font-weight: bold;
background: rgba(0, 0, 0, 0.5);
padding: 20px;
text-shadow: 1px 1px 5px gold;
border: 2px solid #ffaa00;
border-radius: 10px;
text-align: center;
margin-bottom: 5px;
}
.level-tracker {
text-align: center;
color: gold;
font-weight: bold;
font-size: 18px;
margin-bottom: 8px;
}
.game-over-box {
top: 0; left: 0; right: 0; bottom: 0;
background-color: rgba(255, 255, 255, 0.95);
color: #000;
border-radius: 30px;
padding: 40px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: 'Open Sans', sans-serif;
font-size: 20px;
text-align: center;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
z-index: 10;
}
.game-over-box h2 {
font-size: 28px;
margin-bottom: 10px;
color: black;
}
.game-over-box p,strong {
font-size: 18px;
margin-bottom: 20px;
color: black;
}
"""
with gr.Blocks(css=custom_css, title="Word Quiz") as demo:
with gr.Column(elem_classes="tv-screen"):
gr.Markdown("## ๐ง Guess the Word!")
gr.HTML('<p style="color: white;">This space uses <a href="https://huggingface.co/datasets/tejasashinde/a2z-multidomain-glossary" target="_blank">tejasashinde/a2z-multidomain-glossary</a> dataset.</p>')
start_btn = gr.Button("๐ฎ Start Game")
mode_selector = gr.Radio(
choices=list(GAME_LENGTHS.keys()), label="Choose Mode", visible=False
)
proceed_btn = gr.Button("Proceed", visible=False)
level_text = gr.Markdown("Question 1", elem_classes="level-tracker", visible=False)
question_display = gr.Markdown("", elem_classes="question-header", visible=False)
with gr.Row():
b0 = gr.Button("", elem_classes="option", visible=False)
b1 = gr.Button("", elem_classes="option", visible=False)
with gr.Row():
b2 = gr.Button("", elem_classes="option", visible=False)
b3 = gr.Button("", elem_classes="option", visible=False)
feedback = gr.Markdown()
summary = gr.HTML(visible=False)
play_again_btn = gr.Button("๐ Play Again", visible=False)
end_game_btn = gr.Button("โน๏ธ End Game", visible=False)
# Logic connections
start_btn.click(
fn=show_mode_selection,
inputs=None,
outputs=[
start_btn,
mode_selector,
proceed_btn,
level_text,
question_display,
b0,
b1,
b2,
b3,
feedback,
summary,
play_again_btn,
end_game_btn,
],
)
proceed_btn.click(
fn=start_game,
inputs=mode_selector,
outputs=[
mode_selector,
proceed_btn,
level_text,
question_display,
b0,
b1,
b2,
b3,
feedback,
summary,
play_again_btn,
end_game_btn,
],
)
for btn in [b0, b1, b2, b3]:
btn.click(
fn=answer_question,
inputs=btn,
outputs=[
feedback,
question_display,
b0,
b1,
b2,
b3,
summary,
level_text,
play_again_btn,
end_game_btn,
],
)
play_again_btn.click(
fn=show_mode_selection,
inputs=None,
outputs=[
start_btn,
mode_selector,
proceed_btn,
level_text,
question_display,
b0,
b1,
b2,
b3,
feedback,
summary,
play_again_btn,
end_game_btn,
],
)
end_game_btn.click(
fn=end_game,
inputs=None,
outputs=[
feedback,
question_display,
b0,
b1,
b2,
b3,
summary,
level_text,
play_again_btn,
end_game_btn,
],
)
demo.launch()
|