Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for multiple Spine to share a single atlas #18027

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions editor/i18n/en/assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,10 @@ module.exports = {
save: 'Save',
abort: 'Discard',
},
spine_data: {
atlas: 'Atlas',
atlas_warn: 'Failed to set up the atlas and requires a text file with the .atlas suffix',
},
},

menu: {
Expand Down
4 changes: 4 additions & 0 deletions editor/i18n/zh/assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -493,6 +493,10 @@ module.exports = {
save: '保存',
abort: '丢弃',
},
spine_data: {
atlas: '图集',
atlas_warn: '设置图集失败,需要后缀为 .atlas 的文本文件',
},
},

menu: {
Expand Down
1 change: 1 addition & 0 deletions editor/inspector/assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module.exports = {
'render-pipeline': join(__dirname, './assets/render-pipeline.js'),
'render-texture': join(__dirname, './assets/render-texture.js'),
'sprite-frame': join(__dirname, './assets/sprite-frame.js'),
'spine-data': join(__dirname, './assets/spine-data.js'),
'texture-cube': join(__dirname, './assets/texture-cube.js'),
'video-clip': join(__dirname, './assets/video-clip.js'),
effect: join(__dirname, './assets/effect.js'),
Expand Down
137 changes: 137 additions & 0 deletions editor/inspector/assets/spine-data.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
'use strict';

const { readJSONSync } = require('fs-extra');

exports.template = /* html */`
<section class="spine-data">
<ui-section class="atlas-section" expand>
<ui-prop slot="header">
<ui-label slot="label" value="i18n:ENGINE.assets.spine_data.atlas"></ui-label>
<ui-asset slot="content" class="atlas" droppable="cc.Asset" @confirm.stop></ui-asset>
</ui-prop>
<div class="textures"></div>
</ui-section>
</section>`;

exports.$ = {
container: '.spine-data',
atlasSection: '.atlas-section',
atlas: '.atlas',
textures: '.textures',
};

exports.style = `
.spine-data {
padding-right: 4px;
}

.spine-data > .atlas-section [slot="header"] {
width: 100%;
display: block;
}

.spine-data > .atlas-section[whole] {
padding-left: 20px;
}

.spine-data > .atlas-section > .textures > {}
.spine-data > .atlas-section > .textures > .texture-item {
margin-left: 4px;
}
`;

exports.ready = function() {
const panel = this;

function setAtlas(value) {
panel.metaList.forEach((meta) => {
meta.userData.atlasUuid = value;
});
panel.dispatch('change');
panel.dispatch('snapshot');
}

panel.$.atlas.addEventListener('confirm', async (event) => {
const atlas = event.target.value;
if (!atlas) {
setAtlas(atlas);
return;
}

const assetInfo = await Editor.Message.request('asset-db', 'query-asset-info', atlas);
if (!assetInfo) {
panel.$.atlas.setAttribute('value', '');
return;
}

if (!assetInfo.source.endsWith('.atlas')) {
await Editor.Dialog.warn(Editor.I18n.t('ENGINE.assets.spine_data.atlas_warn'), {
buttons: [
Editor.I18n.t('ENGINE.dialog.confirm'),
],
});
panel.$.atlas.setAttribute('value', '');
return;
}

setAtlas(atlas);
});
};

exports.update = function(assetList, metaList) {
const panel = this;

panel.assetList = assetList;
panel.metaList = metaList;
panel.asset = assetList[0];
panel.meta = metaList[0];

while (panel.$.textures.firstChild) {
panel.$.textures.removeChild(panel.$.textures.firstChild);
}

// 先隐藏箭头,等有数值才显示
panel.$.atlasSection.setAttribute('whole', '');

const libraryJSON = panel.asset.library['.json'];
if (libraryJSON) {
const spData = readJSONSync(libraryJSON);
if (spData && spData.textures && spData.textures.length > 0) {
createTextureSection(spData.textures, panel.$.textures);
}
}
// 只允许显示 .atlas 的资源
panel.$.atlas.setAttribute('filter', JSON.stringify({
pattern: 'db://**/*.atlas',
}));
panel.$.atlas.setAttribute('value', panel.meta.userData.atlasUuid);
};

function createTextureSection(textures, parentElement) {
for (let i = 0; i < textures.length; i++) {
const texture = textures[i];
let item = parentElement.querySelector('.texture-item');
let uiAsset = item && item.querySelector('.ui-asset');
if (!uiAsset) {
item = document.createElement('ui-prop');
item.classList.add('texture-item');
item.setAttribute('readonly', '');
parentElement.appendChild(item);

let type = texture.__expectedType__.split('cc.');
type = type.length > 0 ? type[1] : type[0];

const label = document.createElement('ui-label');
label.setAttribute('slot', 'label');
label.setAttribute('value', i);
item.appendChild(label);

uiAsset = document.createElement('ui-asset');
uiAsset.setAttribute('slot', 'content');
item.appendChild(uiAsset);
}
uiAsset.setAttribute('readonly', '');
uiAsset.setAttribute('value', texture.__uuid__);
uiAsset.setAttribute('droppable', texture.__expectedType__);
}
}
Loading