| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- 'use strict';
- exports.template = /* html */`
- <ui-section header="i18n:ENGINE.inspector.preview.header" class="preview-section config no-padding" expand>
- <div class="preview">
- <div class="info">
- <ui-label value="JointCount:0" class="joint-count"></ui-label>
- </div>
- <div class="image">
- <canvas class="canvas"></canvas>
- </div>
- </div>
- </ui-section>
- `;
- exports.style = /* css */`
- .preview-section {
- margin-top: 0px;
- }
- .preview {
- border-top: 1px solid var(--color-normal-border);
- }
- .preview > .info {
- padding: 4px 4px 0 4px;
- }
- .preview > .info > ui-label {
- margin-right: 6px;
- }
- .preview > .image {
- height: var(--inspector-footer-preview-height, 200px);
- overflow: hidden;
- display: flex;
- flex: 1;
- }
- .preview >.image > .canvas {
- flex: 1;
- }
- `;
- exports.$ = {
- container: '.preview',
- jointCount: '.joint-count',
- image: '.image',
- canvas: '.canvas',
- };
- async function callSkeletonPreviewFunction(funcName, ...args) {
- return await Editor.Message.request('scene', 'call-preview-function', 'scene:skeleton-preview', funcName, ...args);
- }
- const Elements = {
- preview: {
- ready() {
- const panel = this;
- let _isPreviewDataDirty = false;
- Object.defineProperty(panel, 'isPreviewDataDirty', {
- get() {
- return _isPreviewDataDirty;
- },
- set(value) {
- if (value !== _isPreviewDataDirty) {
- _isPreviewDataDirty = value;
- value && panel.refreshPreview();
- }
- },
- });
- panel.$.canvas.addEventListener('mousedown', async (event) => {
- await callSkeletonPreviewFunction('onMouseDown', { x: event.x, y: event.y, button: event.button });
- async function mousemove(event) {
- await callSkeletonPreviewFunction('onMouseMove', {
- movementX: event.movementX,
- movementY: event.movementY,
- });
- panel.isPreviewDataDirty = true;
- }
- async function mouseup(event) {
- await callSkeletonPreviewFunction('onMouseUp', {
- x: event.x,
- y: event.y,
- });
- document.removeEventListener('mousemove', mousemove);
- document.removeEventListener('mouseup', mouseup);
- panel.isPreviewDataDirty = false;
- }
- document.addEventListener('mousemove', mousemove);
- document.addEventListener('mouseup', mouseup);
- panel.isPreviewDataDirty = true;
- });
- panel.$.canvas.addEventListener('wheel', async (event) => {
- await callSkeletonPreviewFunction('onMouseWheel', {
- wheelDeltaY: event.wheelDeltaY,
- wheelDeltaX: event.wheelDeltaX,
- });
- panel.isPreviewDataDirty = true;
- });
- const GlPreview = Editor._Module.require('PreviewExtends').default;
- panel.glPreview = new GlPreview('scene:skeleton-preview', 'query-skeleton-preview-data');
- function observer() {
- panel.isPreviewDataDirty = true;
- }
- panel.resizeObserver = new window.ResizeObserver(observer);
- panel.resizeObserver.observe(panel.$.image);
- observer();
- },
- async update() {
- const panel = this;
- if (!panel.$.canvas) {
- return;
- }
- await panel.glPreview.init({ width: panel.$.canvas.clientWidth, height: panel.$.canvas.clientHeight });
- const info = await callSkeletonPreviewFunction('setSkeleton', panel.asset.uuid);
- panel.infoUpdate(info);
- this.isPreviewDataDirty = true;
- },
- close() {
- const panel = this;
- panel.resizeObserver.unobserve(panel.$.image);
- },
- },
- info: {
- ready() {
- const panel = this;
- panel.infoUpdate = Elements.info.update.bind(panel);
- },
- update(info) {
- if (!info) {
- return;
- }
- const panel = this;
- panel.$.jointCount.value = 'JointCount:' + info.jointCount;
- panel.isPreviewDataDirty = true;
- },
- close() {
- callSkeletonPreviewFunction('hide');
- },
- },
- };
- exports.methods = {
- async refreshPreview() {
- const panel = this;
- // After await, the panel no longer exists
- if (!panel.$.canvas) {
- return;
- }
- const doDraw = async () => {
- try {
- const canvas = panel.$.canvas;
- const image = panel.$.image;
- const width = image.clientWidth;
- const height = image.clientHeight;
- if (canvas.width !== width || canvas.height !== height) {
- canvas.width = width;
- canvas.height = height;
- await panel.glPreview.initGL(canvas, { width, height });
- await panel.glPreview.resizeGL(width, height);
- }
- const info = await panel.glPreview.queryPreviewData({
- width: canvas.width,
- height: canvas.height,
- });
- panel.glPreview.drawGL(info);
- } catch (e) {
- console.warn(e);
- }
- };
- requestAnimationFrame(async () => {
- await doDraw();
- panel.isPreviewDataDirty = false;
- });
- },
- };
- exports.ready = function() {
- for (const prop in Elements) {
- const element = Elements[prop];
- if (element.ready) {
- element.ready.call(this);
- }
- }
- };
- exports.update = function(assetList, metaList) {
- this.assetList = assetList;
- this.metaList = metaList;
- this.asset = assetList[0];
- this.meta = metaList[0];
- // 如何多选就隐藏预览
- if (assetList.length > 1) {
- this.$.container.style.display = 'none';
- } else {
- this.$.container.style.display = 'block';
- }
- for (const prop in Elements) {
- const element = Elements[prop];
- if (element.update) {
- element.update.call(this);
- }
- }
- };
- exports.close = function() {
- for (const prop in Elements) {
- const element = Elements[prop];
- if (element.close) {
- element.close.call(this);
- }
- }
- };
|