-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
439 lines (355 loc) · 14.2 KB
/
main.py
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
import collections
import itertools
import os
import pickle
import random
import re
from typing import Optional
from xml.sax.saxutils import escape
import matplotlib.image as mpimg
import matplotlib.pyplot as plt
# Filter constants
IGNORE_REGIONAL = True
IGNORE_BINNEN = False
IGNORE_SEE = True
# Output constants
CREATE_RANDOMIZED_TXT = False
SAVE_QUESTIONS_FOR_SAILTRAINER = True
CREATE_XLSX = True
# Quiz constants
START_QUIZ = True
QUIZ_STATISTIC_WIDTH = 50
QUIZ_SAVE_FILE = "quiz_save.cfg"
class Question:
"""Eine Question besteht aus einer Frage und einer Liste von Antworten.
Die erste Antwort in der Liste ist die korrekte Antwort.
Grundsätzlich hat eine Frage vier Antworten.
"""
def __init__(self, question: str, identifier: int, no: int) -> None:
"""Initialisiere eine Frage.
Args:
question (str): Fragestellung.
identifier (int): Eindeutige Nummer der Frage.
no (int): Nummer der Frage innerhalb eines Topics.
"""
self.question = question
self.identifier = identifier
self.no = no
self.has_picture = False
# Erste Antwort muss korrekt sein.
self.answers: list[str] = []
# Variablen, die für das Quiz verwendet werden.
# Speichere die Reihenfolge der Entscheidungen.
# true: richtig, false: falsch
self.correct_guessed: list[bool] = []
@property
def correct_guess(self) -> int:
return sum(self.correct_guessed)
@property
def false_guess(self) -> int:
return len(self.correct_guessed) - self.correct_guess
@property
def weight(self) -> int:
weight = max(-1, self.correct_guess - self.false_guess)
if weight > 5:
return 0
if weight < 0:
return -weight * 15
return {
0: 12,
1: 11,
2: 5,
3: 3,
4: 2,
5: 1,
}[weight]
@property
def level(self) -> int:
return self.correct_guess - self.false_guess
@property
def picture_path(self) -> str:
assert self.has_picture
return f"sailtrainer/q{self.identifier}.png"
def __repr__(self) -> str:
return f"\n\nFRAGE :: {self.question}: \n" + "\n".join(self.answers)
def addAnswer(self, answer: str) -> None:
self.answers.append(answer)
class Topic:
"""Ein Topic besteht aus einer Liste von Fragen."""
def __init__(self) -> None:
self.questions: list[Question] = []
def addQuestion(self, question: Question) -> None:
self.questions.append(question)
def xshuffle(items: list) -> list:
"""Gebe eine Kopie einer Liste zurück, die zufällig sortiert ist.
Args:
items (list): Liste.
Returns:
list: Kopie einer zufällig sortierten Liste.
"""
shuffled_items = items.copy()
random.shuffle(shuffled_items)
return shuffled_items
# Lese die Topics und Fragen ein.
questions: list[Question] = []
topics: dict[str, list[Question]] = collections.defaultdict(list)
with open("data/20190127_DRK-WW_BD_Fragenkatalog.pdf.txt", "r", encoding="utf8") as f:
question = None
current_topic = None
answer_buffer: list[str] = []
for line in f:
# Bereinige die Zeile
line = line.removeprefix("\ufeff").replace("\t", " ").replace(" ", " ").strip()
# Prüfe, ob die Zeile ein neues Topic einleitet.
if m := re.match(r"^\# \d+ (.*)$", line):
if question is not None:
# Es gab vorher schon eine Frage.
# Speichere die letzte Frage in der Fragenliste.
if answer_buffer:
# Neue Frage, vorheriger Antwort speichern.
question.addAnswer(" :: ".join(answer_buffer))
# Antwort-Buffer leeren.
answer_buffer = []
# Vorherige Frage speichern.
assert (
len(question.answers) == 4
), f"Es sind nicht genau vier Antwortmöglichkeiten: {question.question}"
questions.append(question)
topics[current_topic].append(question)
question = None
current_topic = m.group(1)
continue
# Prüfe, ob die Zeile eine neue Frage einleitet.
if m := re.match(r"(^\d+) \((\d+)\) (.*)", line):
if question is not None:
# Es gab vorher schon eine Frage.
# Speichere die letzte Frage in der Fragenliste.
if answer_buffer:
# Neue Frage, vorheriger Antwort speichern.
question.addAnswer(" :: ".join(answer_buffer))
# Antwort-Buffer leeren.
answer_buffer = []
# Vorherige Frage speichern.
assert (
len(question.answers) == 4
), f"Es sind nicht genau vier Antwortmöglichkeiten: {question.question}"
questions.append(question)
topics[current_topic].append(question)
# Lege die neue Frage an.
identifier, no, question_text = m.groups()
question = Question(question_text, int(identifier), int(no))
continue
assert isinstance(
question, Question
), f"Es muss bereits eine Frage geben, {question.__class__.__name__}"
if line == "BILD FEHLT":
question.has_picture = True
continue
# Prüfe, ob die Frage eine neue Antwort beinhaltet.
if m := re.match(r"□ [ABCD] (.*)", line):
if answer_buffer:
# Neue Antwort, vorherige Antwort speichern.
question.addAnswer(" :: ".join(answer_buffer))
# Antwort-Buffer leeren.
answer_buffer = []
(answer_text,) = m.groups()
answer_buffer.append(answer_text)
continue
# Die vorherigen Fälle sind nicht eingetreten.
# Die Zeile gehört zur vorherigen Antwort.
# Nehme sie mit im Buffer auf.
assert answer_buffer, f"Es gibt noch keine Antwort zum Puffern. {line}"
answer_buffer.append(line)
if SAVE_QUESTIONS_FOR_SAILTRAINER:
with open("sailtrainer/drkwwfragen.xml", "w", encoding="utf8") as f:
f.writelines(
[
"<?xml version='1.0' standalone='yes'?>\n",
"<questionaire xmlns='http://sportboot.mobi/'>\n",
]
)
unique_id = 3000
question_id = 1
for _, (topic, questions) in enumerate(topics.items(), 1):
f.writelines([f"<topic id='{unique_id}' name='{escape(topic)}'>\n"])
unique_id += 1
for _, question in enumerate(questions):
assert len(question.answers) == 4
f.writelines(
[
f" <question id='{unique_id}' reference='{question_id}'>\n",
f" <text>{escape(question.question)}</text>\n",
f" <correct>{escape(question.answers[0])}</correct>\n",
f" <incorrect>{escape(question.answers[1])}</incorrect>\n",
f" <incorrect>{escape(question.answers[2])}</incorrect>\n",
f" <incorrect>{escape(question.answers[3])}</incorrect>\n",
" </question>\n",
]
)
unique_id += 1
question_id += 1
f.writelines(["</topic>\n"])
f.writelines(["</questionaire>\n"])
if CREATE_XLSX:
import xlsxwriter
workbook = xlsxwriter.Workbook('questions.xlsx')
for i, (topic, questions) in enumerate(topics.items(), 1):
worksheet = workbook.add_worksheet(f"{i:02} {topic}")
worksheet.write(0, 0, "#")
worksheet.write(0, 1, "Frage")
worksheet.write(0, 3, "Antwort A")
worksheet.write(0, 4, "Antwort B")
worksheet.write(0, 5, "Antwort C")
worksheet.write(0, 6, "Antwort D")
for row, question in enumerate(questions, 2):
worksheet.write(row, 0, question.no)
worksheet.write(row, 1, question.question)
worksheet.write(row, 3, question.answers[0])
worksheet.write(row, 4, question.answers[1])
worksheet.write(row, 5, question.answers[2])
worksheet.write(row, 6, question.answers[3])
workbook.close()
if IGNORE_REGIONAL:
topics = {key: value for key, value in topics.items() if "Regional" not in key}
if IGNORE_BINNEN:
del topics["Besonderheiten Binnen"]
if IGNORE_SEE:
del topics["Besonderheiten See"]
if CREATE_RANDOMIZED_TXT:
for i in range(5):
random.shuffle(questions)
with open(f"random-{i}.txt", "w", encoding="utf8") as f:
f.write(
"\n\n".join(
f"{q.question}\n"
+ "\n".join(
f"{i}) {a}" for i, a in enumerate(xshuffle(q.answers), 1)
)
for q in questions
)
)
def ask_question(question: Question) -> Optional[bool]:
print()
print()
print(question.question)
# Schreibe die Antworten in zufälliger Reihenfolge.
answer_idxs = [i for i in range(len(question.answers))]
shuffled_answer_idxs = xshuffle(answer_idxs)
# Die erste Antwort ist immer richtig.
correct_answer_idx = shuffled_answer_idxs.index(0)
for answer_idx, shuffled_answer_idx in zip(answer_idxs, shuffled_answer_idxs):
answer_text = question.answers[shuffled_answer_idx]
answer_text = answer_text.replace(" :: ", "\n ")
print(f"{answer_idx+1}. {answer_text}")
print("Antwort: 1-4, Beenden: q, ID ausgeben: i")
first_try_correct = True
while True:
try:
input_ = input("Eingabe: ")
except KeyboardInterrupt:
return None
if input_ in ("q", "quit"):
return None
if input_ in ("i", "id"):
print(f"Die Id lautet {question.identifier}.")
continue
try:
input_idx = int(input_) - 1
except ValueError:
# Erneute Eingabe!
continue
if input_idx >= 0 and input_idx < len(question.answers):
# Die Eingabe ist zulässig.
# Werte die Antwort aus.
if input_idx == correct_answer_idx:
return first_try_correct
# Wenn es beim ersten Mal nicht geklappt hat, muss der Nutzer es erneut versuchen.
# Die Antwort zählt dann aber nicht mehr als richig.
first_try_correct = False
print(f"Die richtige Antwort wäre {correct_answer_idx + 1} gewesen.")
else:
# Ansonsten erfolgt eine erneute Eingabe.
continue
def print_quiz_statistic(questions: list[Question]) -> None:
n = len(questions)
question_levels = [q.level for q in questions]
statistic = collections.Counter(question_levels)
for level in sorted(statistic):
count = statistic[level]
width = QUIZ_STATISTIC_WIDTH * count // n
spaces = QUIZ_STATISTIC_WIDTH - width
bar = width * "#" + spaces * " "
rel = round(count * 100 / n)
if level == 0:
add = f" - {round(sum(c for i, c in statistic.items() if i <= 0) * 100 / n)} %"
elif level == 1:
add = f" - {round(sum(c for i, c in statistic.items() if i > 0) * 100 / n)} %"
else:
add = ""
print(f"Level {level:3}: {count:4} / {n} |{bar}| {rel:3} %{add}")
print(
"Das Level bestimmt sich je Frage "
"durch die Anzahl der richtigen Antworten "
"minus die Anzahl der falschen Antworten."
)
if START_QUIZ:
all_questions = list(itertools.chain(*topics.values()))
# Letzten Stand aus Speicherdatei einlesen.
ignored_save_point = []
if os.path.isfile(QUIZ_SAVE_FILE):
with open(QUIZ_SAVE_FILE, "rb") as fp:
save_point = pickle.load(fp)
for s in save_point:
identifier = s[0]
try:
question = next(
q for q in all_questions if identifier == q.identifier
)
except StopIteration:
# Die Frage, die zu dem Savepoint gehört, wurde durch
# Filter ignoriert und hat hier keine Anwendung.
# Speichere den Stand, um ihn dem neuen Speicherstand
# wieder anzufügen.
ignored_save_point.append(s)
continue
# Neues Format, indem die Reihenfolge der Entscheidungen
# gemerkt wird.
if len(s) == 2:
_, question.correct_guessed = s
# Altes Format, indem nur die Zahlen der richtigen und falschen
# Entscheidungen gemerkt wurde.
elif len(s) == 3:
_, correct_guess, false_guess = s
question.correct_guessed = correct_guess * [True] + false_guess * [
False
]
print("Dein Fortschritt wurde geladen...")
print_quiz_statistic(all_questions)
while True:
# Wähle eine Frage zufällig aus.
# Je häufiger die Frage richtig beantwortet wurde, desto seltener
# wird sie gewählt.
question_weights = [q.weight for q in all_questions]
question = random.choices(all_questions, weights=question_weights, k=1)[0]
img = None
if question.has_picture:
img = mpimg.imread(question.picture_path)
imgplot = plt.imshow(img)
plt.show(block=False)
guess = ask_question(question)
if guess is None:
break
elif isinstance(guess, bool):
question.correct_guessed.append(guess)
else:
raise NotImplementedError
plt.close("all")
print("\n\n")
# Stand in Speicherdatei sichern.
save_point = [
(q.identifier, q.correct_guessed) for q in all_questions
] + ignored_save_point
with open(QUIZ_SAVE_FILE, "wb") as fp:
pickle.dump(save_point, fp)
print("Dein Fortschritt wurde gespeichert.")
print_quiz_statistic(all_questions)