-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
465 lines (384 loc) · 17.5 KB
/
script.js
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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
// Dieser Code ist das Ergebnis einer einzigartigen Zusammenarbeit zwischen einem menschlichen Entwickler und künstlicher Intelligenz (OpenAI GPT-3.5).
// Die initiale Struktur und die grundlegenden Konzepte wurden durch die KI vorgeschlagen und bereitgestellt, während die detaillierte Ausarbeitung,
// Optimierung und Anpassung an spezifische Anforderungen durch die menschliche Expertise erfolgten. Diese Synergie ermöglichte eine effiziente
// Problemlösung und die Realisierung kreativer Ideen.
// This code was initially generated with the assistance of OpenAI's GPT-3.5, a powerful language model, and subsequently
// reviewed and refined by a developer to ensure functionality, efficiency, and adherence to best practices.
document.addEventListener("DOMContentLoaded", function () {
const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');
const listBody = document.getElementById('listBody');
const container = document.getElementById('container');
const drawPortalSymbolRadius = 10;
// Globale Variablen für Farbeinstellungen
let portalColor = '#FFFF00'; // Standardfarbe für Portale
let portalTransparency = 1;
let linkColor = '#FFFF00'; // Standardfarbe für Links
let linkTransparency = 1;
let fieldColor = '#FFFF00'; // Standardfarbe für Felder
let fieldTransparency = 0.15;
let highlightColor = '#FFFFFF'; // Standardfarbe für Felder
let highlightTransparency = 0.5;
let portals = [];
let links = [];
let fields = [];
let sortClockwise = true;
function sortPortalsRadially(reverse = false) {
// debugger;
if (portals.length === 0)
return;
const center = portals[0];
portals = portals.slice(1).sort((a, b) => {
const angleA = Math.atan2(a.y - center.y, a.x - center.x);
const angleB = Math.atan2(b.y - center.y, b.x - center.x);
return reverse ? angleB - angleA : angleA - angleB;
});
portals.unshift(center); // Füge das Zentrum wieder hinzu
// for (let i = 0; i < portals.length; i++) {
// portals[i].index = i;
// };
// deleteAllLinks();
// // redrawPortals(); // already done in deleteAllLinks();
// updateList();
// const autoConnectCheck = document.getElementById('autoConnectCheck');
// if (autoConnectCheck.checked) {
// // Wenn ja, rufe die Funktion zum Verbinden der Portale auf
// createLinks();
// }
updateIndexesAndUI();
sortClockwise = !reverse;
}
function rotatePortalsLeft() {
if (portals.length > 0) {
portals.push(portals.shift()); // Verschiebt das erste Element ans Ende
updateIndexesAndUI();
}
}
function rotatePortalsRight() {
if (portals.length > 0) {
portals.unshift(portals.pop()); // Verschiebt das letzte Element an den Anfang
updateIndexesAndUI();
}
}
function updateIndexesAndUI(force = false) {
for (let i = 0; i < portals.length; i++) {
portals[i].index = i;
}
deleteAllLinks();
updateList();
// Überprüfe, ob Portale sofort verbunden werden sollen
const autoConnectCheck = document.getElementById('autoConnectCheck');
if (autoConnectCheck.checked || force) {
createLinks();
}
}
// returns true if the line from (a,b)->(c,d) intersects with (p,q)->(r,s)
function intersects(a, b, c, d, p, q, r, s) {
var det,
gamma,
lambda;
det = (c - a) * (s - q) - (r - p) * (d - b);
if (det === 0) {
return false;
} else {
lambda = ((s - q) * (r - a) + (p - r) * (s - b)) / det;
gamma = ((b - d) * (r - a) + (c - a) * (s - b)) / det;
return (0 < lambda && lambda < 1) && (0 < gamma && gamma < 1);
}
};
function connectPortalsWithLine(newPortal) {
for (let i = 0; i < newPortal.index; i++) {
let intersect = false;
// Prüfe für jede bestehende Verbindung, ob die geplante Verbindung
// von Portal i zum neuen Portal eine bestehende Verbindung kreuzen würde.
for (let link of links) {
if (intersects(portals[i].x, portals[i].y, newPortal.x, newPortal.y,
portals[link.source].x, portals[link.source].y, portals[link.target].x, portals[link.target].y)) {
intersect = true;
break; // Beende die Schleife, da eine Kreuzung gefunden wurde
}
}
if (!intersect) {
// Keine Kreuzung gefunden, zeichne die Linie
ctx.strokeStyle = hexToRGBA(linkColor, linkTransparency);
ctx.beginPath();
ctx.moveTo(portals[i].x, portals[i].y);
ctx.lineTo(newPortal.x, newPortal.y);
ctx.stroke();
const newLink = {
source: i,
target: newPortal.index
}
links.push(newLink);
// debugger;
// Nachdem der Link erstellt wurde, prüfe auf mögliche Felder
checkForNewFields(newLink);
}
}
}
function createLinks() {
deleteAllLinks(); // Zurücksetzen vorhandener Links
// Logik zum Verbinden der Portale hier einfügen...
for (let portal of portals) {
// Verbinde das neue Portal mit früheren Portalen, ohne Regel §1 zu verletzen
connectPortalsWithLine(portal);
};
}
function deleteAllLinks() {
links = []; // Lösche alle Links
fields = [];
redrawPortals(); // Neuzeichnen ohne Links
}
function deleteAllPortals() {
links = [];
portals = [];
redrawPortals();
updateList();
}
document.getElementById('sortPortals').addEventListener('click', () => sortPortalsRadially(sortClockwise));
// document.getElementById('reverseSort').addEventListener('click', () => sortPortalsRadially());
document.getElementById('connectPortals').addEventListener('click', createLinks);
document.getElementById('deleteLinks').addEventListener('click', deleteAllLinks);
document.getElementById('deletePortals').addEventListener('click', deleteAllPortals);
document.getElementById('rotateLeftBtn').addEventListener('click', rotatePortalsLeft);
document.getElementById('rotateRightBtn').addEventListener('click', rotatePortalsRight);
// Anpassung der Canvas-Größe
function resizeCanvas() {
canvas.width = container.offsetWidth * 0.6; // 60% der Containerbreite
canvas.height = container.offsetHeight; // Kann auf 100% der Containerhöhe gesetzt werden oder angepasst werden
}
window.addEventListener('resize', resizeCanvas);
resizeCanvas();
canvas.addEventListener('mousedown', function (event) {
if (event.button === 0) { // Linksklick
addPortal(event.offsetX, event.offsetY);
} else if (event.button === 2) { // Rechtsklick
removePortal(event.offsetX, event.offsetY);
}
});
// Kontextmenü bei Rechtsklick auf dem Canvas verhindern
canvas.addEventListener('contextmenu', function (event) {
event.preventDefault();
});
function addPortal(x, y) {
const newPortalIndex = portals.length;
const newPortal = {
index: newPortalIndex,
x: x,
y: y
};
// Füge das neue Portal zu deiner Liste hinzu
portals.push(newPortal);
drawPortal(newPortal);
// drawPortal(newPortal, false);
updateList();
}
function removePortal(x, y) {
for (let i = portals.length - 1; i >= 0; i--) {
const dx = x - portals[i].x;
const dy = y - portals[i].y;
const distance = Math.sqrt(dx * dx + dy * dy);
if (distance < (drawPortalSymbolRadius + 2)) { // drawPortalSymbolRadius + Linienstärke
portals.splice(i, 1);
break;
}
}
redrawPortals();
updateList();
}
function drawPortal(portal) {
// function drawPortal(portal, doDrawLink) {
// ctx.fillStyle = 0;
ctx.strokeStyle = hexToRGBA(portalColor, portalTransparency);
ctx.lineWidth = 2;
ctx.beginPath();
ctx.arc(portal.x, portal.y, drawPortalSymbolRadius, 0, Math.PI * 2);
// ctx.fill();
ctx.stroke();
ctx.font = '14px Arial';
ctx.textAlign = 'center';
ctx.textBaseline = 'middle';
ctx.strokeStyle = 'black';
ctx.lineWidth = 4;
ctx.strokeText(portal.index, portal.x, portal.y);
ctx.fillStyle = hexToRGBA(portalColor, portalTransparency);
ctx.fillText(portal.index, portal.x, portal.y);
ctx.lineWidth = 2;
// ctx.closePath();
if (portal.index === 0) {
const highlightRadius = drawPortalSymbolRadius + 4; // 4px größer als der Radius des Portals
// ctx.strokeStyle = `rgba(255, 255, 255, 0.5)`; // Weiß halbtransparent
ctx.strokeStyle = hexToRGBA(highlightColor, highlightTransparency);
ctx.lineWidth = 2; // Die Linienbreite für den Kreis
ctx.beginPath();
ctx.arc(portal.x, portal.y, highlightRadius, 0, 2 * Math.PI, false);
ctx.stroke();
ctx.closePath();
};
// if (doDrawLink) {
// connectPortalsWithLine(portal);
// }
}
function redrawPortals() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
for (let portal of portals) {
drawPortal(portal);
}
}
function updateList() {
listBody.innerHTML = ''; // Bereinige die bestehende Liste
portals.forEach(portal => {
const row = document.createElement('tr'); // Erstelle eine neue Zeile
const indexCell = document.createElement('td');
indexCell.textContent = portal.index;
row.appendChild(indexCell);
const xCell = document.createElement('td');
xCell.textContent = portal.x;
row.appendChild(xCell);
const yCell = document.createElement('td');
yCell.textContent = portal.y;
row.appendChild(yCell);
listBody.appendChild(row); // Füge die Zeile zum Tabellenkörper hinzu
});
}
// Fields
function pointIsOnLeftSideOfLine(x1, y1, x2, y2, px, py) {
return ((x2 - x1) * (py - y1) - (y2 - y1) * (px - x1)) > 0;
}
function calculateTriangleArea(x1, y1, x2, y2, x3, y3) {
return Math.abs((x1 * (y2 - y3) + x2 * (y3 - y1) + x3 * (y1 - y2)) / 2.0);
}
function checkForNewFields(newLink) {
let sourceLinks = links.filter(link => link.source === newLink.source || link.target === newLink.source);
let targetLinks = links.filter(link => link.source === newLink.target || link.target === newLink.target);
let potentialFields = [];
sourceLinks.forEach(sLink => {
targetLinks.forEach(tLink => {
let sharedPortal = sLink.source === newLink.source ? sLink.target : sLink.source;
if ((tLink.source === newLink.target && tLink.target === sharedPortal) || (tLink.target === newLink.target && tLink.source === sharedPortal)) {
if (!potentialFields.includes(sharedPortal)) {
potentialFields.push(sharedPortal);
}
}
});
});
let potentialFieldsLeft = [];
let potentialFieldsRight = [];
potentialFields.forEach(portalIndex => {
if (pointIsOnLeftSideOfLine(portals[newLink.source].x, portals[newLink.source].y, portals[newLink.target].x, portals[newLink.target].y, portals[portalIndex].x, portals[portalIndex].y)) {
potentialFieldsLeft.push(portalIndex);
} else {
potentialFieldsRight.push(portalIndex);
}
});
// Bestimme und zeichne das größte Feld für die linke Seite
determineAndDrawLargestField(newLink, potentialFieldsLeft, true);
// Bestimme und zeichne das größte Feld für die rechte Seite
determineAndDrawLargestField(newLink, potentialFieldsRight, false);
}
function determineAndDrawLargestField(newLink, potentialFields, isLeftSide) {
let largestArea = 0;
let bestThirdPointIndex = -1;
potentialFields.forEach(pointIndex => {
let area = calculateTriangleArea(
portals[newLink.source].x, portals[newLink.source].y,
portals[newLink.target].x, portals[newLink.target].y,
portals[pointIndex].x, portals[pointIndex].y);
if (area > largestArea) {
largestArea = area;
bestThirdPointIndex = pointIndex;
}
});
if (bestThirdPointIndex !== -1) {
drawField(newLink.source, newLink.target, bestThirdPointIndex, isLeftSide);
fields.push([newLink.source, newLink.target, bestThirdPointIndex]); // Speichere das Feld
}
}
function drawField(sourceIndex, targetIndex, thirdPointIndex) {
// ctx.fillStyle = `rgba(0, 255, 0, ${fieldTransparency})`;
ctx.fillStyle = hexToRGBA(fieldColor, fieldTransparency);
ctx.beginPath();
ctx.moveTo(portals[sourceIndex].x, portals[sourceIndex].y);
ctx.lineTo(portals[targetIndex].x, portals[targetIndex].y);
ctx.lineTo(portals[thirdPointIndex].x, portals[thirdPointIndex].y);
ctx.closePath();
ctx.fill();
}
//colors
// Funktion, die eine HEX-Farbe (#RRGGBB) und einen Alpha-Wert (0-1) akzeptiert
// und die entsprechende RGBA-Farbe als String zurückgibt
function hexToRGBA(hex, alpha = 1) {
// Entferne das # am Anfang, falls vorhanden
hex = hex.replace(/^#/, '');
// Parse die Hexadezimal-Werte
let r = parseInt(hex.substring(0, 2), 16);
let g = parseInt(hex.substring(2, 4), 16);
let b = parseInt(hex.substring(4, 6), 16);
// Rückgabe der RGBA-Farbe
return `rgba(${r}, ${g}, ${b}, ${alpha})`;
}
// Event-Listener für Farbauswahl
document.getElementById('portalColorPicker').addEventListener('change', function () {
portalColor = this.value;
// Aktualisiere die Zeichnung oder Teile davon, falls notwendig
updateIndexesAndUI(true);
});
document.getElementById('linkColorPicker').addEventListener('change', function () {
linkColor = this.value;
// Aktualisiere die Zeichnung oder Teile davon, falls notwendig#
updateIndexesAndUI(true);
});
document.getElementById('fieldColorPicker').addEventListener('change', function () {
fieldColor = this.value;
// Aktualisiere die Zeichnung oder Teile davon, falls notwendig
updateIndexesAndUI(true);
});
document.getElementById('highlightColorPicker').addEventListener('change', function () {
highlightColor = this.value;
// Aktualisiere die Zeichnung oder Teile davon, falls notwendig
updateIndexesAndUI(true);
});
// Verwende die Farbvariablen beim Zeichnen
// Beispiel: ctx.fillStyle = portalColor; beim Zeichnen eines Portals
document.getElementById('fieldTransparencySlider').addEventListener('input', function () {
// Aktualisiere die Feld-Transparenz basierend auf dem Slider-Wert
fieldTransparency = parseFloat(this.value);
document.getElementById('transparencyValue').textContent = fieldTransparency;
// Aktualisiere hier die Zeichnung der Felder mit der neuen Transparenz
// Zum Beispiel könntest du eine Funktion aufrufen, die die Felder neu zeichnet
// redrawFields();
updateIndexesAndUI(true);
});
// document.getElementById('sortPortals').addEventListener('click', () => sortPortalsRadially(sortClockwise));
document.getElementById('presetENL').addEventListener('click', () => colorPreset('ENL'));
document.getElementById('presetRES').addEventListener('click', () => colorPreset('RES'));
document.getElementById('presetMAC').addEventListener('click', () => colorPreset('MAC'));
document.getElementById('presetNTR').addEventListener('click', () => colorPreset('NTR'));
function colorPreset(faction) {
let color;
switch (faction) {
case 'ENL':
color = '#00FF00';
break;
case 'RES':
color = '#0000FF';
break;
case 'MAC':
color = '#FF0000';
break;
case 'NTR':
color = '#FFFFFF';
break;
default:
// abort
return;
};
portalColor = color;
document.getElementById('portalColorPicker').value = color;
linkColor = color;
document.getElementById('linkColorPicker').value = color;
fieldColor = color;
document.getElementById('fieldColorPicker').value = color;
updateIndexesAndUI(true);
}
});