-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
334 lines (288 loc) · 13.5 KB
/
index.html
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Matrix-Multiplikationsspiel</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Matrix-Multiplikationsspiel</title>
<link rel="manifest" href="manifest.json">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="Matrix Multiplikationsspiel">
<meta name="application-name" content="Matrix Multiplikationsspiel">
<meta name="description" content="Ein Spiel zur Übung der Multiplikation von Matrizen.">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<meta name="theme-color" content="#0071F0">
<link rel="stylesheet" href="./assets/css/style.css">
<script id="MathJax-script" async src="./assets/libraries/mathjax/es5/tex-chtml.js"></script>
</head>
<body>
<div class="container">
<h1>Max-Matrix-Multiplikationsspiel</h1>
<p>Multipliziere Matrix A und Matrix B!</p>
<div id="shareIcon">
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-share" width="24" height="24"
viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round"
stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path d="M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"></path>
<path d="M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"></path>
<path d="M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0"></path>
<path d="M8.7 10.7l6.6 -3.4"></path>
<path d="M8.7 13.3l6.6 3.4"></path>
</svg>
</div>
<div class="matrix-container">
<div>
<div class="matrix-label">Matrix A</div>
<div class="matrix" id="matrixA"></div>
</div>
<div>
<div class="matrix-label">Matrix B</div>
<div class="matrix" id="matrixB"></div>
</div>
</div>
<form id="matrixForm">
<div>
<input type="text" class="input-field" id="answer00" placeholder="C [1][1]">
<input type="text" class="input-field" id="answer01" placeholder="C [1][2]">
</div>
<div>
<input type="text" class="input-field" id="answer10" placeholder="C [2][1]">
<input type="text" class="input-field" id="answer11" placeholder="C [2][2]">
</div>
</form>
<button id="submitButton" onclick="checkAnswer()">Prüfen</button>
<div id="correct-message"></div>
<div id="wrong-message"></div>
<div id="score">Punktestand: 0</div>
<div id="qrCodePopup">
<img src="./assets/images/qr.png" alt="QR Code">
<button id="closePopup">Schließen</button>
</div>
<a id="openLegal">Rechtliches</a>
<div id="legalPopup">
<h3>Impressum</h3>
<p>Max Oppermann</p>
<p>Lindholz, 9</p>
<p>31139 Hildesheim</p>
<br>
<p>Icons von <a href="https://tablericons.com/" target="_blank">Tabler Icons</a> <br>(MIT license)</p>
<p>MathJax von <a href="https://www.mathjax.org/" target="_blank">MathJax</a> wird genutzt um die Matritzen in den Klammern anzuzeigen. <br>(Apache-2.0 license)</p>
<button id="closeLegal">Schließen</button>
</div>
</div>
<script>
let matrixA, matrixB, correctAnswers, score = 0;
// Punktestand aus dem lokalen Speicher laden, wenn die Seite geladen wird.
if (localStorage.getItem('score') !== null) {
score = parseInt(localStorage.getItem('score'));
document.getElementById("score").textContent = `Punktestand: ${score}`;
}
function generateMatrix() {
const rows = 2;
const cols = 2;
matrixA = generateRandomMatrix(rows, cols);
matrixB = generateRandomMatrix(cols, rows);
correctAnswers = multiplyMatrices(matrixA, matrixB);
console.log("Richtige Antwort: ", correctAnswers);
}
function generateRandomMatrix(rows, cols) {
const matrix = [];
for (let i = 0; i < rows; i++) {
const row = [];
for (let j = 0; j < cols; j++) {
row.push(Math.floor(Math.random() * 10));
}
matrix.push(row);
}
return matrix;
}
function multiplyMatrices(matrixA, matrixB) {
const rowsA = matrixA.length;
const colsA = matrixA[0].length;
const rowsB = matrixB.length;
const colsB = matrixB[0].length;
if (colsA !== rowsB) {
throw new Error("Inkompatible Matrizen für die Multiplikation");
}
const result = [];
for (let i = 0; i < rowsA; i++) {
result[i] = [];
for (let j = 0; j < colsB; j++) {
result[i][j] = 0;
for (let k = 0; k < colsA; k++) {
result[i][j] += matrixA[i][k] * matrixB[k][j];
}
}
}
return result;
}
function displayMatrix(matrix, elementId, label) {
const div = document.getElementById(elementId);
let matrixHTML = `<div class="matrix-label">\\(${label}\\)`;
matrixHTML += ` = \\(\\begin{bmatrix}`;
for (let i = 0; i < matrix.length; i++) {
for (let j = 0; j < matrix[i].length; j++) {
matrixHTML += matrix[i][j];
if (j < matrix[i].length - 1) {
matrixHTML += "&";
}
}
if (i < matrix.length - 1) {
matrixHTML += "\\\\";
}
}
matrixHTML += `\\end{bmatrix}\\)</div>`;
div.innerHTML = matrixHTML;
// Render LaTeX using MathJax
if (window.MathJax) {
MathJax.typesetPromise();
}
}
function checkAnswer() {
document.getElementById("submitButton").disabled = true;
const userAnswers = [];
for (let i = 0; i < 2; i++) {
userAnswers.push([]);
for (let j = 0; j < 2; j++) {
const inputId = `answer${i}${j}`;
const userInput = parseInt(document.getElementById(inputId).value);
userAnswers[i].push(userInput);
}
}
const isCorrect = userAnswers.toString() === correctAnswers.toString();
if (isCorrect) {
document.getElementById("correct-message").textContent = "Richtig!";
document.getElementById("wrong-message").textContent = "";
score++;
document.getElementById("score").textContent = `Punktestand: ${score}`;
localStorage.setItem('score', score.toString());
setTimeout(() => {
document.getElementById("correct-message").textContent = "";
generateMatrix();
displayMatrix(matrixA, "matrixA", "A");
displayMatrix(matrixB, "matrixB", "B");
resetInputFields();
document.getElementById("submitButton").disabled = false;
}, 1000);
} else {
document.getElementById("wrong-message").textContent = "Falsch. Versuche es erneut.";
document.getElementById("correct-message").textContent = "";
// Makiere die falschen Antworten in rot und gibt ihn eine Flash animation
try {
inputField.classList.remove("wrong-answer");
}
catch (e) {
console.log("Keine falschen Antworten zu enfernen");
}
for (let i = 0; i < 2; i++) {
for (let j = 0; j < 2; j++) {
const inputId = `answer${i}${j}`;
const userInput = parseInt(document.getElementById(inputId).value);
if (userInput !== correctAnswers[i][j]) {
const inputField = document.getElementById(inputId);
inputField.classList.add("wrong-answer");
inputField.classList.add("red-flash");
// Enferne die klasse nach 500ms
setTimeout(() => {
inputField.classList.remove("red-flash");
}, 500);
}
}
}
document.getElementById("submitButton").disabled = false;
}
}
function resetInputFields() {
for (let i = 0; i < 2; i++) {
for (let j = 0; j < 2; j++) {
const inputId = `answer${i}${j}`;
document.getElementById(inputId).value = "";
}
}
}
generateMatrix();
displayMatrix(matrixA, "matrixA", "A");
displayMatrix(matrixB, "matrixB", "B");
// Findet alle input-Felder
const inputFields = document.querySelectorAll('.input-field');
// Fügt die Eventlistener für jedes Feld hinzu
inputFields.forEach(inputField => {
inputField.addEventListener('input', function () {
// enferne alle nicht-numerischen Zeichen
const numericValue = this.value.replace(/[^0-9]/g, '');
// aktualisiert den Wert des Feldes mit der numerischen Version
this.value = numericValue;
try {
this.classList.remove("wrong-answer");
}
catch (e) {
console.log("Keine falschen Antworten zu enfernen");
}
});
});
</script>
<script>
// Überprüfen, ob die App bereits installiert ist
window.addEventListener('appinstalled', (evt) => {
// Deaktiviert die Installations-Schaltfläche, wenn die App installiert ist
document.getElementById('installButton').disabled = true;
});
let deferredPrompt;
let installButtonCreated = false;
window.addEventListener('beforeinstallprompt', (e) => {
// Verhindert das Standard-Browser-Installations-Popup
e.preventDefault();
// Speichert das Ereignis für spätere Verwendung
deferredPrompt = e;
// Zeigen die benutzerdefinierte Installations-Schaltfläche an oder fordert den Benutzer zur Installation auf
if (!installButtonCreated) {
const installButton = document.createElement('button');
installButton.textContent = 'PWA installieren';
installButton.id = 'installButton'; // Geben Sie der Schaltfläche eine ID für die Gestaltung
installButton.addEventListener('click', () => {
// Zeigen das Installations-Popup des Browsers an
deferredPrompt.prompt();
// Wartet auf die Antwort des Benutzers auf die Aufforderung
deferredPrompt.userChoice.then((choiceResult) => {
if (choiceResult.outcome === 'accepted') {
console.log('Benutzer hat die PWA-Installation akzeptiert');
} else {
console.log('Benutzer hat die PWA-Installation abgelehnt');
}
// Setzen Sie die deferredPrompt-Variable zurück
deferredPrompt = null;
});
});
// Fügt Sie die Installations-Schaltfläche hinzu
document.body.appendChild(installButton);
installButtonCreated = true;
}
});
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('service-worker.js')
.then(registration => console.log('Service Worker mit Geltungsbereich registriert:', registration.scope))
.catch(error => console.error('Registrierung des Service Workers fehlgeschlagen:', error));
});
}
document.getElementById('shareIcon').addEventListener('click', function () {
document.getElementById('qrCodePopup').style.display = 'block';
});
document.getElementById('closePopup').addEventListener('click', function () {
document.getElementById('qrCodePopup').style.display = 'none';
});
document.getElementById('openLegal').addEventListener('click', function () {
document.getElementById('legalPopup').style.display = 'block';
});
document.getElementById('closeLegal').addEventListener('click', function () {
document.getElementById('legalPopup').style.display = 'none';
});
</script>
</body>
</html>