@haiyue/extensions 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +30 -0
- package/dist/animation/Animation2DComponent.d.ts +46 -0
- package/dist/animation/Animation2DExtensionRegistry.d.ts +27 -0
- package/dist/animation/Animation2DRenderSystem.d.ts +89 -0
- package/dist/animation/Animation2DRuntime.d.ts +99 -0
- package/dist/animation/Animation2DStateMachine.d.ts +13 -0
- package/dist/animation/Animation2DStateMachineComponent.d.ts +54 -0
- package/dist/animation/Animation2DStateMachineRuntime.d.ts +30 -0
- package/dist/animation/Animation2DStateMachineSystem.d.ts +14 -0
- package/dist/animation/Animation2DStateMachineVisualRuntime.d.ts +27 -0
- package/dist/animation/Animation2DSystem.d.ts +14 -0
- package/dist/animation/AnimationAssetLoader.d.ts +9 -0
- package/dist/animation/AnimationAudioClip.d.ts +26 -0
- package/dist/animation/AnimationPathTessellator.d.ts +52 -0
- package/dist/animation/AnimationTextRasterizer.d.ts +21 -0
- package/dist/animation/AnimationVisual2D.d.ts +68 -0
- package/dist/animation/HyaAnimation2DClipAdapter.d.ts +16 -0
- package/dist/animation/Particle2DDescriptorAdapter.d.ts +5 -0
- package/dist/animation/runtime/mixer/Action.d.ts +150 -0
- package/dist/animation/runtime/mixer/Mixer.d.ts +54 -0
- package/dist/animation/runtime/mixer/PoseBuffer.d.ts +23 -0
- package/dist/animation/runtime/mixer/Sampler.d.ts +17 -0
- package/dist/animation/runtime/mixer/Types.d.ts +101 -0
- package/dist/animation/runtime/mixer/index.d.ts +6 -0
- package/dist/animation-state-machine/AnimationStateMachine.d.ts +111 -0
- package/dist/animation-state-machine/AnimationStateMachineChannels.d.ts +23 -0
- package/dist/animation-state-machine/runtime/Animation2DStateMachineMixerAdapter.d.ts +51 -0
- package/dist/animation-state-machine/runtime/AnimationStateMachineBlendTreeWeights.d.ts +14 -0
- package/dist/animation-state-machine/runtime/AnimationStateMachineCompiler.d.ts +109 -0
- package/dist/animation-state-machine/runtime/AnimationStateMachineController.d.ts +103 -0
- package/dist/animation-state-machine/runtime/AnimationStateMachineMixerPort.d.ts +35 -0
- package/dist/animation-state-machine/runtime/index.d.ts +7 -0
- package/dist/animation.d.ts +15 -0
- package/dist/animation.js +1171 -0
- package/dist/animation3d/Animation3DAction.d.ts +46 -0
- package/dist/animation3d/Animation3DBinding.d.ts +85 -0
- package/dist/animation3d/Animation3DClip.d.ts +20 -0
- package/dist/animation3d/Animation3DError.d.ts +13 -0
- package/dist/animation3d/Animation3DMixer.d.ts +27 -0
- package/dist/animation3d/Animation3DPose.d.ts +40 -0
- package/dist/animation3d/Animation3DPoseBuffer.d.ts +24 -0
- package/dist/animation3d/Animation3DResource.d.ts +28 -0
- package/dist/animation3d/Animation3DStateMachine.d.ts +95 -0
- package/dist/animation3d/Animation3DStateMachineRuntime.d.ts +70 -0
- package/dist/animation3d/Animation3DTrack.d.ts +19 -0
- package/dist/animation3d/hya/HyaAnimation3DRuntime.d.ts +73 -0
- package/dist/animation3d/hya/HyaAnimation3DStateMachineRuntime.d.ts +65 -0
- package/dist/animation3d/hya/HyaAnimation3DTypes.d.ts +170 -0
- package/dist/animation3d/hya/index.d.ts +4 -0
- package/dist/animation3d/index.d.ts +14 -0
- package/dist/animation3d/runtime/integration/Animation3DStateMachineMixerAdapter.d.ts +81 -0
- package/dist/animation3d/runtime/integration/Animation3DStateMachineMixerIntegration.d.ts +39 -0
- package/dist/animation3d/runtime/integration/index.d.ts +2 -0
- package/dist/animation3d/runtime/mixer/Action.d.ts +150 -0
- package/dist/animation3d/runtime/mixer/Animation3DMixerRuntimeStore.d.ts +6 -0
- package/dist/animation3d/runtime/mixer/Mixer.d.ts +59 -0
- package/dist/animation3d/runtime/mixer/PoseBuffer.d.ts +1 -0
- package/dist/animation3d/runtime/mixer/TrackSampler.d.ts +24 -0
- package/dist/animation3d/runtime/mixer/index.d.ts +4 -0
- package/dist/animation3d/runtime/state-machine/Animation3DBlendTreeWeights.d.ts +1 -0
- package/dist/animation3d/runtime/state-machine/Animation3DStateMachineCompiler.d.ts +1 -0
- package/dist/animation3d/runtime/state-machine/Animation3DStateMachineController.d.ts +1 -0
- package/dist/animation3d/runtime/state-machine/Animation3DStateMachineMixerPort.d.ts +1 -0
- package/dist/animation3d/runtime/state-machine/index.d.ts +6 -0
- package/dist/animation3d.d.ts +5 -0
- package/dist/animation3d.js +1708 -0
- package/dist/benchmark.d.ts +30 -0
- package/dist/benchmark.js +119 -0
- package/dist/canvas-text/CanvasText2DRenderSystem.d.ts +24 -0
- package/dist/canvas-text/CanvasTextComponent.d.ts +18 -0
- package/dist/canvas-text.d.ts +4 -0
- package/dist/canvas-text.js +276 -0
- package/dist/chunks/2d-ui-animation-2d.generated-D4aHzFU2.js +4 -0
- package/dist/chunks/2d-ui-canvas-text-2d.generated-C0Eaej2m.js +4 -0
- package/dist/chunks/2d-ui-spine2d.generated-CUUi8xjl.js +4 -0
- package/dist/chunks/2d-ui-tilemap2d.generated-gebw4mX7.js +4 -0
- package/dist/chunks/Animation2DStateMachine-9IonguNa.js +3245 -0
- package/dist/chunks/AnimationStateMachineController-BIcAh-sT.js +1438 -0
- package/dist/chunks/GltfAnimation3DAdapter-Cu3rQQsW.js +2240 -0
- package/dist/chunks/GltfAnimationRuntime-CRHsLycN.js +631 -0
- package/dist/chunks/RenderSystem2DBase-DDT61dAu.js +227 -0
- package/dist/chunks/Spine2DRuntime-D9M9LAQR.js +3056 -0
- package/dist/chunks/SpineAssetParser-BSDmPge1.js +378 -0
- package/dist/chunks/gltfLoader-Dm22jLYB.js +2085 -0
- package/dist/chunks/pluginUtils-CvwroRMd.js +33 -0
- package/dist/experimental-gltf-worker.d.ts +4 -0
- package/dist/experimental-gltf-worker.js +138 -0
- package/dist/experimental-spine-worker.d.ts +4 -0
- package/dist/experimental-spine-worker.js +110 -0
- package/dist/gltf/GltfAccessorReader.d.ts +7 -0
- package/dist/gltf/GltfAnimation3DAdapter.d.ts +47 -0
- package/dist/gltf/GltfAnimationRuntime.d.ts +10 -0
- package/dist/gltf/GltfAssetWorkerClient.d.ts +20 -0
- package/dist/gltf/GltfCompatibilityReport.d.ts +70 -0
- package/dist/gltf/GltfConservativeBounds.d.ts +18 -0
- package/dist/gltf/GltfDracoDecoder.d.ts +4 -0
- package/dist/gltf/GltfExtensionAdapter.d.ts +54 -0
- package/dist/gltf/GltfLoaderContract.d.ts +249 -0
- package/dist/gltf/GltfLoaderErrors.d.ts +4 -0
- package/dist/gltf/GltfMaterialDescriptor.d.ts +23 -0
- package/dist/gltf/GltfMaterialEncoder.d.ts +20 -0
- package/dist/gltf/GltfMaterialLoader.d.ts +6 -0
- package/dist/gltf/GltfModelComponent.d.ts +72 -0
- package/dist/gltf/GltfModelSystem.d.ts +37 -0
- package/dist/gltf/GltfPlugin.d.ts +6 -0
- package/dist/gltf/GltfSchema.d.ts +225 -0
- package/dist/gltf/GltfUvSemanticPlanner.d.ts +33 -0
- package/dist/gltf/gltfLoader.d.ts +9 -0
- package/dist/gltf-animation3d.d.ts +3 -0
- package/dist/gltf-animation3d.js +8 -0
- package/dist/gltf-worker-runtime.d.ts +7 -0
- package/dist/gltf-worker-runtime.js +6981 -0
- package/dist/gltf.d.ts +12 -0
- package/dist/gltf.js +517 -0
- package/dist/grid/Grid2DComponent.d.ts +25 -0
- package/dist/grid.d.ts +2 -0
- package/dist/grid.js +56 -0
- package/dist/hya-state-machine.d.ts +7 -0
- package/dist/hya-state-machine.js +2934 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +7 -0
- package/dist/internal/2d-ui-shader-artifact.js +870 -0
- package/dist/plugins/pluginUtils.d.ts +20 -0
- package/dist/plugins.d.ts +6 -0
- package/dist/shaders/generated/2d-ui-artifact.generated.d.ts +658 -0
- package/dist/spine/Spine2DComponent.d.ts +116 -0
- package/dist/spine/Spine2DGpuRenderer.d.ts +65 -0
- package/dist/spine/Spine2DRenderSystem.d.ts +27 -0
- package/dist/spine/Spine2DRuntime.d.ts +103 -0
- package/dist/spine/SpineAnimationBoneTimelines.d.ts +8 -0
- package/dist/spine/SpineAssetParser.d.ts +18 -0
- package/dist/spine/SpineAssetWorkerClient.d.ts +19 -0
- package/dist/spine/SpineAssetWorkerContract.d.ts +6 -0
- package/dist/spine/SpineAtlasParser.d.ts +21 -0
- package/dist/spine/SpineFloatBuilder.d.ts +15 -0
- package/dist/spine/SpinePathConstraintSolver.d.ts +32 -0
- package/dist/spine/SpinePlugin.d.ts +8 -0
- package/dist/spine/SpineSkeletonRuntime.d.ts +185 -0
- package/dist/spine/SpineSlotAnimation.d.ts +17 -0
- package/dist/spine/SpineTimelineRuntime.d.ts +25 -0
- package/dist/spine/SpineVertexBuilder.d.ts +61 -0
- package/dist/spine.d.ts +7 -0
- package/dist/spine.js +578 -0
- package/dist/tilemap/Tilemap2DComponent.d.ts +110 -0
- package/dist/tilemap/Tilemap2DRenderSystem.d.ts +11 -0
- package/dist/tilemap/Tilemap2DRenderer.d.ts +24 -0
- package/dist/tilemap/TilemapPlugin.d.ts +8 -0
- package/dist/tilemap.d.ts +6 -0
- package/dist/tilemap.js +535 -0
- package/dist/tween/Tween2DComponent.d.ts +70 -0
- package/dist/tween/Tween2DSystem.d.ts +12 -0
- package/dist/tween.d.ts +4 -0
- package/dist/tween.js +138 -0
- package/dist/utils/RenderSystem2DBase.d.ts +42 -0
- package/dist/utils/arrayAccess.d.ts +4 -0
- package/dist/utils/camera2d.d.ts +12 -0
- package/dist/utils/render2dGpu.d.ts +32 -0
- package/package.json +124 -0
- package/src/animation/Animation2DComponent.ts +135 -0
- package/src/animation/Animation2DExtensionRegistry.ts +52 -0
- package/src/animation/Animation2DRenderSystem.ts +1026 -0
- package/src/animation/Animation2DRuntime.ts +1326 -0
- package/src/animation/Animation2DStateMachine.ts +39 -0
- package/src/animation/Animation2DStateMachineComponent.ts +228 -0
- package/src/animation/Animation2DStateMachineRuntime.ts +141 -0
- package/src/animation/Animation2DStateMachineSystem.ts +60 -0
- package/src/animation/Animation2DStateMachineVisualRuntime.ts +282 -0
- package/src/animation/Animation2DSystem.ts +72 -0
- package/src/animation/AnimationAssetLoader.ts +84 -0
- package/src/animation/AnimationAudioClip.ts +140 -0
- package/src/animation/AnimationPathTessellator.ts +691 -0
- package/src/animation/AnimationTextRasterizer.ts +340 -0
- package/src/animation/AnimationVisual2D.ts +153 -0
- package/src/animation/HyaAnimation2DClipAdapter.ts +845 -0
- package/src/animation/Particle2DDescriptorAdapter.ts +35 -0
- package/src/animation/runtime/mixer/Action.ts +876 -0
- package/src/animation/runtime/mixer/Mixer.ts +505 -0
- package/src/animation/runtime/mixer/PoseBuffer.ts +105 -0
- package/src/animation/runtime/mixer/Sampler.ts +252 -0
- package/src/animation/runtime/mixer/Types.ts +138 -0
- package/src/animation/runtime/mixer/index.ts +31 -0
- package/src/animation-state-machine/AnimationStateMachine.ts +146 -0
- package/src/animation-state-machine/AnimationStateMachineChannels.ts +116 -0
- package/src/animation-state-machine/runtime/Animation2DStateMachineMixerAdapter.ts +197 -0
- package/src/animation-state-machine/runtime/AnimationStateMachineBlendTreeWeights.ts +503 -0
- package/src/animation-state-machine/runtime/AnimationStateMachineCompiler.ts +763 -0
- package/src/animation-state-machine/runtime/AnimationStateMachineController.ts +987 -0
- package/src/animation-state-machine/runtime/AnimationStateMachineMixerPort.ts +54 -0
- package/src/animation-state-machine/runtime/index.ts +47 -0
- package/src/animation.ts +33 -0
- package/src/animation3d/Animation3DAction.ts +73 -0
- package/src/animation3d/Animation3DBinding.ts +116 -0
- package/src/animation3d/Animation3DClip.ts +22 -0
- package/src/animation3d/Animation3DError.ts +34 -0
- package/src/animation3d/Animation3DMixer.ts +82 -0
- package/src/animation3d/Animation3DPose.ts +100 -0
- package/src/animation3d/Animation3DPoseBuffer.ts +85 -0
- package/src/animation3d/Animation3DResource.ts +49 -0
- package/src/animation3d/Animation3DStateMachine.ts +126 -0
- package/src/animation3d/Animation3DStateMachineRuntime.ts +191 -0
- package/src/animation3d/Animation3DTrack.ts +29 -0
- package/src/animation3d/hya/HyaAnimation3DRuntime.ts +756 -0
- package/src/animation3d/hya/HyaAnimation3DStateMachineRuntime.ts +618 -0
- package/src/animation3d/hya/HyaAnimation3DTypes.ts +168 -0
- package/src/animation3d/hya/index.ts +10 -0
- package/src/animation3d/index.ts +76 -0
- package/src/animation3d/runtime/integration/Animation3DStateMachineMixerAdapter.ts +325 -0
- package/src/animation3d/runtime/integration/Animation3DStateMachineMixerIntegration.ts +158 -0
- package/src/animation3d/runtime/integration/index.ts +9 -0
- package/src/animation3d/runtime/mixer/Action.ts +833 -0
- package/src/animation3d/runtime/mixer/Animation3DMixerRuntimeStore.ts +26 -0
- package/src/animation3d/runtime/mixer/Mixer.ts +562 -0
- package/src/animation3d/runtime/mixer/PoseBuffer.ts +1 -0
- package/src/animation3d/runtime/mixer/TrackSampler.ts +399 -0
- package/src/animation3d/runtime/mixer/index.ts +8 -0
- package/src/animation3d/runtime/state-machine/Animation3DBlendTreeWeights.ts +4 -0
- package/src/animation3d/runtime/state-machine/Animation3DStateMachineCompiler.ts +1 -0
- package/src/animation3d/runtime/state-machine/Animation3DStateMachineController.ts +1 -0
- package/src/animation3d/runtime/state-machine/Animation3DStateMachineMixerPort.ts +1 -0
- package/src/animation3d/runtime/state-machine/index.ts +45 -0
- package/src/animation3d.ts +5 -0
- package/src/benchmark.ts +168 -0
- package/src/canvas-text/CanvasText2DRenderSystem.ts +292 -0
- package/src/canvas-text/CanvasTextComponent.ts +47 -0
- package/src/canvas-text.ts +4 -0
- package/src/experimental-gltf-worker.ts +18 -0
- package/src/experimental-spine-worker.ts +9 -0
- package/src/gltf/GltfAccessorReader.ts +271 -0
- package/src/gltf/GltfAnimation3DAdapter.ts +680 -0
- package/src/gltf/GltfAnimationRuntime.ts +392 -0
- package/src/gltf/GltfAssetWorkerClient.ts +136 -0
- package/src/gltf/GltfCompatibilityReport.ts +214 -0
- package/src/gltf/GltfConservativeBounds.ts +219 -0
- package/src/gltf/GltfDracoDecoder.ts +251 -0
- package/src/gltf/GltfExtensionAdapter.ts +340 -0
- package/src/gltf/GltfLoaderContract.ts +333 -0
- package/src/gltf/GltfLoaderErrors.ts +59 -0
- package/src/gltf/GltfMaterialDescriptor.ts +134 -0
- package/src/gltf/GltfMaterialEncoder.ts +173 -0
- package/src/gltf/GltfMaterialLoader.ts +293 -0
- package/src/gltf/GltfModelComponent.ts +115 -0
- package/src/gltf/GltfModelSystem.ts +208 -0
- package/src/gltf/GltfPlugin.ts +84 -0
- package/src/gltf/GltfSchema.ts +229 -0
- package/src/gltf/GltfUvSemanticPlanner.ts +166 -0
- package/src/gltf/gltfLoader.ts +910 -0
- package/src/gltf-animation3d.ts +10 -0
- package/src/gltf-worker-runtime.ts +10 -0
- package/src/gltf.ts +56 -0
- package/src/grid/Grid2DComponent.ts +69 -0
- package/src/grid.ts +2 -0
- package/src/hya-state-machine.ts +19 -0
- package/src/index.ts +2 -0
- package/src/plugins/pluginUtils.ts +50 -0
- package/src/plugins.ts +6 -0
- package/src/shaders/generated/2d-ui-animation-2d.generated.wgsl +242 -0
- package/src/shaders/generated/2d-ui-artifact.generated.ts +867 -0
- package/src/shaders/generated/2d-ui-canvas-text-2d.generated.wgsl +38 -0
- package/src/shaders/generated/2d-ui-spine2d.generated.wgsl +41 -0
- package/src/shaders/generated/2d-ui-tilemap2d.generated.wgsl +36 -0
- package/src/spine/Spine2DComponent.ts +168 -0
- package/src/spine/Spine2DGpuRenderer.ts +449 -0
- package/src/spine/Spine2DRenderSystem.ts +199 -0
- package/src/spine/Spine2DRuntime.ts +1529 -0
- package/src/spine/SpineAnimationBoneTimelines.ts +30 -0
- package/src/spine/SpineAssetParser.ts +20 -0
- package/src/spine/SpineAssetWorkerClient.ts +112 -0
- package/src/spine/SpineAssetWorkerContract.ts +4 -0
- package/src/spine/SpineAtlasParser.ts +127 -0
- package/src/spine/SpineFloatBuilder.ts +66 -0
- package/src/spine/SpinePathConstraintSolver.ts +582 -0
- package/src/spine/SpinePlugin.ts +76 -0
- package/src/spine/SpineSkeletonRuntime.ts +521 -0
- package/src/spine/SpineSlotAnimation.ts +195 -0
- package/src/spine/SpineTimelineRuntime.ts +453 -0
- package/src/spine/SpineVertexBuilder.ts +686 -0
- package/src/spine.ts +7 -0
- package/src/tilemap/Tilemap2DComponent.ts +232 -0
- package/src/tilemap/Tilemap2DRenderSystem.ts +58 -0
- package/src/tilemap/Tilemap2DRenderer.ts +289 -0
- package/src/tilemap/TilemapPlugin.ts +75 -0
- package/src/tilemap.ts +6 -0
- package/src/tween/Tween2DComponent.ts +83 -0
- package/src/tween/Tween2DSystem.ts +78 -0
- package/src/tween.ts +4 -0
- package/src/types/earcut.d.ts +7 -0
- package/src/types/wgsl.d.ts +4 -0
- package/src/utils/RenderSystem2DBase.ts +164 -0
- package/src/utils/arrayAccess.ts +17 -0
- package/src/utils/camera2d.ts +68 -0
- package/src/utils/render2dGpu.ts +132 -0
- package/test/fixtures/gltf/animation-characterization.gltf +344 -0
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
import { estimateTextureBytes, isEntityDisabledInHierarchyCached, getExtensionGPUResourceTracker, requireEngineDevice } from '@haiyue/engine/extension-authoring';
|
|
2
|
+
import { Transform3D, Camera2D } from '@haiyue/engine/components';
|
|
3
|
+
import { System } from '@haiyue/engine/ecs';
|
|
4
|
+
import '@haiyue/engine';
|
|
5
|
+
import { mat4 } from 'wgpu-matrix';
|
|
6
|
+
|
|
7
|
+
function createCamera2DScratch() {
|
|
8
|
+
return {
|
|
9
|
+
viewMatrix: mat4.identity(),
|
|
10
|
+
viewProjMatrix: mat4.identity(),
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
function compute2DViewProjection(engine, cameraEntity, camera, scratch = createCamera2DScratch()) {
|
|
14
|
+
camera.resize(engine.displayWidth, engine.displayHeight);
|
|
15
|
+
const transform = cameraEntity.getComponent(Transform3D);
|
|
16
|
+
if (!transform)
|
|
17
|
+
return camera.projectionMatrix;
|
|
18
|
+
transform.updateWorldMatrix();
|
|
19
|
+
const viewMatrix = mat4.inverse(transform.worldMatrix, scratch.viewMatrix);
|
|
20
|
+
return mat4.multiply(camera.projectionMatrix, viewMatrix, scratch.viewProjMatrix);
|
|
21
|
+
}
|
|
22
|
+
function write2DCameraBuffer(queue, buffer, viewProj) {
|
|
23
|
+
queue.writeBuffer(buffer, 0, viewProj.buffer, viewProj.byteOffset, viewProj.byteLength);
|
|
24
|
+
}
|
|
25
|
+
mat4.identity();
|
|
26
|
+
|
|
27
|
+
function createCamera2DLayout(device) {
|
|
28
|
+
return device.createBindGroupLayout({
|
|
29
|
+
entries: [{ binding: 0, visibility: GPUShaderStage.VERTEX, buffer: { type: 'uniform' } }],
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
function createCamera2DGpu(device, tracker, layout = createCamera2DLayout(device)) {
|
|
33
|
+
const buffer = device.createBuffer({ size: 64, usage: GPUBufferUsage.UNIFORM | GPUBufferUsage.COPY_DST });
|
|
34
|
+
tracker?.trackBuffer(buffer, 'render2d.cameraBuffer', 64);
|
|
35
|
+
const bindGroup = device.createBindGroup({
|
|
36
|
+
layout,
|
|
37
|
+
entries: [{ binding: 0, resource: { buffer } }],
|
|
38
|
+
});
|
|
39
|
+
return { layout, buffer, bindGroup, ...(tracker === undefined ? {} : { tracker }) };
|
|
40
|
+
}
|
|
41
|
+
function createObject2DLayout(device) {
|
|
42
|
+
return device.createBindGroupLayout({
|
|
43
|
+
entries: [{ binding: 0, visibility: GPUShaderStage.VERTEX, buffer: { type: 'uniform' } }],
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
function createObject2DGpu(device, layout, tracker) {
|
|
47
|
+
const buffer = device.createBuffer({ size: 64, usage: GPUBufferUsage.UNIFORM | GPUBufferUsage.COPY_DST });
|
|
48
|
+
tracker?.trackBuffer(buffer, 'render2d.objectBuffer', 64);
|
|
49
|
+
return {
|
|
50
|
+
buffer,
|
|
51
|
+
bindGroup: device.createBindGroup({
|
|
52
|
+
layout,
|
|
53
|
+
entries: [{ binding: 0, resource: { buffer } }],
|
|
54
|
+
}),
|
|
55
|
+
snapshot: createMatrixSnapshot(),
|
|
56
|
+
...(tracker === undefined ? {} : { tracker }),
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
function createTexture2DGpu(device, fallbackAlpha = 255, tracker) {
|
|
60
|
+
const layout = device.createBindGroupLayout({
|
|
61
|
+
entries: [
|
|
62
|
+
{ binding: 0, visibility: GPUShaderStage.FRAGMENT, texture: { sampleType: 'float' } },
|
|
63
|
+
{ binding: 1, visibility: GPUShaderStage.FRAGMENT, sampler: { type: 'filtering' } },
|
|
64
|
+
],
|
|
65
|
+
});
|
|
66
|
+
const sampler = device.createSampler({ magFilter: 'linear', minFilter: 'linear' });
|
|
67
|
+
const fallbackTexture = device.createTexture({
|
|
68
|
+
size: [1, 1],
|
|
69
|
+
format: 'rgba8unorm',
|
|
70
|
+
usage: GPUTextureUsage.TEXTURE_BINDING | GPUTextureUsage.COPY_DST,
|
|
71
|
+
});
|
|
72
|
+
tracker?.trackTexture(fallbackTexture, 'render2d.fallbackTexture', estimateTextureBytes([1, 1, 1], 'rgba8unorm'));
|
|
73
|
+
device.queue.writeTexture({ texture: fallbackTexture }, new Uint8Array([255, 255, 255, fallbackAlpha]), { bytesPerRow: 4 }, [1, 1]);
|
|
74
|
+
const fallbackBindGroup = device.createBindGroup({
|
|
75
|
+
layout,
|
|
76
|
+
entries: [
|
|
77
|
+
{ binding: 0, resource: fallbackTexture.createView() },
|
|
78
|
+
{ binding: 1, resource: sampler },
|
|
79
|
+
],
|
|
80
|
+
});
|
|
81
|
+
return { layout, sampler, fallbackTexture, fallbackBindGroup, ...(tracker === undefined ? {} : { tracker }) };
|
|
82
|
+
}
|
|
83
|
+
function writeFloatBuffer(queue, buffer, data) {
|
|
84
|
+
queue.writeBuffer(buffer, 0, data.buffer, data.byteOffset, data.byteLength);
|
|
85
|
+
}
|
|
86
|
+
function matrixEquals(a, b) {
|
|
87
|
+
for (let i = 0; i < 16; i++) {
|
|
88
|
+
if (a[i] !== b[i])
|
|
89
|
+
return false;
|
|
90
|
+
}
|
|
91
|
+
return true;
|
|
92
|
+
}
|
|
93
|
+
function createMatrixSnapshot() {
|
|
94
|
+
const snapshot = new Float32Array(16);
|
|
95
|
+
snapshot.fill(Number.NaN);
|
|
96
|
+
return snapshot;
|
|
97
|
+
}
|
|
98
|
+
function writeObjectMatrixIfChanged(queue, gpu, matrix) {
|
|
99
|
+
if (matrixEquals(gpu.snapshot, matrix))
|
|
100
|
+
return false;
|
|
101
|
+
writeFloatBuffer(queue, gpu.buffer, matrix);
|
|
102
|
+
gpu.snapshot.set(matrix);
|
|
103
|
+
return true;
|
|
104
|
+
}
|
|
105
|
+
function destroyCamera2DGpu(gpu) {
|
|
106
|
+
gpu.tracker?.untrackBuffer(gpu.buffer);
|
|
107
|
+
gpu.buffer.destroy();
|
|
108
|
+
}
|
|
109
|
+
function destroyObject2DGpu(gpu) {
|
|
110
|
+
gpu.tracker?.untrackBuffer(gpu.buffer);
|
|
111
|
+
gpu.buffer.destroy();
|
|
112
|
+
}
|
|
113
|
+
function destroyTexture2DGpu(gpu) {
|
|
114
|
+
gpu.tracker?.untrackTexture(gpu.fallbackTexture);
|
|
115
|
+
gpu.fallbackTexture.destroy();
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
class RenderSystem2DBase extends System {
|
|
119
|
+
engine;
|
|
120
|
+
cameraEntity;
|
|
121
|
+
disabledHierarchyCache = new Map();
|
|
122
|
+
liveEntityIds = new Set();
|
|
123
|
+
loadOp;
|
|
124
|
+
recoveryLabel;
|
|
125
|
+
recoverySource;
|
|
126
|
+
unregisterRecovery;
|
|
127
|
+
constructor(rule, engine, cameraEntity, options = {}, name) {
|
|
128
|
+
super(rule);
|
|
129
|
+
this.engine = engine;
|
|
130
|
+
this.cameraEntity = cameraEntity;
|
|
131
|
+
this.loadOp = options.loadOp ?? 'load';
|
|
132
|
+
if (name)
|
|
133
|
+
this.name = name;
|
|
134
|
+
if (options.priority !== undefined)
|
|
135
|
+
this.priority = options.priority;
|
|
136
|
+
this.recoveryLabel = `${name ?? this.constructor.name}:${this.id}`;
|
|
137
|
+
this.recoverySource = { kind: 'component-render-system', system: name ?? this.constructor.name };
|
|
138
|
+
this.unregisterRecovery = engine.registerDeviceRecoveryParticipant?.(this) ?? null;
|
|
139
|
+
}
|
|
140
|
+
setCameraEntity(cameraEntity) {
|
|
141
|
+
this.cameraEntity = cameraEntity;
|
|
142
|
+
return this;
|
|
143
|
+
}
|
|
144
|
+
getCamera2D(context) {
|
|
145
|
+
return this.getCameraEntity(context).getComponent(Camera2D);
|
|
146
|
+
}
|
|
147
|
+
getFrameData(context) {
|
|
148
|
+
const cameraEntity = this.getCameraEntity(context);
|
|
149
|
+
const frameData = context.frameData ?? cameraEntity.world?.frameData;
|
|
150
|
+
if (!frameData)
|
|
151
|
+
throw new Error(`${this.name} requires frame data from its render context or camera usage.`);
|
|
152
|
+
return frameData;
|
|
153
|
+
}
|
|
154
|
+
computeCameraViewProjection(camera, context) {
|
|
155
|
+
if (context) {
|
|
156
|
+
return this.getFrameData(context).getCamera2D(this.getCameraEntity(context), camera, context.view?.displayWidth ?? this.engine.displayWidth, context.view?.displayHeight ?? this.engine.displayHeight).viewProjectionMatrix;
|
|
157
|
+
}
|
|
158
|
+
return compute2DViewProjection(this.engine, this.cameraEntity, camera);
|
|
159
|
+
}
|
|
160
|
+
writeCameraBuffer(queue, buffer, context) {
|
|
161
|
+
const camera = this.getCamera2D(context);
|
|
162
|
+
if (!camera)
|
|
163
|
+
return false;
|
|
164
|
+
write2DCameraBuffer(queue, buffer, this.computeCameraViewProjection(camera, context));
|
|
165
|
+
return true;
|
|
166
|
+
}
|
|
167
|
+
getWorldMatrix2D(entity, context) {
|
|
168
|
+
return this.getFrameData(context).getWorldMatrix2D(entity);
|
|
169
|
+
}
|
|
170
|
+
getCameraEntity(context) {
|
|
171
|
+
return context?.view?.camera.getComponent(Camera2D) ? context.view.camera : this.cameraEntity;
|
|
172
|
+
}
|
|
173
|
+
isEntityRenderable(entity) {
|
|
174
|
+
return !isEntityDisabledInHierarchyCached(entity, this.disabledHierarchyCache);
|
|
175
|
+
}
|
|
176
|
+
beginLiveEntityTracking() {
|
|
177
|
+
this.liveEntityIds.clear();
|
|
178
|
+
this.disabledHierarchyCache.clear();
|
|
179
|
+
return this.liveEntityIds;
|
|
180
|
+
}
|
|
181
|
+
markEntityLive(entity) {
|
|
182
|
+
this.liveEntityIds.add(typeof entity === 'number' ? entity : entity.id);
|
|
183
|
+
}
|
|
184
|
+
createObjectGpu(layout) {
|
|
185
|
+
return createObject2DGpu(requireEngineDevice(this.engine), layout, getExtensionGPUResourceTracker(this.engine));
|
|
186
|
+
}
|
|
187
|
+
destroyObjectGpu(objectGpu) {
|
|
188
|
+
destroyObject2DGpu(objectGpu);
|
|
189
|
+
}
|
|
190
|
+
getOrCreateEntityGpu(cache, entity, create) {
|
|
191
|
+
let gpu = cache.get(entity.id);
|
|
192
|
+
if (!gpu) {
|
|
193
|
+
gpu = create();
|
|
194
|
+
cache.set(entity.id, gpu);
|
|
195
|
+
}
|
|
196
|
+
return gpu;
|
|
197
|
+
}
|
|
198
|
+
releaseEntityGpuEntriesNotIn(cache, destroy, liveEntities = this.liveEntityIds) {
|
|
199
|
+
for (const [entityId, gpu] of cache) {
|
|
200
|
+
if (!liveEntities.has(entityId)) {
|
|
201
|
+
destroy(gpu);
|
|
202
|
+
cache.delete(entityId);
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
destroyEntityGpuEntries(cache, destroy) {
|
|
207
|
+
for (const gpu of cache.values())
|
|
208
|
+
destroy(gpu);
|
|
209
|
+
cache.clear();
|
|
210
|
+
}
|
|
211
|
+
suspendForDeviceLoss() {
|
|
212
|
+
this.releaseGpuResourcesForRecovery();
|
|
213
|
+
}
|
|
214
|
+
recoverGpuResource(_device, signal) {
|
|
215
|
+
if (signal.aborted)
|
|
216
|
+
throw signal.reason;
|
|
217
|
+
this.restoreGpuResourcesAfterRecovery();
|
|
218
|
+
}
|
|
219
|
+
destroy() {
|
|
220
|
+
this.unregisterRecovery?.();
|
|
221
|
+
return super.destroy();
|
|
222
|
+
}
|
|
223
|
+
restoreGpuResourcesAfterRecovery() { }
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
export { RenderSystem2DBase as R, destroyTexture2DGpu as a, createObject2DLayout as b, createCamera2DGpu as c, destroyCamera2DGpu as d, createTexture2DGpu as e, writeFloatBuffer as f, createObject2DGpu as g, destroyObject2DGpu as h, createCamera2DLayout as i, writeObjectMatrixIfChanged as w };
|
|
227
|
+
//# sourceMappingURL=RenderSystem2DBase-DDT61dAu.js.map
|