Editor.Panel.extend({ style: ` :host { margin: 5px; } h1 { margin-left: 15px; } .desc { color: gray; margin-left: 15px; margin-right: 15px; } .subdesc { color: gray; } .sub { margin-left: 30px; margin-right: 30px; } .hidden { display: none; } `, template: `

加载中...

`, $: { unripe_area: '#unripe', unripe_tip: '#unripe_tip', ready_area: '#ready', thread_debug: '#td', thread_debug_checkbox: '#tdc', thread_asset_pipeline: '#tap', thread_asset_pipeline_checkbox: '#tapc', thread_audio_system: '#fs', thread_audio_system_checkbox: '#fsc', thread_scheduler: '#ts', thread_scheduler_checkbox: '#tsc', }, ready() { Editor.Ipc.sendToMain('enhance-kit:getSettings', (error, data) => { if (error) { this.$unripe_tip.textContent = '发生错误:' + String(error); this.$unripe_tip.style.color = 'red'; return; } if (data.code === 0) { this.$unripe_area.classList.add('hidden'); this.$ready_area.classList.remove('hidden'); this.$thread_debug_checkbox.checked = data.CC_WORKER_DEBUG; this.$thread_asset_pipeline_checkbox.checked = data.CC_WORKER_ASSET_PIPELINE; this.$thread_audio_system_checkbox.checked = data.CC_WORKER_AUDIO_SYSTEM; this.$thread_scheduler_checkbox.checked = data.CC_WORKER_SCHEDULER; this.$thread_debug_checkbox.addEventListener('change', () => { this.setSettings("CC_WORKER_DEBUG", this.$thread_debug_checkbox.checked); }); this.$thread_asset_pipeline_checkbox.addEventListener('change', () => { this.setSettings("CC_WORKER_ASSET_PIPELINE", this.$thread_asset_pipeline_checkbox.checked); }); this.$thread_audio_system_checkbox.addEventListener('change', () => { this.setSettings("CC_WORKER_AUDIO_SYSTEM", this.$thread_audio_system_checkbox.checked); }); this.$thread_scheduler_checkbox.addEventListener('change', () => { this.setSettings("CC_WORKER_SCHEDULER", this.$thread_scheduler_checkbox.checked); }); } else { this.$unripe_tip.textContent = data.errMsg; this.$unripe_tip.style.color = 'red'; } }, 5000); }, async setSettings(macro, value) { return new Promise((resolve, reject) => { Editor.Ipc.sendToMain('enhance-kit:setSettings', macro, value, (error) => { if (error) { reject(error); } else { resolve(); } }, 3000); }); }, });