mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-21 03:30:42 +00:00
91 lines
3.7 KiB
TypeScript
91 lines
3.7 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import * as BABYLON from '@babylonjs/core';
|
|
import { defineObject } from '../engine.js';
|
|
import { get7segMeshesOfCurrentTime } from '../utility.js';
|
|
|
|
export const tabletopDigitalClock = defineObject({
|
|
id: 'tabletopDigitalClock',
|
|
options: {
|
|
schema: {
|
|
bodyStyle: {
|
|
type: 'select',
|
|
label: 'Body Style',
|
|
enum: ['color', 'wood'],
|
|
},
|
|
bodyColor: {
|
|
type: 'color',
|
|
label: 'Body Color',
|
|
},
|
|
},
|
|
default: {
|
|
bodyStyle: 'color',
|
|
bodyColor: [0.45, 0.8, 0],
|
|
},
|
|
},
|
|
placement: 'top',
|
|
createInstance: ({ room, options, root }) => {
|
|
return {
|
|
onInited: () => {
|
|
const bodyMesh = root.getChildMeshes().find(m => m.name.includes('__X_BODY__')) as BABYLON.Mesh;
|
|
|
|
const bodyMaterial = bodyMesh.material as BABYLON.PBRMaterial;
|
|
|
|
if (options.bodyStyle === 'color') {
|
|
const [r, g, b] = options.bodyColor;
|
|
bodyMaterial.albedoColor = new BABYLON.Color3(r, g, b);
|
|
}
|
|
|
|
const segmentMeshes = {
|
|
'1a': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_1A__')),
|
|
'1b': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_1B__')),
|
|
'1c': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_1C__')),
|
|
'1d': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_1D__')),
|
|
'1e': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_1E__')),
|
|
'1f': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_1F__')),
|
|
'1g': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_1G__')),
|
|
'2a': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_2A__')),
|
|
'2b': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_2B__')),
|
|
'2c': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_2C__')),
|
|
'2d': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_2D__')),
|
|
'2e': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_2E__')),
|
|
'2f': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_2F__')),
|
|
'2g': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_2G__')),
|
|
'3a': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_3A__')),
|
|
'3b': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_3B__')),
|
|
'3c': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_3C__')),
|
|
'3d': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_3D__')),
|
|
'3e': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_3E__')),
|
|
'3f': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_3F__')),
|
|
'3g': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_3G__')),
|
|
'4a': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_4A__')),
|
|
'4b': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_4B__')),
|
|
'4c': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_4C__')),
|
|
'4d': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_4D__')),
|
|
'4e': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_4E__')),
|
|
'4f': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_4F__')),
|
|
'4g': root.getChildMeshes().find(m => m.name.includes('__TIME_7SEG_4G__')),
|
|
};
|
|
|
|
const colonMeshes = root.getChildMeshes().filter(m => m.name.includes('__TIME_7SEG_COLON__'));
|
|
|
|
room.intervalIds.push(window.setInterval(() => {
|
|
const onMeshes = get7segMeshesOfCurrentTime(segmentMeshes);
|
|
|
|
for (const mesh of Object.values(segmentMeshes)) {
|
|
mesh.isVisible = onMeshes.includes(mesh);
|
|
}
|
|
|
|
for (const mesh of colonMeshes) {
|
|
mesh.isVisible = Date.now() % 2000 < 1000;
|
|
}
|
|
}, 1000));
|
|
},
|
|
interactions: {},
|
|
};
|
|
},
|
|
});
|