mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-14 00:54:48 +08:00
* Fix node reference when changing elements * Fix ScriptVariables parsing * Fix invariant text and niagara types * Niagara convert nodes * Move node tests to own files * More Niagara tests * Niagara float and smaller fixes * More Decoding * More decoding * WIP * Float is real * WIP * More types and colors * Test case and small polish * WIP * WIP * Fix niagara script variables merging * Fix Niagara variables * Fixing mirrored ExportPath * Fix Export paths name adjustments * Simplify arc calculation * Simplify a bit arc calculation * source / destionation => origin / target * Minor refactoring * Fix switched link position * Rename some properties for uniformity * Fix input escape * Simplify test * About window * Dialog backdrop style * About dialog touches * Remove dependency and minot improvement * Light mode * Fix link location and css small improvement * Link direction and minor fixes * Some minor fixes and refactoring * Refactoring WIP * Shorting repetitive bits * More tests * Simplify linking tests
79 lines
3.1 KiB
JavaScript
Executable File
79 lines
3.1 KiB
JavaScript
Executable File
import { html } from "lit"
|
|
import FunctionReferenceEntity from "../../entity/FunctionReferenceEntity.js"
|
|
import ObjectReferenceEntity from "../../entity/ObjectReferenceEntity.js"
|
|
import PinTypeEntity from "../../entity/PinTypeEntity.js"
|
|
import StringEntity from "../../entity/StringEntity.js"
|
|
import MinimalPinTemplate from "./MinimalPinTemplate.js"
|
|
|
|
/** @extends MinimalPinTemplate<KnotEntity> */
|
|
export default class KnotPinTemplate extends MinimalPinTemplate {
|
|
|
|
static #wildcardPinType = new PinTypeEntity({
|
|
PinCategory: new StringEntity("wildcard"),
|
|
PinSubCategoryObject: ObjectReferenceEntity.createNoneInstance(),
|
|
PinSubCategoryMemberReference: new FunctionReferenceEntity(),
|
|
})
|
|
|
|
/** @param {PinTypeEntity} type */
|
|
#setType(type) {
|
|
const oppositePin = this.getoppositePin()
|
|
this.element.entity.PinType.copyTypeFrom(type)
|
|
oppositePin.entity.PinType.copyTypeFrom(type)
|
|
this.element.updateType()
|
|
oppositePin.updateType()
|
|
}
|
|
|
|
render() {
|
|
return this.element.isOutput() ? super.render() : html``
|
|
}
|
|
|
|
/** @param {PropertyValues} changedProperties */
|
|
update(changedProperties) {
|
|
super.update(changedProperties)
|
|
if (changedProperties.has("isLinked")) {
|
|
const oppositePin = this.getoppositePin()
|
|
if (!this.element.isLinked && !oppositePin.isLinked) {
|
|
this.#setType(KnotPinTemplate.#wildcardPinType)
|
|
} else if (this.element.isLinked && this.element.pinType == "wildcard") {
|
|
const type = this.element
|
|
.getLinks()
|
|
.map(r => this.blueprint.getPin(r))
|
|
.find(p => p && p.pinType != "wildcard")
|
|
?.entity
|
|
.PinType
|
|
if (type) {
|
|
/** @type {KnotPinTemplate[]} */
|
|
const propagated = [this]
|
|
for (let i = 0; i < propagated.length; ++i) {
|
|
let current = propagated[i]
|
|
current.#setType(type)
|
|
current = /** @type {KnotPinTemplate} */(current.getoppositePin().template)
|
|
current.#setType(type)
|
|
propagated.push(
|
|
...current.element.getLinks().map(r => (
|
|
/** @type {KnotPinTemplate} */(
|
|
this.blueprint.getPin(r).template
|
|
)
|
|
))
|
|
)
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
getoppositePin() {
|
|
const nodeTemplate = /** @type {KnotNodeTemplate} */(this.element.nodeElement.template)
|
|
return this.element.isOutput() ? nodeTemplate.inputPin : nodeTemplate.outputPin
|
|
}
|
|
|
|
/** Location on the grid of a link connecting to this pin */
|
|
getLinkLocation(oppositeDirection = false) {
|
|
if (this.element.isInput()) {
|
|
return this.getoppositePin().getLinkLocation(!oppositeDirection)
|
|
}
|
|
return super.getLinkLocation(oppositeDirection)
|
|
}
|
|
}
|