mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
* Still WIP * WIP * ArrayEntity parsing fixed * Fix format text entity * Tests for various entity classes and update entity class implementations * More tests and fixed * More entities fixed * Simple entities serialization fixed * Entities tests fixed * Remove serialization bits * Fix Function reference * CustomProperties creating fixed * WIP * Better typing for grammars * Decoding code fixes * Fixing still * Several fixes * rename toString to serialize * Several fixes * More fixes * Moving more stuff out of Utility * Several fixes * Fixing Linear color entity print * Serialization fixes * Fix serialization * Method to compute grammar * Renaming fix * Fix array grammar and equality check * Fix inlined keys * Fix type * Several serialization fixes * Fix undefined dereference * Several fixes * More fixes and cleanup * Fix keys quoting mechanism * Fix natural number assignment * Fix Int64 toString() * Fix quoted keys for inlined arrays * Fix PG pins * Fix several test cases * Types fixes * New pin default value empty * Fix non existing DefaultValue for variadic nodes * Smaller fixes for crashes * Fix link color when attached to knot * Linking test and more reliability operations for adding pins * Improve issue 18 test * More tests and fixes * Fix enum pin entity * Remove failing test
117 lines
3.4 KiB
JavaScript
Executable File
117 lines
3.4 KiB
JavaScript
Executable File
import P from "parsernostrum"
|
|
import Utility from "../Utility.js"
|
|
import Grammar from "../serialization/Grammar.js"
|
|
import IEntity from "./IEntity.js"
|
|
|
|
export default class ObjectReferenceEntity extends IEntity {
|
|
|
|
/** @protected */
|
|
static _quotedParser = P.regArray(new RegExp(
|
|
`'"(${Grammar.Regex.InsideString.source})"'`
|
|
+ "|"
|
|
+ `'(${Grammar.Regex.InsideSingleQuotedString.source})'`
|
|
)).map(([_0, a, b]) => a ?? b)
|
|
static typeReference = P.reg(
|
|
// @ts-expect-error
|
|
new RegExp(Grammar.Regex.Path.source + "|" + Grammar.symbol.getParser().regexp.source)
|
|
)
|
|
static fullReferenceGrammar = this.createFullReferenceGrammar()
|
|
static grammar = this.createGrammar()
|
|
|
|
#type
|
|
get type() {
|
|
return this.#type
|
|
}
|
|
set type(value) {
|
|
this.#type = value
|
|
}
|
|
|
|
#path
|
|
get path() {
|
|
return this.#path
|
|
}
|
|
set path(value) {
|
|
this.#path = value
|
|
}
|
|
|
|
#fullEscaped
|
|
/** @type {String} */
|
|
#full
|
|
get full() {
|
|
return this.#full
|
|
}
|
|
set full(value) {
|
|
this.#full = value
|
|
}
|
|
|
|
|
|
constructor(type = "None", path = "", full = null) {
|
|
super()
|
|
this.#type = type
|
|
this.#path = path
|
|
this.#full = full ?? `"${this.type + (this.path ? (`'${this.path}'`) : "")}"`
|
|
}
|
|
|
|
/** @returns {P<ObjectReferenceEntity>} */
|
|
static createGrammar() {
|
|
return P.alt(
|
|
this.createFullReferenceSerializedGrammar(),
|
|
this.createFullReferenceGrammar(),
|
|
this.createTypeReferenceGrammar(),
|
|
).label("ObjectReferenceEntity")
|
|
}
|
|
|
|
/** @returns {P<ObjectReferenceEntity>} */
|
|
static createFullReferenceGrammar() {
|
|
return P.regArray(
|
|
new RegExp(
|
|
// @ts-expect-error
|
|
"(" + this.typeReference.getParser().regexp.source + ")"
|
|
// @ts-expect-error
|
|
+ "(?:" + this._quotedParser.getParser().parser.regexp.source + ")"
|
|
)
|
|
).map(([full, type, ...path]) => new this(type, path.find(v => v), full))
|
|
}
|
|
|
|
/** @returns {P<ObjectReferenceEntity>} */
|
|
static createFullReferenceSerializedGrammar() {
|
|
return P.regArray(
|
|
new RegExp(
|
|
'"(' + Grammar.Regex.InsideString.source + "?)"
|
|
+ "(?:'(" + Grammar.Regex.InsideSingleQuotedString.source + `?)')?"`
|
|
)
|
|
).map(([full, type, path]) => new this(type, path, full))
|
|
}
|
|
|
|
/** @returns {P<ObjectReferenceEntity>} */
|
|
static createTypeReferenceGrammar() {
|
|
return this.typeReference.map(v => new this(v, "", v))
|
|
}
|
|
|
|
static createNoneInstance() {
|
|
return new ObjectReferenceEntity("None")
|
|
}
|
|
|
|
getName(dropCounter = false) {
|
|
return Utility.getNameFromPath(this.path.replace(/_C$/, ""), dropCounter)
|
|
}
|
|
|
|
doSerialize(insideString = false) {
|
|
if (insideString) {
|
|
if (this.#fullEscaped === undefined) {
|
|
this.#fullEscaped = Utility.escapeString(this.#full, false)
|
|
}
|
|
return this.#fullEscaped
|
|
}
|
|
return this.full
|
|
}
|
|
|
|
/** @param {IEntity} other */
|
|
equals(other) {
|
|
if (!(other instanceof ObjectReferenceEntity)) {
|
|
return false
|
|
}
|
|
return this.type == other.type && this.path == other.path
|
|
}
|
|
}
|