-
Notifications
You must be signed in to change notification settings - Fork 0
/
giftforstash.html
336 lines (307 loc) · 13.4 KB
/
giftforstash.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
335
336
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<script src="js/menu.js"></script>
<script src="js/html2canvas.min.js"></script>
<script src="js/clipboard.min.js"></script>
<script src="js/filesaver.min.js"></script>
<title>Gift for stash</title>
</head>
<body>
<style>
input[name="code_weight[]"] {
width: 50px;
}
</style><main>
<div w3-include-html="navigation.html"></div>
<h2>Generator für Stash-Packs</h2>
<div class="box">
<img src="media/pic/stash.png" style="min-width:200px;width:50%">
<p>Dieses Script generiert für den Block Stash in mebis Multiple-Choice-Fragen. Anstatt einzelne Stash-Objekte im Kurs zu platzieren,
können ganze Packs mit der Aktivität Lektion verteilt werden.</p>
<script>
function randnum(length) {
return Math.floor(Math.random() * length);
}
// Array für die Codes
var codes = [];
// angezeigte Optionen in der Frage
var message = "Wähle mich!";
// Mittelung zum Sammeln der Stash-Objekte
var pickup = "Sammle mich!"
// Anzahl der zu generierenden Fragen
var anzahl;
// Anzahl der Antwortoptionen pro Frage
var optionen;
// Funktion zum Hinzufügen eines neuen Inputfelds
function addInput() {
var inputContainer = document.getElementById("input-container");
var newInput = document.createElement("input");
newInput.type = "text";
newInput.name = "code[]";
var newInputweight = document.createElement("input");
newInputweight.type = "number";
newInputweight.name = "code_weight[]";
newInputweight.value = "1";
inputContainer.appendChild(newInput);
inputContainer.appendChild(newInputweight);
var lineBreak = document.createElement("br");
inputContainer.appendChild(lineBreak);
}
// Funktion zum Generieren der Fragen
function generateQuestions() {
// Array mit den eingegebenen Codes und Gewichten erstellen
var codeInputs = document.getElementsByName("code[]");
var weightInputs = document.getElementsByName("code_weight[]");
var codes = [];
var weights = [];
// Codes und Gewichte aus den Input-Feldern auslesen und in Arrays speichern
for (var i = 0; i < codeInputs.length; i++) {
codes.push(codeInputs[i].value);
weights.push(parseInt(weightInputs[i].value));
}
// Anzahl der jeweiligen Codes um das entsprechende Gewicht erhöhen
for (var i = 0; i < codes.length; i++) {
for (var j = 0; j < weights[i]; j++) {
codes.push(codes[i]);
}
}
console.log(codes);
// Das ursprüngliche Array mit den Codes kann nun entfernt werden
codes.splice(0, codeInputs.length);
// Anzahl der Antwortoptionen aktualisieren
optionen = document.getElementById("optionen-auswahl").value;
// Anzahl der Fragen aktualisieren
anzahl = document.getElementById("anzahl-auswahl").value;
// Checkbox-Status überprüfen
var keineDoppeltenObjekte = document.getElementById("keine-doppelten-objekte").checked;
// Fragen generieren
var fragenContainer = document.getElementById("fragen-container");
fragenContainer.innerHTML = ""; // Löschen des Inhalts des Containers
for (var i = 1; i <= anzahl; i++) {
var frage = document.createElement("p");
frage.innerHTML = "::Frage" + i + "::<br>Wähle eine Option aus.{<br>";
for (var j = 0; j < optionen; j++) {
var addstr = "";
if (j > 0) addstr = "~";
var antwort = document.createElement("span");
antwort.innerHTML += addstr + "=" + document.getElementById("optionen-beschriftung").value + "#";
var anzahl_stashdrop = document.getElementById("anzahl-stashdrop").value;
var selectedCodes = [];
for (var k = 0; k < anzahl_stashdrop; k++) {
pickup = document.getElementById("pickup-mitteilung").value;
var selectedCode = keineDoppeltenObjekte ? removeRandomCode(codes) : codes[randnum(codes.length)];
selectedCodes.push(selectedCode);
antwort.innerHTML += "[stashdrop secret\\=\"" + selectedCode + "\" text\\=\"" + pickup + "\" image]";
}
antwort.innerHTML += "<br>";
frage.appendChild(antwort);
if (keineDoppeltenObjekte) {
// Füge die verwendeten Codes zurück in das Array ein
codes = codes.concat(selectedCodes);
}
}
var endbr = document.createElement("span");
endbr.innerHTML = "}<br>";
frage.appendChild(endbr);
fragenContainer.appendChild(frage);
}
var myFile = new File([fragenContainer.innerText], "GIFTforStash.txt", { type: "text/plain;charset=utf-8" });
saveAs(myFile);
}
// Funktion, um zufälligen Code aus dem Array zu entfernen und zurückzugeben
function removeRandomCode(codesArray) {
if (codesArray.length === 0) {
return ""; // Wenn keine Codes mehr übrig sind, gib einen leeren String zurück
}
var index = randnum(codesArray.length);
var removedCode = codesArray.splice(index, 1)[0];
return removedCode;
}
</script>
<!-- Dateiupload -->
<div id="box">
<p>Codes per Datei hochladen: <input type="file" id="file-input" onchange="handleFileUpload()"></p>
<details>
<summary>Dateiformat</summary>
<ul>
<li>Lade eine Datei mit einer Liste der secret-Codes hoch (eine Zeile ein Code, Gewichtung mit Komma getrennt
eintragen).<br><br>Beispiel:<br>Ztn87,4<br>6hdhn,2<br>Ize45hn,3<br><br></li>
<li>Oder lade eine Datei mit einer Liste der Shortcodes hoch (eine Zeile ein Shortcode, Gewichtung direkt
dahinter eintragen).<br><br>Beispiel:<br>[stashdrop secret="Ztn87" text="Pick up!" image]4<br>[stashdrop
secret="6hdhn" text="Pick up!" image]2<br>[stashdrop secret="Ize45hn text="Pick up!" image]3</li>
</ul>
</details><br>
<!-- Inputfelder für die Codes -->
<div style="display: flex">
<div id="input-container">
<input type="text" name="code[]" value=""><input type="number" name="code_weight[]" value="1"><br>
<input type="text" name="code[]" value=""><input type="number" name="code_weight[]" value="1"><br>
</div>
</div><br>
<button onclick="addInput()">Weiteren Code hinzufügen</button>
<!-- Eingabefeld für die Beschriftung der Optionen -->
<p>Text für die einzelnen Optionen in der Fragestellung:</p>
<input id="optionen-beschriftung" type="text" value="Wähle mich!">
<!-- Eingabefeld für die Beschriftung der Optionen -->
<p>Text für das Einsammeln der Stash-Objekte:</p>
<input id="pickup-mitteilung" type="text" value="Sammle mich!">
<!-- Auswahlfeld für die Anzahl der Antwortoptionen -->
<p>Anzahl Packs zur Auswahl:</p>
<input id="optionen-auswahl" type="number" min="1" max="10" value="5">
<!-- Auswahlfeld für die Anzahl der Objekte pro Auswahl -->
<p>Anzahl der Objekte pro Pack:</p>
<input type="number" id="anzahl-stashdrop" name="anzahl-stashdrop" min="0" max="20" value="5">
<!-- Checkbox für keine doppelten Objekte -->
<p><input type="checkbox" id="keine-doppelten-objekte" checked> Keine doppelten Objekte pro Option (gilt nur bei
Gewichtung = 1)</p>
<!-- Auswahlfeld für die Anzahl der Fragen -->
<p>Anzahl der zu generierenden Fragen:</p>
<input id="anzahl-auswahl" type="number" min="1" max="30" value="1">
<!-- Button zum Generieren der Fragen -->
<br><br><button onclick="generateQuestions()">Fragen generieren</button>
<!-- Container für die generierten Fragen -->
<div id="fragen-container"></div>
</div>
</div>
<script>
function addInput() {
var inputContainer = document.getElementById("input-container");
var newInput = document.createElement("input");
newInput.type = "text";
newInput.name = "code[]";
var newInputweight = document.createElement("input");
newInputweight.type = "number";
newInputweight.name = "code_weight[]";
newInputweight.value = "1";
inputContainer.appendChild(newInput);
inputContainer.appendChild(newInputweight);
var lineBreak = document.createElement("br");
inputContainer.appendChild(lineBreak);
}
function handleFileUpload() {
var fileInput = document.getElementById("file-input");
var file = fileInput.files[0];
var reader = new FileReader();
reader.readAsText(file);
reader.onload = function (event) {
var inputContainer = document.getElementById("input-container");
var codes = [];
var weights = [];
var secrets = [];
var text = event.target.result;
if (text.indexOf("[stashdrop") !== -1) {
// Shortcode format
codes = text.split("\n");
for (var i = 0; i < codes.length; i++) {
var weight = 1;
var secret = "";
var commaIndex = codes[i].indexOf("]");
if (commaIndex !== -1) {
var weightStr = codes[i].substring(commaIndex + 1);
if (weightStr.trim() !== "") {
weight = parseInt(weightStr);
}
codes[i] = codes[i].substring(0, commaIndex);
}
// Extrahiere den Wert des Secrets mit Regular Expressions
var secretRegex = /secret="(.*?)"/;
var match = codes[i].match(secretRegex);
if (match !== null) {
secret = match[1];
}
weights.push(weight);
secrets.push(secret);
if (i >= 2) {
// Nur neue Input-Felder füllen
var newInput = document.createElement("input");
newInput.type = "text";
newInput.name = "code[]";
newInput.value = secret;
var newInputweight = document.createElement("input");
newInputweight.type = "number";
newInputweight.name = "code_weight[]";
newInputweight.value = weight;
inputContainer.appendChild(newInput);
inputContainer.appendChild(newInputweight);
var lineBreak = document.createElement("br");
inputContainer.appendChild(lineBreak);
}
}
// Die ersten beiden Werte in die zwei existrierenden Inputs füllen
var existingInputs = document.querySelectorAll("#input-container input.existing-input");
for (var i = 0; i < 2 && i < existingInputs.length && i < codes.length; i++) {
existingInputs[i].value = secrets[i];
};
var existingInputs = document.querySelectorAll("#input-container input.existing-weight");
for (var i = 0; i < 2 && i < existingInputs.length && i < codes.length; i++) {
existingInputs[i].value = weights[i];
}
// Die ersten beiden Werte entfernen
codes.splice(0, 2);
weights.splice(0, 2);
} else {
// CSV format
codes = text.split("\n");
for (var i = 0; i < codes.length; i++) {
var weight = 1;
var commaIndex = codes[i].indexOf(",");
if (commaIndex !== -1) {
var weightStr = codes[i].substring(commaIndex + 1);
if (weightStr.trim() !== "") {
weight = parseInt(weightStr);
}
codes[i] = codes[i].substring(0, commaIndex);
}
weights.push(weight);
if (i >= 2) {
// Nur neue Input-Felder füllen
var newInput = document.createElement("input");
newInput.type = "text";
newInput.name = "code[]";
newInput.value = codes[i];
var newInputweight = document.createElement("input");
newInputweight.type = "number";
newInputweight.name = "code_weight[]";
newInputweight.value = weight;
inputContainer.appendChild(newInput);
inputContainer.appendChild(newInputweight);
var lineBreak = document.createElement("br");
inputContainer.appendChild(lineBreak);
}
}
// Die ersten beiden Werte in die zwei existrierenden Inputs füllen
var existingInputs = document.querySelectorAll("#input-container input.existing-input");
for (var i = 0; i < 2 && i < existingInputs.length && i < codes.length; i++) {
existingInputs[i].value = codes[i];
};
var existingInputs = document.querySelectorAll("#input-container input.existing-weight");
for (var i = 0; i < 2 && i < existingInputs.length && i < codes.length; i++) {
existingInputs[i].value = weights[i];
}
// Die ersten beiden Werte entfernen
codes.splice(0, 2);
weights.splice(0, 2);
}
}
}
// Existierende Inputs markieren
var existingInputs = document.getElementsByName("code[]");
for (var i = 0; i < existingInputs.length; i++) {
existingInputs[i].classList.add("existing-input");
};
var existingInputs = document.getElementsByName("code_weight[]");
for (var i = 0; i < existingInputs.length; i++) {
existingInputs[i].classList.add("existing-weight");
}
</script>
</main>
<div w3-include-html="footer.html"></div>
<script>
includeHTML();
</script>
</body>
</html>