Update build-runtime-scene.test.ts with new entity types and tests
This commit is contained in:
@@ -2,7 +2,13 @@ import { describe, expect, it } from "vitest";
|
|||||||
|
|
||||||
import { createBoxBrush } from "../../src/document/brushes";
|
import { createBoxBrush } from "../../src/document/brushes";
|
||||||
import { createEmptySceneDocument } from "../../src/document/scene-document";
|
import { createEmptySceneDocument } from "../../src/document/scene-document";
|
||||||
import { createPlayerStartEntity } from "../../src/entities/entity-instances";
|
import {
|
||||||
|
createInteractableEntity,
|
||||||
|
createPlayerStartEntity,
|
||||||
|
createSoundEmitterEntity,
|
||||||
|
createTeleportTargetEntity,
|
||||||
|
createTriggerVolumeEntity
|
||||||
|
} from "../../src/entities/entity-instances";
|
||||||
import { buildRuntimeSceneFromDocument } from "../../src/runtime-three/runtime-scene-build";
|
import { buildRuntimeSceneFromDocument } from "../../src/runtime-three/runtime-scene-build";
|
||||||
|
|
||||||
describe("buildRuntimeSceneFromDocument", () => {
|
describe("buildRuntimeSceneFromDocument", () => {
|
||||||
@@ -31,6 +37,53 @@ describe("buildRuntimeSceneFromDocument", () => {
|
|||||||
},
|
},
|
||||||
yawDegrees: 90
|
yawDegrees: 90
|
||||||
});
|
});
|
||||||
|
const soundEmitter = createSoundEmitterEntity({
|
||||||
|
id: "entity-sound-lobby",
|
||||||
|
position: {
|
||||||
|
x: -1,
|
||||||
|
y: 1,
|
||||||
|
z: 0
|
||||||
|
},
|
||||||
|
radius: 8,
|
||||||
|
gain: 0.75,
|
||||||
|
autoplay: true,
|
||||||
|
loop: false
|
||||||
|
});
|
||||||
|
const triggerVolume = createTriggerVolumeEntity({
|
||||||
|
id: "entity-trigger-door",
|
||||||
|
position: {
|
||||||
|
x: 0,
|
||||||
|
y: 1,
|
||||||
|
z: 2
|
||||||
|
},
|
||||||
|
size: {
|
||||||
|
x: 2,
|
||||||
|
y: 2,
|
||||||
|
z: 1
|
||||||
|
},
|
||||||
|
triggerOnEnter: true,
|
||||||
|
triggerOnExit: false
|
||||||
|
});
|
||||||
|
const teleportTarget = createTeleportTargetEntity({
|
||||||
|
id: "entity-teleport-target-main",
|
||||||
|
position: {
|
||||||
|
x: 6,
|
||||||
|
y: 0,
|
||||||
|
z: -3
|
||||||
|
},
|
||||||
|
yawDegrees: 270
|
||||||
|
});
|
||||||
|
const interactable = createInteractableEntity({
|
||||||
|
id: "entity-interactable-console",
|
||||||
|
position: {
|
||||||
|
x: 1,
|
||||||
|
y: 1,
|
||||||
|
z: 1
|
||||||
|
},
|
||||||
|
radius: 1.5,
|
||||||
|
prompt: "Use Console",
|
||||||
|
enabled: true
|
||||||
|
});
|
||||||
|
|
||||||
const document = {
|
const document = {
|
||||||
...createEmptySceneDocument({ name: "Runtime Slice" }),
|
...createEmptySceneDocument({ name: "Runtime Slice" }),
|
||||||
@@ -38,7 +91,11 @@ describe("buildRuntimeSceneFromDocument", () => {
|
|||||||
[brush.id]: brush
|
[brush.id]: brush
|
||||||
},
|
},
|
||||||
entities: {
|
entities: {
|
||||||
[playerStart.id]: playerStart
|
[playerStart.id]: playerStart,
|
||||||
|
[soundEmitter.id]: soundEmitter,
|
||||||
|
[triggerVolume.id]: triggerVolume,
|
||||||
|
[teleportTarget.id]: teleportTarget,
|
||||||
|
[interactable.id]: interactable
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
document.world.background = {
|
document.world.background = {
|
||||||
@@ -98,6 +155,74 @@ describe("buildRuntimeSceneFromDocument", () => {
|
|||||||
z: 8
|
z: 8
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
expect(runtimeScene.entities).toEqual({
|
||||||
|
playerStarts: [
|
||||||
|
{
|
||||||
|
entityId: "entity-player-start-main",
|
||||||
|
position: {
|
||||||
|
x: 2,
|
||||||
|
y: 0,
|
||||||
|
z: -1
|
||||||
|
},
|
||||||
|
yawDegrees: 90
|
||||||
|
}
|
||||||
|
],
|
||||||
|
soundEmitters: [
|
||||||
|
{
|
||||||
|
entityId: "entity-sound-lobby",
|
||||||
|
position: {
|
||||||
|
x: -1,
|
||||||
|
y: 1,
|
||||||
|
z: 0
|
||||||
|
},
|
||||||
|
radius: 8,
|
||||||
|
gain: 0.75,
|
||||||
|
autoplay: true,
|
||||||
|
loop: false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
triggerVolumes: [
|
||||||
|
{
|
||||||
|
entityId: "entity-trigger-door",
|
||||||
|
position: {
|
||||||
|
x: 0,
|
||||||
|
y: 1,
|
||||||
|
z: 2
|
||||||
|
},
|
||||||
|
size: {
|
||||||
|
x: 2,
|
||||||
|
y: 2,
|
||||||
|
z: 1
|
||||||
|
},
|
||||||
|
triggerOnEnter: true,
|
||||||
|
triggerOnExit: false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
teleportTargets: [
|
||||||
|
{
|
||||||
|
entityId: "entity-teleport-target-main",
|
||||||
|
position: {
|
||||||
|
x: 6,
|
||||||
|
y: 0,
|
||||||
|
z: -3
|
||||||
|
},
|
||||||
|
yawDegrees: 270
|
||||||
|
}
|
||||||
|
],
|
||||||
|
interactables: [
|
||||||
|
{
|
||||||
|
entityId: "entity-interactable-console",
|
||||||
|
position: {
|
||||||
|
x: 1,
|
||||||
|
y: 1,
|
||||||
|
z: 1
|
||||||
|
},
|
||||||
|
radius: 1.5,
|
||||||
|
prompt: "Use Console",
|
||||||
|
enabled: true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
||||||
expect(runtimeScene.playerStart).toEqual({
|
expect(runtimeScene.playerStart).toEqual({
|
||||||
entityId: "entity-player-start-main",
|
entityId: "entity-player-start-main",
|
||||||
position: {
|
position: {
|
||||||
@@ -142,6 +267,13 @@ describe("buildRuntimeSceneFromDocument", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
expect(runtimeScene.playerStart).toBeNull();
|
expect(runtimeScene.playerStart).toBeNull();
|
||||||
|
expect(runtimeScene.entities).toEqual({
|
||||||
|
playerStarts: [],
|
||||||
|
soundEmitters: [],
|
||||||
|
triggerVolumes: [],
|
||||||
|
teleportTargets: [],
|
||||||
|
interactables: []
|
||||||
|
});
|
||||||
expect(runtimeScene.spawn).toEqual({
|
expect(runtimeScene.spawn).toEqual({
|
||||||
source: "fallback",
|
source: "fallback",
|
||||||
entityId: null,
|
entityId: null,
|
||||||
|
|||||||
Reference in New Issue
Block a user