Spaces:
Running
on
Zero
Running
on
Zero
File size: 48,944 Bytes
a42ebba |
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 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 |
import { app } from '../../../scripts/app.js'
//from melmass
export function makeUUID() {
let dt = new Date().getTime()
const uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (c) => {
const r = ((dt + Math.random() * 16) % 16) | 0
dt = Math.floor(dt / 16)
return (c === 'x' ? r : (r & 0x3) | 0x8).toString(16)
})
return uuid
}
export const loadScript = (
FILE_URL,
async = true,
type = 'text/javascript',
) => {
return new Promise((resolve, reject) => {
try {
// Check if the script already exists
const existingScript = document.querySelector(`script[src="${FILE_URL}"]`)
if (existingScript) {
resolve({ status: true, message: 'Script already loaded' })
return
}
const scriptEle = document.createElement('script')
scriptEle.type = type
scriptEle.async = async
scriptEle.src = FILE_URL
scriptEle.addEventListener('load', (ev) => {
resolve({ status: true })
})
scriptEle.addEventListener('error', (ev) => {
reject({
status: false,
message: `Failed to load the script ${FILE_URL}`,
})
})
document.body.appendChild(scriptEle)
} catch (error) {
reject(error)
}
})
}
const create_documentation_stylesheet = () => {
const tag = 'kj-splineditor-stylesheet'
let styleTag = document.head.querySelector(tag)
if (!styleTag) {
styleTag = document.createElement('style')
styleTag.type = 'text/css'
styleTag.id = tag
styleTag.innerHTML = `
.spline-editor {
position: absolute;
font: 12px monospace;
line-height: 1.5em;
padding: 10px;
z-index: 0;
overflow: hidden;
}
`
document.head.appendChild(styleTag)
}
}
loadScript('kjweb_async/svg-path-properties.min.js').catch((e) => {
console.log(e)
})
loadScript('kjweb_async/protovis.min.js').catch((e) => {
console.log(e)
})
create_documentation_stylesheet()
function chainCallback(object, property, callback) {
if (object == undefined) {
//This should not happen.
console.error("Tried to add callback to non-existant object")
return;
}
if (property in object) {
const callback_orig = object[property]
object[property] = function () {
const r = callback_orig.apply(this, arguments);
callback.apply(this, arguments);
return r
};
} else {
object[property] = callback;
}
}
app.registerExtension({
name: 'KJNodes.SplineEditor',
async beforeRegisterNodeDef(nodeType, nodeData) {
if (nodeData?.name === 'SplineEditor') {
chainCallback(nodeType.prototype, "onNodeCreated", function () {
this.widgets.find(w => w.name === "coordinates").hidden = true
var element = document.createElement("div");
this.uuid = makeUUID()
element.id = `spline-editor-${this.uuid}`
this.previewMediaType = 'image'
this.splineEditor = this.addDOMWidget(nodeData.name, "SplineEditorWidget", element, {
serialize: false,
hideOnZoom: false,
});
// context menu
this.contextMenu = document.createElement("div");
this.contextMenu.className = 'spline-editor-context-menu';
this.contextMenu.id = "context-menu";
this.contextMenu.style.display = "none";
this.contextMenu.style.position = "absolute";
this.contextMenu.style.backgroundColor = "#202020";
this.contextMenu.style.minWidth = "100px";
this.contextMenu.style.boxShadow = "0px 8px 16px 0px rgba(0,0,0,0.2)";
this.contextMenu.style.zIndex = "100";
this.contextMenu.style.padding = "5px";
function styleMenuItem(menuItem) {
menuItem.style.display = "block";
menuItem.style.padding = "5px";
menuItem.style.color = "#FFF";
menuItem.style.fontFamily = "Arial, sans-serif";
menuItem.style.fontSize = "16px";
menuItem.style.textDecoration = "none";
menuItem.style.marginBottom = "5px";
}
function createMenuItem(id, textContent) {
let menuItem = document.createElement("a");
menuItem.href = "#";
menuItem.id = `menu-item-${id}`;
menuItem.textContent = textContent;
styleMenuItem(menuItem);
return menuItem;
}
// Create an array of menu items using the createMenuItem function
this.menuItems = [
createMenuItem(0, "Toggle handles"),
createMenuItem(1, "Display sample points"),
createMenuItem(2, "Switch point shape"),
createMenuItem(3, "Background image"),
createMenuItem(4, "Invert point order"),
createMenuItem(5, "Clear Image"),
createMenuItem(6, "Add new spline"),
createMenuItem(7, "Add new single point"),
createMenuItem(8, "Delete current spline"),
createMenuItem(9, "Next spline"),
];
// Add mouseover and mouseout event listeners to each menu item for styling
this.menuItems.forEach(menuItem => {
menuItem.addEventListener('mouseover', function() {
this.style.backgroundColor = "gray";
});
menuItem.addEventListener('mouseout', function() {
this.style.backgroundColor = "#202020";
});
});
// Append each menu item to the context menu
this.menuItems.forEach(menuItem => {
this.contextMenu.appendChild(menuItem);
});
document.body.appendChild(this.contextMenu);
this.addWidget("button", "New canvas", null, () => {
if (!this.properties || !("points" in this.properties)) {
this.editor = new SplineEditor(this);
this.addProperty("points", this.constructor.type, "string");
}
else {
this.editor = new SplineEditor(this, true);
}
});
this.setSize([550, 1000]);
this.resizable = false;
this.splineEditor.parentEl = document.createElement("div");
this.splineEditor.parentEl.className = "spline-editor";
this.splineEditor.parentEl.id = `spline-editor-${this.uuid}`
element.appendChild(this.splineEditor.parentEl);
chainCallback(this, "onConfigure", function () {
try {
this.editor = new SplineEditor(this);
} catch (error) {
console.error("An error occurred while configuring the editor:", error);
}
});
chainCallback(this, "onExecuted", function (message) {
let bg_image = message["bg_image"];
this.properties.imgData = {
name: "bg_image",
base64: bg_image
};
this.editor.refreshBackgroundImage(this);
});
}); // onAfterGraphConfigured
}//node created
} //before register
})//register
class SplineEditor{
constructor(context, reset = false) {
this.node = context;
this.reset=reset;
const self = this;
console.log("creatingSplineEditor")
this.node.pasteFile = (file) => {
if (file.type.startsWith("image/")) {
this.handleImageFile(file);
return true;
}
return false;
};
this.node.onDragOver = function (e) {
if (e.dataTransfer && e.dataTransfer.items) {
return [...e.dataTransfer.items].some(f => f.kind === "file" && f.type.startsWith("image/"));
}
return false;
};
// On drop upload files
this.node.onDragDrop = (e) => {
console.log("onDragDrop called");
let handled = false;
for (const file of e.dataTransfer.files) {
if (file.type.startsWith("image/")) {
this.handleImageFile(file);
handled = true;
}
}
return handled;
};
// context menu
this.createContextMenu();
this.dotShape = "circle";
this.drawSamplePoints = false;
if (reset && context.splineEditor.element) {
context.splineEditor.element.innerHTML = ''; // Clear the container
}
this.coordWidget = context.widgets.find(w => w.name === "coordinates");
this.interpolationWidget = context.widgets.find(w => w.name === "interpolation");
this.pointsWidget = context.widgets.find(w => w.name === "points_to_sample");
this.pointsStoreWidget = context.widgets.find(w => w.name === "points_store");
this.tensionWidget = context.widgets.find(w => w.name === "tension");
this.minValueWidget = context.widgets.find(w => w.name === "min_value");
this.maxValueWidget = context.widgets.find(w => w.name === "max_value");
this.samplingMethodWidget = context.widgets.find(w => w.name === "sampling_method");
this.widthWidget = context.widgets.find(w => w.name === "mask_width");
this.heightWidget = context.widgets.find(w => w.name === "mask_height");
this.interpolation = this.interpolationWidget.value
this.tension = this.tensionWidget.value
this.points_to_sample = this.pointsWidget.value
this.rangeMin = this.minValueWidget.value
this.rangeMax = this.maxValueWidget.value
this.pointsLayer = null;
this.samplingMethod = this.samplingMethodWidget.value
if (this.samplingMethod == "path"||this.samplingMethod == "speed") {
this.dotShape = "triangle"
}
this.interpolationWidget.callback = () => {
this.interpolation = this.interpolationWidget.value
this.updatePath();
}
this.samplingMethodWidget.callback = () => {
this.samplingMethod = this.samplingMethodWidget.value
if (this.samplingMethod == "path") {
this.dotShape = "triangle"
}
else if (this.samplingMethod == "controlpoints") {
this.dotShape = "circle"
this.drawSamplePoints = true;
}
this.updatePath();
}
this.tensionWidget.callback = () => {
this.tension = this.tensionWidget.value
this.updatePath();
}
this.pointsWidget.callback = () => {
this.points_to_sample = this.pointsWidget.value
this.updatePath();
}
this.minValueWidget.callback = () => {
this.rangeMin = this.minValueWidget.value
this.updatePath();
}
this.maxValueWidget.callback = () => {
this.rangeMax = this.maxValueWidget.value
this.updatePath();
}
this.widthWidget.callback = () => {
this.width = this.widthWidget.value;
if (this.width > 256) {
context.setSize([this.width + 45, context.size[1]]);
}
this.vis.width(this.width);
this.updatePath();
}
this.heightWidget.callback = () => {
this.height = this.heightWidget.value
this.vis.height(this.height)
context.setSize([context.size[0], this.height + 450]);
this.updatePath();
}
this.pointsStoreWidget.callback = () => {
points = JSON.parse(this.pointsStoreWidget.value);
this.updatePath();
}
// Initialize or reset points array
this.drawHandles = false;
this.drawRuler = true;
var hoverIndex = -1;
var isDragging = false;
this.width = this.widthWidget.value;
this.height = this.heightWidget.value;
var i = 3;
this.splines = [];
this.activeSplineIndex = 0; // Track which spline is being edited
// init mouse position
this.lastMousePosition = { x: this.width/2, y: this.height/2 };
if (!reset && this.pointsStoreWidget.value != "") {
try {
const parsedData = JSON.parse(this.pointsStoreWidget.value);
// Check if it's already in the new format (array of splines)
if (Array.isArray(parsedData) && parsedData.length > 0 && parsedData[0].hasOwnProperty('points')) {
this.splines = parsedData;
} else {
// Convert old format (single array of points) to new format
this.splines = [{
points: parsedData,
color: "#1f77b4",
name: "Spline 1"
}];
}
} catch (e) {
console.error("Error parsing spline data:", e);
this.initializeDefaultSplines();
}
} else {
this.initializeDefaultSplines();
this.pointsStoreWidget.value = JSON.stringify(this.splines);
}
this.vis = new pv.Panel()
.width(this.width)
.height(this.height)
.fillStyle("#222")
.strokeStyle("gray")
.lineWidth(2)
.antialias(false)
.margin(10)
.event("mousedown", function () {
if (pv.event.shiftKey) { // Use pv.event to access the event object
let scaledMouse = {
x: this.mouse().x / app.canvas.ds.scale,
y: this.mouse().y / app.canvas.ds.scale
};
i = self.splines[self.activeSplineIndex].points.push(scaledMouse) - 1;
self.updatePath();
return this;
}
else if (pv.event.ctrlKey) {
// Capture the clicked location
let clickedPoint = {
x: this.mouse().x / app.canvas.ds.scale,
y: this.mouse().y / app.canvas.ds.scale
};
// Find the two closest points to the clicked location
const activePoints = self.splines[self.activeSplineIndex].points;
let { point1Index, point2Index } = self.findClosestPoints(self.splines[self.activeSplineIndex].points, clickedPoint);
// Calculate the midpoint between the two closest points
let midpoint = {
x: (activePoints[point1Index].x + activePoints[point2Index].x) / 2,
y: (activePoints[point1Index].y + activePoints[point2Index].y) / 2
};
// Insert the midpoint into the array
activePoints.splice(point2Index, 0, midpoint);
i = point2Index;
self.updatePath();
}
else if (pv.event.button === 2) {
// Store the current mouse position adjusted for scale
self.lastMousePosition = {
x: this.mouse().x / app.canvas.ds.scale,
y: this.mouse().y / app.canvas.ds.scale
};
self.node.contextMenu.style.display = 'block';
self.node.contextMenu.style.left = `${pv.event.clientX}px`;
self.node.contextMenu.style.top = `${pv.event.clientY}px`;
}
})
this.backgroundImage = this.vis.add(pv.Image).visible(false)
this.vis.add(pv.Rule)
.data(pv.range(0, this.height, 64))
.bottom(d => d)
.strokeStyle("gray")
.lineWidth(3)
.visible(() => self.drawRuler)
this.hoverSplineIndex = -1;
this.splines.forEach((spline, splineIndex) => {
const strokeObj = this.vis.add(pv.Line)
.data(() => spline.points)
.left(d => d.x)
.top(d => d.y)
.interpolate(() => this.interpolation)
.tension(() => this.tension)
.segmented(() => false)
.strokeStyle("black") // Stroke color
.lineWidth(() => {
// Make stroke slightly wider than the main line
if (splineIndex === this.activeSplineIndex) return 5;
if (splineIndex === this.hoverSplineIndex) return 4;
return 3.5;
});
this.vis.add(pv.Line)
.data(() => spline.points)
.left(d => d.x)
.top(d => d.y)
.interpolate(() => this.interpolation)
.tension(() => this.tension)
.segmented(() => false)
.strokeStyle(spline.color)
.lineWidth(() => {
// Change line width based on active or hover state
if (splineIndex === this.activeSplineIndex) return 3;
if (splineIndex === this.hoverSplineIndex) return 2;
return 1.5;
})
.event("mouseover", () => {
this.hoverSplineIndex = splineIndex;
this.vis.render();
})
.event("mouseout", () => {
this.hoverSplineIndex = -1;
this.vis.render();
})
.event("mousedown", () => {
if (this.activeSplineIndex !== splineIndex) {
this.activeSplineIndex = splineIndex;
this.refreshSplineElements();
}
});
});
this.vis.add(pv.Dot)
.data(() => {
const activeSpline = this.splines[this.activeSplineIndex];
// If this is a single point, don't show it in the main visualization
if (activeSpline.isSinglePoint || (activeSpline.points && activeSpline.points.length === 1)) {
return []; // Return empty array to hide in main visualization
}
return activeSpline.points;
})
.left(d => d.x)
.top(d => d.y)
.radius(12)
.shape(function() {
return self.dotShape;
})
.angle(function() {
const index = this.index;
let angle = 0;
if (self.dotShape === "triangle") {
const activePoints = self.splines[self.activeSplineIndex].points;
let dxNext = 0, dyNext = 0;
if (index < activePoints.length - 1) {
dxNext = activePoints[index + 1].x - activePoints[index].x;
dyNext = activePoints[index + 1].y - activePoints[index].y;
}
let dxPrev = 0, dyPrev = 0;
if (index > 0) {
dxPrev = activePoints[index].x - activePoints[index - 1].x;
dyPrev = activePoints[index].y - activePoints[index - 1].y;
}
const dx = (dxNext + dxPrev) / 2;
const dy = (dyNext + dyPrev) / 2;
angle = Math.atan2(dy, dx);
angle -= Math.PI / 2;
angle = (angle + 2 * Math.PI) % (2 * Math.PI);
}
return angle;
})
.cursor("move")
.strokeStyle(function () { return i == this.index ? "#ff7f0e" : "#1f77b4"; })
.fillStyle(function () { return "rgba(100, 100, 100, 0.3)"; })
.event("mousedown", pv.Behavior.drag())
.event("dragstart", function () {
i = this.index;
hoverIndex = this.index;
isDragging = true;
const activePoints = self.splines[self.activeSplineIndex].points;
if (pv.event.button === 2 && i !== 0 && i !== activePoints.length - 1) {
activePoints.splice(i--, 1);
self.vis.render();
}
return this;
})
.event("dragend", function() {
if (this.pathElements !== null) {
self.updatePath();
}
isDragging = false;
})
.event("drag", function () {
let adjustedX = this.mouse().x / app.canvas.ds.scale; // Adjust the new X position by the inverse of the scale factor
let adjustedY = this.mouse().y / app.canvas.ds.scale; // Adjust the new Y position by the inverse of the scale factor
// Determine the bounds of the vis.Panel
const panelWidth = self.vis.width();
const panelHeight = self.vis.height();
// Adjust the new position if it would place the dot outside the bounds of the vis.Panel
adjustedX = Math.max(0, Math.min(panelWidth, adjustedX));
adjustedY = Math.max(0, Math.min(panelHeight, adjustedY));
self.splines[self.activeSplineIndex].points[this.index] = { x: adjustedX, y: adjustedY }; // Update the point's position
self.vis.render(); // Re-render the visualization to reflect the new position
})
.event("mouseover", function() {
hoverIndex = this.index; // Set the hover index to the index of the hovered dot
self.vis.render(); // Re-render the visualization
})
.event("mouseout", function() {
!isDragging && (hoverIndex = -1); // Reset the hover index when the mouse leaves the dot
self.vis.render(); // Re-render the visualization
})
.anchor("center")
.add(pv.Label)
.visible(function() {
return hoverIndex === this.index; // Only show the label for the hovered dot
})
.left(d => d.x < this.width / 2 ? d.x + 80 : d.x - 70) // Shift label to right if on left half, otherwise shift to left
.top(d => d.y < this.height / 2 ? d.y + 20 : d.y - 20) // Shift label down if on top half, otherwise shift up
.font(12 + "px sans-serif")
.text(d => {
if (this.samplingMethod == "path") {
return `X: ${Math.round(d.x)}, Y: ${Math.round(d.y)}`;
} else {
let frame = Math.round((d.x / self.width) * self.points_to_sample);
let normalizedY = (1.0 - (d.y / self.height) - 0.0) * (self.rangeMax - self.rangeMin) + self.rangeMin;
let normalizedX = (d.x / self.width);
return `F: ${frame}, X: ${normalizedX.toFixed(2)}, Y: ${normalizedY.toFixed(2)}`;
}
})
.textStyle("orange")
// single points
this.vis.add(pv.Dot)
.data(() => {
// Collect all single points from all splines
const singlePoints = [];
this.splines.forEach((spline, splineIndex) => {
if (spline.isSinglePoint || (spline.points && spline.points.length === 1)) {
singlePoints.push({
x: spline.points[0].x,
y: spline.points[0].y,
splineIndex: splineIndex,
color: spline.color
});
}
});
return singlePoints;
})
.left(d => d.x)
.top(d => d.y)
.radius(6)
.shape("square")
.strokeStyle(d => d.splineIndex === this.activeSplineIndex ? "#ff7f0e" : d.color)
.fillStyle(d => "rgba(100, 100, 100, 0.9)")
.lineWidth(d => d.splineIndex === this.activeSplineIndex ? 3 : 1.5)
.cursor("move")
.event("mousedown", pv.Behavior.drag())
.event("dragstart", function(d) {
self.activeSplineIndex = d.splineIndex;
self.refreshSplineElements();
return this;
})
.event("drag", function(d) {
let adjustedX = this.mouse().x / app.canvas.ds.scale;
let adjustedY = this.mouse().y / app.canvas.ds.scale;
// Determine the bounds of the vis.Panel
const panelWidth = self.vis.width();
const panelHeight = self.vis.height();
// Adjust the new position if it would place the dot outside the bounds
adjustedX = Math.max(0, Math.min(panelWidth, adjustedX));
adjustedY = Math.max(0, Math.min(panelHeight, adjustedY));
// Update the point position
const spline = self.splines[d.splineIndex];
spline.points[0] = { x: adjustedX, y: adjustedY };
// For single points, we need to refresh the entire spline element
// to prevent the line-drawing effect
})
.event("dragend", function(d) {
self.refreshSplineElements();
self.updatePath();
})
.visible(d => true); // Make always visible
if (this.splines.length != 0) {
this.vis.render();
}
var svgElement = this.vis.canvas();
svgElement.style['zIndex'] = "2"
svgElement.style['position'] = "relative"
this.node.splineEditor.element.appendChild(svgElement);
this.pathElements = svgElement.getElementsByTagName('path'); // Get all path elements
if (this.width > 256) {
this.node.setSize([this.width + 45, this.node.size[1]]);
}
this.node.setSize([this.node.size[0], this.height + 450]);
this.updatePath();
this.refreshBackgroundImage();
}
updatePath = () => {
if (!this.splines || this.splines.length === 0) {
console.log("no splines");
return;
}
// Get active spline points
console.log("this.activeSplineIndex", this.activeSplineIndex);
const activeSpline = this.splines[this.activeSplineIndex];
const activePoints = activeSpline.points;
if (!activePoints || activePoints.length === 0) {
console.log("no points in active spline");
return;
}
let coords;
if (this.samplingMethod != "controlpoints") {
coords = this.samplePoints(this.pathElements[this.activeSplineIndex], this.points_to_sample, this.samplingMethod, this.width, this.activeSplineIndex);
} else {
coords = activePoints;
}
let allSplineCoords = [];
for (let i = 0; i < this.splines.length; i++) {
// Use the same sampling method for all splines
let splineCoords;
const pathElement = this.pathElements[i];
if (this.samplingMethod != "controlpoints" && pathElement) {
splineCoords = this.samplePoints(pathElement, this.points_to_sample, this.samplingMethod, this.width, i);
} else {
// Fall back to control points if no path element or sampling method is "controlpoints"
splineCoords = this.splines[i].points;
}
allSplineCoords.push(splineCoords);
}
if (this.drawSamplePoints) {
if (this.pointsLayer) {
// Update the data of the existing points layer
this.pointsLayer.data(coords);
} else {
// Create the points layer if it doesn't exist
this.pointsLayer = this.vis.add(pv.Dot)
.data(coords)
.left(function(d) { return d.x; })
.top(function(d) { return d.y; })
.radius(5) // Adjust the radius as needed
.fillStyle("red") // Change the color as needed
.strokeStyle("black") // Change the stroke color as needed
.lineWidth(1); // Adjust the line width as needed
}
} else {
if (this.pointsLayer) {
// Remove the points layer
this.pointsLayer.data([]);
this.vis.render();
}
}
this.pointsStoreWidget.value = JSON.stringify(this.splines);
if (this.coordWidget) {
this.coordWidget.value = JSON.stringify(allSplineCoords);
}
this.vis.render();
};
handleImageLoad = (img, file, base64String) => {
//console.log(img.width, img.height); // Access width and height here
this.widthWidget.value = img.width;
this.heightWidget.value = img.height;
this.drawRuler = false;
if (img.width != this.vis.width() || img.height != this.vis.height()) {
if (img.width > 256) {
this.node.setSize([img.width + 45, this.node.size[1]]);
}
this.node.setSize([this.node.size[0], img.height + 520]);
this.vis.width(img.width);
this.vis.height(img.height);
this.height = img.height;
this.width = img.width;
this.updatePath();
}
this.backgroundImage.url(file ? URL.createObjectURL(file) : `data:${this.node.properties.imgData.type};base64,${base64String}`).visible(true).root.render();
};
processImage = (img, file) => {
const canvas = document.createElement('canvas');
const ctx = canvas.getContext('2d');
const maxWidth = 800; // maximum width
const maxHeight = 600; // maximum height
let width = img.width;
let height = img.height;
// Calculate the new dimensions while preserving the aspect ratio
if (width > height) {
if (width > maxWidth) {
height *= maxWidth / width;
width = maxWidth;
}
} else {
if (height > maxHeight) {
width *= maxHeight / height;
height = maxHeight;
}
}
canvas.width = width;
canvas.height = height;
ctx.drawImage(img, 0, 0, width, height);
// Get the compressed image data as a Base64 string
const base64String = canvas.toDataURL('image/jpeg', 0.5).replace('data:', '').replace(/^.+,/, ''); // 0.5 is the quality from 0 to 1
this.node.properties.imgData = {
name: file.name,
lastModified: file.lastModified,
size: file.size,
type: file.type,
base64: base64String
};
handleImageLoad(img, file, base64String);
};
handleImageFile = (file) => {
const reader = new FileReader();
reader.onloadend = () => {
const img = new Image();
img.src = reader.result;
img.onload = () => processImage(img, file);
};
reader.readAsDataURL(file);
const imageUrl = URL.createObjectURL(file);
const img = new Image();
img.src = imageUrl;
img.onload = () => this.handleImageLoad(img, file, null);
};
refreshBackgroundImage = () => {
if (this.node.properties.imgData && this.node.properties.imgData.base64) {
const base64String = this.node.properties.imgData.base64;
const imageUrl = `data:${this.node.properties.imgData.type};base64,${base64String}`;
const img = new Image();
img.src = imageUrl;
img.onload = () => this.handleImageLoad(img, null, base64String);
}
};
refreshSplineElements = () => {
// Clear existing line elements and recreate them
const svgElement = this.vis.canvas();
// Remove all existing line elements
const oldLines = svgElement.querySelectorAll('path');
oldLines.forEach(line => line.remove());
this.pathElements = [];
this.lineObjects = [];
const originalChildren = [...this.vis.children];
// Find line objects to remove (those that represent splines)
const linesToRemove = originalChildren.filter(child =>
child instanceof pv.Line
);
linesToRemove.forEach(line => line.visible(false));
// Re-add all spline lines and store references to them
this.splines.forEach((spline, splineIndex) => {
// For single points, we need a special handling
if (spline.isSinglePoint || (spline.points && spline.points.length === 1)) {
const point = spline.points[0];
// For single points, create a tiny line at the same point
// This ensures we have a path element for the point
const lineObj = this.vis.add(pv.Line)
.data([point, {x: point.x + 0.001, y: point.y + 0.001}])
.left(d => d.x)
.top(d => d.y)
.strokeStyle(spline.color)
.lineWidth(() => {
if (splineIndex === this.activeSplineIndex) return 3;
if (splineIndex === this.hoverSplineIndex) return 2;
return 1.5;
})
.event("mouseover", () => {
this.hoverSplineIndex = splineIndex;
this.vis.render();
})
.event("mouseout", () => {
this.hoverSplineIndex = -1;
this.vis.render();
})
.event("mousedown", () => {
if (this.activeSplineIndex !== splineIndex) {
this.activeSplineIndex = splineIndex;
this.refreshSplineElements();
}
});
this.lineObjects.push(lineObj);
} else {
// For normal multi-point splines
const strokeObj = this.vis.add(pv.Line)
.data(() => spline.points)
.left(d => d.x)
.top(d => d.y)
.interpolate(() => this.interpolation)
.tension(() => this.tension)
.segmented(() => false)
.strokeStyle("black") // Stroke color
.lineWidth(() => {
// Make stroke slightly wider than the main line
if (splineIndex === this.activeSplineIndex) return 5;
if (splineIndex === this.hoverSplineIndex) return 4;
return 3.5;
});
const lineObj = this.vis.add(pv.Line)
.data(() => spline.points)
.left(d => d.x)
.top(d => d.y)
.interpolate(() => this.interpolation)
.tension(() => this.tension)
.segmented(() => false)
.strokeStyle(spline.color)
.lineWidth(() => {
if (splineIndex === this.activeSplineIndex) return 3;
if (splineIndex === this.hoverSplineIndex) return 2;
return 1.5;
})
.event("mouseover", () => {
this.hoverSplineIndex = splineIndex;
this.vis.render();
})
.event("mouseout", () => {
this.hoverSplineIndex = -1;
this.vis.render();
})
.event("mousedown", () => {
if (this.activeSplineIndex !== splineIndex) {
this.activeSplineIndex = splineIndex;
this.refreshSplineElements();
}
});
// // Add invisible wider hit area for easier selection
// this.vis.add(pv.Line)
// .data(() => spline.points)
// .left(d => d.x)
// .top(d => d.y)
// .interpolate(() => this.interpolation)
// .tension(() => this.tension)
// .segmented(() => false)
// .strokeStyle("rgba(0,0,0,0.01)") // Nearly invisible
// .lineWidth(15) // Much wider hit area
// .event("mouseover", () => {
// this.hoverSplineIndex = splineIndex;
// this.vis.render();
// })
// .event("mouseout", () => {
// this.hoverSplineIndex = -1;
// this.vis.render();
// })
// .event("mousedown", () => {
// if (pv.event.shiftKey) {
// if (this.activeSplineIndex !== splineIndex) {
// this.activeSplineIndex = splineIndex;
// this.refreshSplineElements();
// }
// }}
// );
this.lineObjects.push(lineObj);
}
});
this.vis.render();
requestAnimationFrame(() => {
const allPaths = Array.from(svgElement.querySelectorAll('path'));
this.pathElements = [];
// First try: look at paths with specific childIndex values
this.lineObjects.forEach((lineObj, i) => {
// Find paths that correspond to our line objects
const childIndex = lineObj.childIndex;
const matchingPath = allPaths.find(path =>
path.$scene && path.$scene.scenes &&
path.$scene.scenes.childIndex === childIndex
);
if (matchingPath) {
//console.log("matchingPath:", matchingPath);
this.pathElements[i] = matchingPath;
}
});
// Check if we found all paths
if (this.pathElements.filter(p => p).length !== this.splines.length) {
// Fallback to color matching
this.pathElements = [];
for (let i = 0; i < this.splines.length; i++) {
const color = this.splines[i].color;
const matchingPath = allPaths.find(p =>
p.getAttribute('style')?.includes(color) &&
!this.pathElements.includes(p)
);
if (matchingPath) {
this.pathElements[i] = matchingPath;
}
}
}
// If we still don't have the right number of paths, use the first N paths
if (this.pathElements.filter(p => p).length !== this.splines.length) {
this.pathElements = allPaths.slice(0, this.splines.length);
}
this.updatePath();
});
};
initializeDefaultSplines() {
this.splines = [{
points: pv.range(1, 4).map((i, index) => {
if (index === 0) {
return { x: 0, y: this.height };
} else if (index === 2) {
return { x: this.width, y: 0 };
} else {
return {
x: i * this.width / 5,
y: 50 + Math.random() * (this.height - 100)
};
}
}),
color: this.getSplineColor(0),
name: "Spline 1"
}];
}
getSplineColor(index) {
const colors = [
"#1f77b4", "#ff7f0e", "#2ca02c", "#d62728",
"#9467bd", "#8c564b", "#e377c2", "#7f7f7f",
"#bcbd22", "#17becf"
];
return colors[index % colors.length];
}
createContextMenu = () => {
const self = this;
const oldMenu = this.node.contextMenu;
const newMenu = oldMenu.cloneNode(true);
oldMenu.parentNode.replaceChild(newMenu, oldMenu);
this.node.contextMenu = newMenu;
document.addEventListener('contextmenu', function (e) {
e.preventDefault();
});
document.addEventListener('click', function (e) {
document.querySelectorAll('.spline-editor-context-menu').forEach(menu => {
menu.style.display = 'none';
});
});
this.node.contextMenu.addEventListener('click', function(e) {
e.preventDefault();
if (e.target.tagName === 'A') {
const id = parseInt(e.target.id.split('-')[2]);
switch(id) {
case 0:
e.preventDefault();
if (!self.drawHandles) {
self.drawHandles = true
self.vis.add(pv.Line)
.data(() => self.splines[self.activeSplineIndex].points.map((point, index) => ({
start: point,
end: [index]
})))
.left(d => d.start.x)
.top(d => d.start.y)
.interpolate("linear")
.tension(0) // Straight lines
.strokeStyle("#ff7f0e") // Same color as control points
.lineWidth(1)
.visible(() => self.drawHandles);
self.vis.render();
} else {
self.drawHandles = false
self.vis.render();
}
self.node.contextMenu.style.display = 'none';
break;
case 1:
self.drawSamplePoints = !self.drawSamplePoints;
self.updatePath();
break;
case 2:
if (self.dotShape == "circle"){
self.dotShape = "triangle"
}
else {
self.dotShape = "circle"
}
self.updatePath();
break;
case 3:
// Create file input element
const fileInput = document.createElement('input');
fileInput.type = 'file';
fileInput.accept = 'image/*'; // Accept only image files
// Listen for file selection
fileInput.addEventListener('change', function (event) {
const file = event.target.files[0]; // Get the selected file
if (file) {
const imageUrl = URL.createObjectURL(file);
let img = new Image();
img.src = imageUrl;
img.onload = () => self.handleImageLoad(img, file, null);
}
});
fileInput.click();
self.node.contextMenu.style.display = 'none';
break;
case 4:
self.splines[self.activeSplineIndex].points.reverse();
self.updatePath();
break;
case 5:
self.backgroundImage.visible(false).root.render();
self.node.properties.imgData = null;
self.node.contextMenu.style.display = 'none';
break;
case 6: // Add new spline
const newSplineIndex = self.splines.length;
self.splines.push({
points: [
// Create default points for the new spline
{ x: 0, y: self.height },
{ x: self.width/2, y: self.height/2 },
{ x: self.width, y: 0 }
],
color: self.getSplineColor(newSplineIndex),
name: `Spline ${newSplineIndex + 1}`
});
self.activeSplineIndex = newSplineIndex;
self.refreshSplineElements();
self.node.contextMenu.style.display = 'none';
break;
case 7: // Add new single point
const newSingleSplineIndex = self.splines.length;
self.splines.push({
points: [
{ x: self.lastMousePosition.x, y: self.lastMousePosition.y },
],
color: self.getSplineColor(newSingleSplineIndex),
name: `Spline ${newSingleSplineIndex + 1}`,
isSinglePoint: true
});
self.activeSplineIndex = newSingleSplineIndex;
self.refreshSplineElements();
self.node.contextMenu.style.display = 'none';
break;
case 8: // Delete current spline
if (self.splines.length > 1) {
self.splines.splice(self.activeSplineIndex, 1);
self.activeSplineIndex = Math.min(self.activeSplineIndex, self.splines.length - 1);
self.refreshSplineElements();
}
self.node.contextMenu.style.display = 'none';
break;
case 9: // Next spline
self.activeSplineIndex = (self.activeSplineIndex + 1) % self.splines.length;
self.refreshSplineElements();
self.node.contextMenu.style.display = 'none';
break;
}
}
});
}
samplePoints(svgPathElement, numSamples, samplingMethod, width, splineIndex) {
const spline = this.splines[splineIndex];
// Check if this is a single point spline
if (spline && (spline.isSinglePoint || (spline.points && spline.points.length === 1))) {
// For a single point, return an array with the same coordinates repeated
const point = spline.points[0];
return Array(numSamples).fill().map(() => ({ x: point.x, y: point.y }));
}
if (!svgPathElement) {
console.warn(`Path element not found for spline index: ${splineIndex}. Available paths: ${this.pathElements.length}`);
const splinePoints = this.splines[splineIndex].points;
// If we have no points, return an empty array
if (!splinePoints || splinePoints.length === 0) {
return [];
}
// Create a simple interpolation between control points
const result = [];
for (let i = 0; i < numSamples; i++) {
const t = i / (numSamples - 1);
const idx = Math.min(
Math.floor(t * (splinePoints.length - 1)),
splinePoints.length - 2
);
const fraction = (t * (splinePoints.length - 1)) - idx;
const x = splinePoints[idx].x + fraction * (splinePoints[idx + 1].x - splinePoints[idx].x);
const y = splinePoints[idx].y + fraction * (splinePoints[idx + 1].y - splinePoints[idx].y);
result.push({ x, y });
}
return result;
}
var svgWidth = width; // Fixed width of the SVG element
var pathLength = svgPathElement.getTotalLength();
var points = [];
if (samplingMethod === "speed") {
// Calculate control point distances along the path
const controlPoints = this.splines[splineIndex].points;
const pathPositions = [];
// Find approximate path positions for each control point
for (const cp of controlPoints) {
let bestDist = Infinity;
let bestPos = 0;
// Sample the path to find closest point to each control point
for (let pos = 0; pos <= pathLength; pos += pathLength / 100) {
const pt = svgPathElement.getPointAtLength(pos);
const dist = Math.sqrt(Math.pow(pt.x - cp.x, 2) + Math.pow(pt.y - cp.y, 2));
if (dist < bestDist) {
bestDist = dist;
bestPos = pos;
}
}
pathPositions.push(bestPos);
}
// Sort positions along path
pathPositions.sort((a, b) => a - b);
// Create a smooth speed mapping function with synchronization
const createSynchronizedMapping = () => {
// Calculate segment lengths and densities
const segments = [];
let totalLength = pathPositions[pathPositions.length - 1] - pathPositions[0];
for (let i = 0; i < pathPositions.length - 1; i++) {
const segLength = pathPositions[i+1] - pathPositions[i];
// Inverse relationship - shorter segments = higher density = slower speed
const density = 1 / Math.max(segLength, 0.0001);
segments.push({
position: pathPositions[i],
length: segLength,
density: density
});
}
// Create mapping function with forced synchronization at endpoints
return t => {
// Force synchronization at t=0 and t=1
if (t === 0) return 0;
if (t === 1) return pathLength;
// For intermediate points, use the speed control
// Scale t to fit between first and last control points
const firstPos = pathPositions[0];
const lastPos = pathPositions[pathPositions.length - 1];
// Create a density-weighted position mapping
let totalWeight = 0;
let weights = [];
for (let i = 0; i < segments.length; i++) {
totalWeight += segments[i].density;
weights.push(segments[i].density);
}
// Normalize weights
const normalizedWeights = weights.map(w => w / totalWeight);
// Calculate cumulative weights
let cumulativeWeight = 0;
const cumulativeWeights = normalizedWeights.map(w => {
cumulativeWeight += w;
return cumulativeWeight;
});
// Find the segment for this t value
let segmentIndex = 0;
for (let i = 0; i < cumulativeWeights.length; i++) {
if (t <= cumulativeWeights[i]) {
segmentIndex = i;
break;
}
}
// Calculate position within segment
const segmentStart = segmentIndex > 0 ? cumulativeWeights[segmentIndex - 1] : 0;
const segmentEnd = cumulativeWeights[segmentIndex];
const segmentT = (t - segmentStart) / (segmentEnd - segmentStart);
// Map to path position
const pathStart = pathPositions[segmentIndex];
const pathEnd = pathPositions[segmentIndex + 1];
const pos = pathStart + segmentT * (pathEnd - pathStart);
// Scale to fill entire path
return pos;
};
};
const mapToPath = createSynchronizedMapping();
// Sample using the synchronized mapping function
for (let i = 0; i < numSamples; i++) {
const t = i / (numSamples - 1);
const pathPos = mapToPath(t);
const point = svgPathElement.getPointAtLength(pathPos);
points.push({ x: point.x, y: point.y });
}
return points;
}
else{
for (var i = 0; i < numSamples; i++) {
if (samplingMethod === "time") {
// Calculate the x-coordinate for the current sample based on the SVG's width
var x = (svgWidth / (numSamples - 1)) * i;
// Find the point on the path that intersects the vertical line at the calculated x-coordinate
var point = this.findPointAtX(svgPathElement, x, pathLength);
}
else if (samplingMethod === "path") {
// Calculate the distance along the path for the current sample
var distance = (pathLength / (numSamples - 1)) * i;
// Get the point at the current distance
var point = svgPathElement.getPointAtLength(distance);
}
// Add the point to the array of points
points.push({ x: point.x, y: point.y });
}
return points;
}
}
findClosestPoints(points, clickedPoint) {
// Calculate distances from clickedPoint to each point in the array
let distances = points.map(point => {
let dx = clickedPoint.x - point.x;
let dy = clickedPoint.y - point.y;
return { index: points.indexOf(point), distance: Math.sqrt(dx * dx + dy * dy) };
});
// Sort distances and get the indices of the two closest points
let sortedDistances = distances.sort((a, b) => a.distance - b.distance);
let closestPoint1Index = sortedDistances[0].index;
let closestPoint2Index = sortedDistances[1].index;
// Ensure point1Index is always the smaller index
if (closestPoint1Index > closestPoint2Index) {
[closestPoint1Index, closestPoint2Index] = [closestPoint2Index, closestPoint1Index];
}
return { point1Index: closestPoint1Index, point2Index: closestPoint2Index };
}
findPointAtX(svgPathElement, targetX, pathLength) {
let low = 0;
let high = pathLength;
let bestPoint = svgPathElement.getPointAtLength(0);
while (low <= high) {
let mid = low + (high - low) / 2;
let point = svgPathElement.getPointAtLength(mid);
if (Math.abs(point.x - targetX) < 1) {
return point; // The point is close enough to the target
}
if (point.x < targetX) {
low = mid + 1;
} else {
high = mid - 1;
}
// Keep track of the closest point found so far
if (Math.abs(point.x - targetX) < Math.abs(bestPoint.x - targetX)) {
bestPoint = point;
}
}
// Return the closest point found
return bestPoint;
}
} |