| import { app } from '../../../scripts/app.js' |
|
|
| |
| 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 { |
| |
| 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) { |
| |
| 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, |
| }); |
|
|
| |
| 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; |
| } |
| |
| |
| 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"), |
| ]; |
| |
| |
| this.menuItems.forEach(menuItem => { |
| menuItem.addEventListener('mouseover', function() { |
| this.style.backgroundColor = "gray"; |
| }); |
| |
| menuItem.addEventListener('mouseout', function() { |
| this.style.backgroundColor = "#202020"; |
| }); |
| }); |
| |
| |
| 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); |
| }); |
| |
| }); |
| } |
| } |
| }) |
|
|
|
|
| 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; |
| }; |
|
|
| |
| 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; |
| }; |
|
|
| |
| this.createContextMenu(); |
| |
|
|
| this.dotShape = "circle"; |
| this.drawSamplePoints = false; |
| |
| if (reset && context.splineEditor.element) { |
| context.splineEditor.element.innerHTML = ''; |
| } |
| 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(); |
| } |
| |
| |
| 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; |
| |
| this.lastMousePosition = { x: this.width/2, y: this.height/2 }; |
|
|
| if (!reset && this.pointsStoreWidget.value != "") { |
| try { |
| const parsedData = JSON.parse(this.pointsStoreWidget.value); |
| |
| if (Array.isArray(parsedData) && parsedData.length > 0 && parsedData[0].hasOwnProperty('points')) { |
| this.splines = parsedData; |
| } else { |
| |
| 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) { |
| 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) { |
| |
| let clickedPoint = { |
| x: this.mouse().x / app.canvas.ds.scale, |
| y: this.mouse().y / app.canvas.ds.scale |
| }; |
|
|
| |
| const activePoints = self.splines[self.activeSplineIndex].points; |
| let { point1Index, point2Index } = self.findClosestPoints(self.splines[self.activeSplineIndex].points, clickedPoint); |
|
|
| |
| let midpoint = { |
| x: (activePoints[point1Index].x + activePoints[point2Index].x) / 2, |
| y: (activePoints[point1Index].y + activePoints[point2Index].y) / 2 |
| }; |
|
|
| |
| activePoints.splice(point2Index, 0, midpoint); |
| i = point2Index; |
| self.updatePath(); |
| } |
| else if (pv.event.button === 2) { |
| |
| 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") |
| .lineWidth(() => { |
| |
| 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(() => { |
| |
| 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 (activeSpline.isSinglePoint || (activeSpline.points && activeSpline.points.length === 1)) { |
| return []; |
| } |
| 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; |
| let adjustedY = this.mouse().y / app.canvas.ds.scale; |
| |
| const panelWidth = self.vis.width(); |
| const panelHeight = self.vis.height(); |
|
|
| |
| 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 }; |
| self.vis.render(); |
| }) |
| .event("mouseover", function() { |
| hoverIndex = this.index; |
| self.vis.render(); |
| }) |
| .event("mouseout", function() { |
| !isDragging && (hoverIndex = -1); |
| self.vis.render(); |
| }) |
| .anchor("center") |
| .add(pv.Label) |
| .visible(function() { |
| return hoverIndex === this.index; |
| }) |
| .left(d => d.x < this.width / 2 ? d.x + 80 : d.x - 70) |
| .top(d => d.y < this.height / 2 ? d.y + 20 : d.y - 20) |
| .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") |
|
|
| |
| this.vis.add(pv.Dot) |
| .data(() => { |
| |
| 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; |
| |
| |
| const panelWidth = self.vis.width(); |
| const panelHeight = self.vis.height(); |
|
|
| |
| adjustedX = Math.max(0, Math.min(panelWidth, adjustedX)); |
| adjustedY = Math.max(0, Math.min(panelHeight, adjustedY)); |
| |
| |
| const spline = self.splines[d.splineIndex]; |
| spline.points[0] = { x: adjustedX, y: adjustedY }; |
| |
| |
| |
| |
| }) |
| .event("dragend", function(d) { |
| self.refreshSplineElements(); |
| self.updatePath(); |
| }) |
| .visible(d => true); |
| |
| 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'); |
|
|
| 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; |
| } |
| |
| 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++) { |
| |
| 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 { |
| |
| splineCoords = this.splines[i].points; |
| } |
|
|
| allSplineCoords.push(splineCoords); |
| } |
|
|
| if (this.drawSamplePoints) { |
| if (this.pointsLayer) { |
| |
| this.pointsLayer.data(coords); |
| } else { |
| |
| this.pointsLayer = this.vis.add(pv.Dot) |
| .data(coords) |
| .left(function(d) { return d.x; }) |
| .top(function(d) { return d.y; }) |
| .radius(5) |
| .fillStyle("red") |
| .strokeStyle("black") |
| .lineWidth(1); |
| } |
| } else { |
| if (this.pointsLayer) { |
| |
| 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) => { |
| |
| 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; |
| const maxHeight = 600; |
| let width = img.width; |
| let height = img.height; |
|
|
| |
| 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); |
|
|
| |
| const base64String = canvas.toDataURL('image/jpeg', 0.5).replace('data:', '').replace(/^.+,/, ''); |
|
|
| 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 = () => { |
| |
| const svgElement = this.vis.canvas(); |
| |
| |
| const oldLines = svgElement.querySelectorAll('path'); |
| oldLines.forEach(line => line.remove()); |
| |
| this.pathElements = []; |
| this.lineObjects = []; |
|
|
| const originalChildren = [...this.vis.children]; |
| |
| |
| const linesToRemove = originalChildren.filter(child => |
| child instanceof pv.Line |
| ); |
| linesToRemove.forEach(line => line.visible(false)); |
| |
| |
| this.splines.forEach((spline, splineIndex) => { |
| |
| if (spline.isSinglePoint || (spline.points && spline.points.length === 1)) { |
| const point = spline.points[0]; |
| |
| |
| 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 { |
| |
| 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") |
| .lineWidth(() => { |
| |
| 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(); |
| } |
| }); |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| this.lineObjects.push(lineObj); |
| } |
| }); |
| |
| this.vis.render(); |
| |
| requestAnimationFrame(() => { |
| const allPaths = Array.from(svgElement.querySelectorAll('path')); |
| this.pathElements = []; |
| |
| |
| this.lineObjects.forEach((lineObj, i) => { |
| |
| const childIndex = lineObj.childIndex; |
| const matchingPath = allPaths.find(path => |
| path.$scene && path.$scene.scenes && |
| path.$scene.scenes.childIndex === childIndex |
| ); |
| |
| if (matchingPath) { |
| |
| this.pathElements[i] = matchingPath; |
| } |
| }); |
| |
| |
| if (this.pathElements.filter(p => p).length !== this.splines.length) { |
| |
| 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 (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) |
| .strokeStyle("#ff7f0e") |
| .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: |
| |
| const fileInput = document.createElement('input'); |
| fileInput.type = 'file'; |
| fileInput.accept = 'image/*'; |
|
|
| |
| fileInput.addEventListener('change', function (event) { |
| const file = event.target.files[0]; |
|
|
| 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: |
| const newSplineIndex = self.splines.length; |
| self.splines.push({ |
| points: [ |
| |
| { 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: |
| 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: |
| 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: |
| 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]; |
| |
| |
| if (spline && (spline.isSinglePoint || (spline.points && spline.points.length === 1))) { |
| |
| 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 (!splinePoints || splinePoints.length === 0) { |
| return []; |
| } |
| |
| |
| 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; |
| var pathLength = svgPathElement.getTotalLength(); |
| var points = []; |
|
|
| if (samplingMethod === "speed") { |
| |
| const controlPoints = this.splines[splineIndex].points; |
| const pathPositions = []; |
| |
| |
| for (const cp of controlPoints) { |
| let bestDist = Infinity; |
| let bestPos = 0; |
| |
| |
| 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); |
| } |
| |
| |
| pathPositions.sort((a, b) => a - b); |
| |
| |
| const createSynchronizedMapping = () => { |
| |
| 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]; |
| |
| const density = 1 / Math.max(segLength, 0.0001); |
| segments.push({ |
| position: pathPositions[i], |
| length: segLength, |
| density: density |
| }); |
| } |
| |
| |
| return t => { |
| |
| if (t === 0) return 0; |
| if (t === 1) return pathLength; |
| |
| |
| |
| const firstPos = pathPositions[0]; |
| const lastPos = pathPositions[pathPositions.length - 1]; |
| |
| |
| let totalWeight = 0; |
| let weights = []; |
| |
| for (let i = 0; i < segments.length; i++) { |
| totalWeight += segments[i].density; |
| weights.push(segments[i].density); |
| } |
| |
| |
| const normalizedWeights = weights.map(w => w / totalWeight); |
| |
| |
| let cumulativeWeight = 0; |
| const cumulativeWeights = normalizedWeights.map(w => { |
| cumulativeWeight += w; |
| return cumulativeWeight; |
| }); |
| |
| |
| let segmentIndex = 0; |
| for (let i = 0; i < cumulativeWeights.length; i++) { |
| if (t <= cumulativeWeights[i]) { |
| segmentIndex = i; |
| break; |
| } |
| } |
| |
| |
| const segmentStart = segmentIndex > 0 ? cumulativeWeights[segmentIndex - 1] : 0; |
| const segmentEnd = cumulativeWeights[segmentIndex]; |
| const segmentT = (t - segmentStart) / (segmentEnd - segmentStart); |
| |
| |
| const pathStart = pathPositions[segmentIndex]; |
| const pathEnd = pathPositions[segmentIndex + 1]; |
| const pos = pathStart + segmentT * (pathEnd - pathStart); |
| |
| |
| return pos; |
| }; |
| }; |
| |
| const mapToPath = createSynchronizedMapping(); |
| |
| |
| 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") { |
| |
| var x = (svgWidth / (numSamples - 1)) * i; |
| |
| var point = this.findPointAtX(svgPathElement, x, pathLength); |
| } |
| else if (samplingMethod === "path") { |
| |
| var distance = (pathLength / (numSamples - 1)) * i; |
| |
| var point = svgPathElement.getPointAtLength(distance); |
| } |
|
|
| |
| points.push({ x: point.x, y: point.y }); |
| } |
| return points; |
| } |
| } |
|
|
| findClosestPoints(points, clickedPoint) { |
| |
| 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) }; |
| }); |
| |
| let sortedDistances = distances.sort((a, b) => a.distance - b.distance); |
| let closestPoint1Index = sortedDistances[0].index; |
| let closestPoint2Index = sortedDistances[1].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; |
| } |
|
|
| if (point.x < targetX) { |
| low = mid + 1; |
| } else { |
| high = mid - 1; |
| } |
|
|
| |
| if (Math.abs(point.x - targetX) < Math.abs(bestPoint.x - targetX)) { |
| bestPoint = point; |
| } |
| } |
|
|
| |
| return bestPoint; |
| } |
| } |