UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

244 lines (243 loc) 9.69 kB
"use strict"; // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const Log_1 = __importDefault(require("../core/Log")); const ste_events_1 = require("ste-events"); const StorageUtilities_1 = __importDefault(require("../storage/StorageUtilities")); const IProjectItemData_1 = require("../app/IProjectItemData"); const Utilities_1 = __importDefault(require("../core/Utilities")); const Database_1 = __importDefault(require("./Database")); const TextureDefinition_1 = __importDefault(require("./TextureDefinition")); class ItemTextureCatalogDefinition { _data; _file; _isLoaded = false; _loadedWithComments = false; _onLoaded = new ste_events_1.EventDispatcher(); get isLoaded() { return this._isLoaded; } get file() { return this._file; } get data() { return this._data; } get onLoaded() { return this._onLoaded.asEvent(); } set file(newFile) { this._file = newFile; } get textureData() { if (!this._data) { return undefined; } if (this._data.texture_data === undefined) { this._data.texture_data = {}; } return this._data.texture_data; } getCanonicalizedTexturePathList() { if (!this._data || !this._data.texture_data) { return undefined; } const textureList = []; for (const key in this._data.texture_data) { const texturePathArr = this._data.texture_data[key]; if (texturePathArr && texturePathArr.textures) { if (typeof texturePathArr.textures === "string") { const path = TextureDefinition_1.default.canonicalizeTexturePath(texturePathArr.textures); if (path) { textureList.push(path); } } else if (Array.isArray(texturePathArr.textures)) { for (const texturePath of texturePathArr.textures) { if (typeof texturePath === "string") { const path = TextureDefinition_1.default.canonicalizeTexturePath(texturePath); if (path) { textureList.push(path); } } else if (texturePath) { let tpath = texturePath.path; if (typeof tpath === "string") { tpath = TextureDefinition_1.default.canonicalizeTexturePath(tpath); if (tpath) { textureList.push(tpath); } } } } } } } return textureList; } getTexturePathList() { if (!this._data || !this._data.texture_data) { return undefined; } const textureList = []; for (const key in this._data.texture_data) { const texturePathArr = this._data.texture_data[key]; if (texturePathArr && texturePathArr.textures) { if (typeof texturePathArr.textures === "string") { textureList.push(texturePathArr.textures); } else if (Array.isArray(texturePathArr.textures)) { for (const texturePath of texturePathArr.textures) { if (typeof texturePath === "string") { const path = TextureDefinition_1.default.canonicalizeTexturePath(texturePath); if (path) { textureList.push(path); } } else if (texturePath) { let tpath = texturePath.path; if (typeof tpath === "string") { tpath = TextureDefinition_1.default.canonicalizeTexturePath(tpath); if (tpath) { textureList.push(tpath); } } } } } } } return textureList; } get texturesIdList() { if (!this._data || !this._data.texture_data) { return undefined; } const textureIdList = []; for (const key in this._data.texture_data) { textureIdList.push(key); } return textureIdList; } static async ensureOnFile(file, loadHandler) { let et; if (file.manager === undefined) { et = new ItemTextureCatalogDefinition(); et.file = file; file.manager = et; } if (file.manager !== undefined && file.manager instanceof ItemTextureCatalogDefinition) { et = file.manager; if (!et.isLoaded) { if (loadHandler) { et.onLoaded.subscribe(loadHandler); } await et.load(); } } return et; } persist() { if (this._file === undefined) { return false; } if (!this._data) { return false; } return this._file.setObjectContentIfSemanticallyDifferent(this._data); } getPackRootFolder() { let packRootFolder = undefined; if (this.file && this.file.parentFolder) { let parentFolder = this.file.parentFolder; packRootFolder = StorageUtilities_1.default.getParentOfParentFolderNamed("textures", parentFolder); } return packRootFolder; } getTextureReferences() { const textureRefs = []; if (this.data?.texture_data) { for (const resourceId in this.data.texture_data) { const resource = this.data.texture_data[resourceId]; if (resource && resource.textures) { if (!textureRefs.includes(resourceId)) { textureRefs.push(resourceId); } } } } return textureRefs; } async addChildItems(project, item) { const textureItems = project.getItemsByType(IProjectItemData_1.ProjectItemType.texture); let packRootFolder = this.getPackRootFolder(); let texturePathList = this.getCanonicalizedTexturePathList(); for (const candItem of textureItems) { if (packRootFolder && texturePathList) { if (!candItem.isContentLoaded) { await candItem.loadContent(); } if (candItem.primaryFile) { let relativePath = TextureDefinition_1.default.canonicalizeTexturePath(StorageUtilities_1.default.getBaseRelativePath(candItem.primaryFile, packRootFolder)); if (relativePath) { if (texturePathList && texturePathList.includes(relativePath)) { item.addChildItem(candItem); texturePathList = Utilities_1.default.removeItemInArray(relativePath, texturePathList); } } } } } if (texturePathList) { for (const texturePath of texturePathList) { item.addUnfulfilledRelationship(texturePath, IProjectItemData_1.ProjectItemType.texture, await Database_1.default.isVanillaToken(texturePath)); } } } /** * Loads the definition from the file. * @param preserveComments If true, uses comment-preserving JSON parsing for edit/save cycles. * If false (default), uses efficient standard JSON parsing. * Can be called again with true to "upgrade" a read-only load to read/write. */ async load(preserveComments = false) { // If already loaded with comments, we have the "best" version - nothing more to do if (this._isLoaded && this._loadedWithComments) { return; } // If already loaded without comments and caller doesn't need comments, we're done if (this._isLoaded && !preserveComments) { return; } if (this._file === undefined) { Log_1.default.unexpectedUndefined("ITCDF"); return; } if (!this._file.isContentLoaded) { await this._file.loadContent(); } if (!this._file.content || this._file.content instanceof Uint8Array) { this._isLoaded = true; this._loadedWithComments = preserveComments; this._onLoaded.dispatch(this, this); return; } let data = {}; // Use comment-preserving parser only when needed for editing let result = preserveComments ? StorageUtilities_1.default.getJsonObjectWithComments(this._file) : StorageUtilities_1.default.getJsonObject(this._file); if (result) { data = result; } this._data = data; this._isLoaded = true; this._loadedWithComments = preserveComments; this._onLoaded.dispatch(this, this); } } exports.default = ItemTextureCatalogDefinition;