-
Notifications
You must be signed in to change notification settings - Fork 0
/
pruefbogen.inc.php
216 lines (181 loc) · 8.05 KB
/
pruefbogen.inc.php
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
<?php
/*
* Copyright (C) 2001 Kai Blaschke <[email protected]>
*
* The included 'THW Thema' templates, logos and the Q&A catalog are protected
* by copyright laws, and must not be used without the written permission
* of the
*
* Bundesanstalt Technisches Hilfswerk
* Provinzialstraße 93
* D-53127 Bonn
* Germany
* E-Mail: [email protected]
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/*
*
* Vollständiger Prüfungsbogen mit zufälligen Fragen
*
*/
$tpl->parseBlock('page-body', 'NavBogen', 'Sublinks');
$tpl->addVars('navBogen', 'current');
if (isset($_REQUEST['create']) && $_REQUEST['create'] == '1') {
// Neuen Bogen erstellen
unset($_SESSION['bogen']);
// Werte initialisieren
$_SESSION['bogen']['StartTime'] = time();
$_SESSION['bogen']['Fragen'] = Array();
// Anz. Abschnitte und Fragen aus der DB holen
$sectionCount = getSingleResult('SELECT COUNT(*) FROM abschnitte WHERE Jahr = ?', array('i', $_SESSION['jahr']));
$stmt = $GLOBALS['db']->prepare('SELECT ID, Abschnitt FROM fragen WHERE Jahr = ? ORDER BY Abschnitt, Nr ASC');
$stmt->bind_param('i', $_SESSION['jahr']);
$stmt->execute();
$stmt->bind_result($questionId, $questionSection);
// Fragen in Array übertragen
while ($stmt->fetch()) {
$fragen[$questionId] = $questionSection;
}
$stmt->close();
// Gesamtanzahl Fragen
$count_ab = array_count_values($fragen);
// Eine Frage pro Themengebiet aus der DB holen
for ($i = 1; $i <= $sectionCount; $i++) {
$nr = rand(1, $count_ab[$i]);
$id = getSingleResult('SELECT ID FROM fragen WHERE Nr = ? AND Abschnitt = ? AND Jahr = ?',
array('iii', $nr, $i, $_SESSION['jahr']));
array_push($_SESSION['bogen']['Fragen'], (int)$id);
// Frage entfernen
unset($fragen[$id]);
}
// Restliche Fragen zufällig auffüllen
// Dazu verbliebene Keys von $fragen als Values in neues Array $fragen2 kopieren,
// da shuffle() die Keys verwirft!
$fragen2 = Array();
foreach ($fragen As $key => $value) {
array_push($fragen2, $key);
}
shuffle($fragen2);
for ($i = 0; $i < 40 - $sectionCount; $i++) {
array_push($_SESSION['bogen']['Fragen'], array_shift($fragen2));
}
// Fragen erneut mischen
shuffle($_SESSION['bogen']['Fragen']);
}
if (isset($_SESSION['bogen'])) {
if (isset($_POST['antwort'])) {
// Fragen beantwortet
$richtig = 0;
$falsch = 0;
$fragen_cnt = count($_SESSION['bogen']['Fragen']);
$zeit = time()-$_SESSION['bogen']['StartTime'];
for ($i = 0; $i < $fragen_cnt; $i++) {
$id = $_SESSION['bogen']['Fragen'][$i];
$solutionBitmask = getSingleResult('SELECT `Loesung` FROM `fragen` WHERE `ID` = ?',
array('i', $id));
$loesung = array( 1 => ( $solutionBitmask & 0x1),
2 => (($solutionBitmask & 0x2) >> 1),
3 => (($solutionBitmask & 0x4) >> 2));
if (isset($_POST['antwort'][$id])) {
$korrekt = (($loesung[1] == (isset($_POST['antwort'][$id][1]) ? $_POST['antwort'][$id][1] : 0))
&& ($loesung[2] == (isset($_POST['antwort'][$id][2]) ? $_POST['antwort'][$id][2] : 0))
&& ($loesung[3] == (isset($_POST['antwort'][$id][3]) ? $_POST['antwort'][$id][3] : 0)));
} else{
$korrekt = false;
}
if ($korrekt) {
$_SESSION["stats"]['Fragen_Richtig']++;
$richtig++;
} else {
$_SESSION["stats"]['Fragen_Falsch']++;
$falsch++;
}
$_SESSION["stats"]['Fragen_Bisher']++;
}
$_SESSION["stats"]['Boegen_Bisher']++;
if (($richtig / $fragen_cnt) >= 0.8)
$_SESSION["stats"]['Boegen_Bestanden']++;
else
$_SESSION["stats"]['Boegen_Durchgefallen']++;
$GLOBALS['db']->query('UPDATE statistik SET fragen=fragen+' . $fragen_cnt
.',richtig=richtig+' . $richtig
.',falsch=falsch+' . $falsch
.',boegen=boegen+1'
.',bestanden=bestanden+' . (($richtig / $fragen_cnt) >= 0.8?1:0)
.',durchgefallen=durchgefallen+' . (($richtig / $fragen_cnt) < 0.8?1:0));
$tpl->addTemplates('content', 'bogen-ende');
$tpl->addVars(Array(
'anzFragen' => count($_SESSION['bogen']['Fragen']),
'zeit' => sprintf('%02d:%02d\'%02d', $zeit / 3600, ($zeit/60)%60, $zeit%60),
'fragenRichtig' => $richtig,
'fragenRichtigQuote' => sprintf('%.2f %%', $richtig / $fragen_cnt * 100),
'fragenFalsch' => $falsch,
'fragenFalschQuote' => sprintf('%.2f %%', $falsch / $fragen_cnt * 100)
));
if (($richtig / $fragen_cnt) >= 0.8)
$tpl->parseBlock('content', 'Bestanden', 'Ja');
else
$tpl->parseBlock('content', 'Bestanden', 'Nein');
for ($i=0; $i<count($_SESSION['bogen']['Fragen']); $i++) {
if ($i>0 && $i%10==0) {
// 'Nach oben'-Zeile an Handle anhängen
$tpl->parseBlock('content', 'Aufloesung', 'Topline', TRUE);
}
Answer($_SESSION['bogen']['Fragen'][$i], $_POST['antwort'], FALSE);
$tpl->parseBlock('content', 'Aufloesung', 'Antwort', TRUE, TRUE);
}
unset($_SESSION['bogen']);
}
else {
// Fragen anzeigen
$tpl->addTemplates(Array(
'content' => 'bogen-fragen'
));
$tpl->addVars(Array(
'zeit' => date('G:i', $_SESSION['bogen']['StartTime'])
));
for ($i=0; $i<count($_SESSION['bogen']['Fragen']); $i++) {
if ($i>0 && $i%10==0) {
$tpl->parseBlock('content', 'Bogen', 'Topline', TRUE);
}
// Frage aus DB holen
$question = getQuestionById($_SESSION['bogen']['Fragen'][$i]);
$tpl->addVars(Array(
'frageIndex' => $i + 1,
'frageID' => $question['ID'],
'frageNr' => $question['Nr'],
'abschnittNr' => $question['Abschnitt'],
'frageText' => $question['Frage'],
'Antwort1' => $question['Antwort1'],
'Antwort2' => $question['Antwort2'],
'Antwort3' => $question['Antwort3']
));
if ($question['Antwort3'] == '') {
$tpl->addVars('rowCnt', '2');
$tpl->delBlockHandle('content', 'ThreeRows');
}
else {
$tpl->addVars('rowCnt', '3');
$tpl->parseBlock('content', 'ThreeRows', 'Row');
}
$tpl->parseBlock('content', 'Bogen', 'Frage', TRUE, TRUE);
}
}
}
else {
$tpl->addVars('navBogenNeu', 'current');
$tpl->addTemplates(Array('content' => 'bogen-start'));
}