mirror of https://github.com/CesiumGS/cesium.git
401 lines
12 KiB
JavaScript
401 lines
12 KiB
JavaScript
import {
|
|
Cartesian3,
|
|
Color,
|
|
DistanceDisplayCondition,
|
|
JulianDate,
|
|
Math as CesiumMath,
|
|
TimeInterval,
|
|
TimeIntervalCollection,
|
|
CallbackProperty,
|
|
EllipseGeometryUpdater,
|
|
Entity,
|
|
StaticOutlineGeometryBatch,
|
|
TimeIntervalCollectionProperty,
|
|
ShadowMode,
|
|
} from "../../index.js";
|
|
|
|
import createScene from "../../../../Specs/createScene.js";
|
|
import pollToPromise from "../../../../Specs/pollToPromise.js";
|
|
|
|
describe("DataSources/StaticOutlineGeometryBatch", function () {
|
|
const time = JulianDate.now();
|
|
let scene;
|
|
beforeAll(function () {
|
|
scene = createScene();
|
|
});
|
|
|
|
afterAll(function () {
|
|
scene.destroyForSpecs();
|
|
});
|
|
|
|
it("updates color attribute after rebuilding primitive", function () {
|
|
const batch = new StaticOutlineGeometryBatch(
|
|
scene.primitives,
|
|
scene,
|
|
false,
|
|
ShadowMode.DISABLED,
|
|
);
|
|
|
|
const entity = new Entity({
|
|
position: new Cartesian3(1234, 5678, 9101112),
|
|
ellipse: {
|
|
semiMajorAxis: 2,
|
|
semiMinorAxis: 1,
|
|
show: new CallbackProperty(function () {
|
|
return true;
|
|
}, false),
|
|
outline: true,
|
|
outlineColor: Color.RED,
|
|
height: 0,
|
|
},
|
|
});
|
|
|
|
const updater = new EllipseGeometryUpdater(entity, scene);
|
|
batch.add(time, updater);
|
|
|
|
return pollToPromise(function () {
|
|
scene.initializeFrame();
|
|
const isUpdated = batch.update(time);
|
|
scene.render(time);
|
|
return isUpdated;
|
|
}).then(function () {
|
|
expect(scene.primitives.length).toEqual(1);
|
|
const primitive = scene.primitives.get(0);
|
|
const attributes = primitive.getGeometryInstanceAttributes(entity);
|
|
expect(attributes.color).toEqual([255, 0, 0, 255]);
|
|
|
|
entity.ellipse.outlineColor = Color.GREEN;
|
|
updater._onEntityPropertyChanged(entity, "ellipse");
|
|
batch.remove(updater);
|
|
batch.add(time, updater);
|
|
return pollToPromise(function () {
|
|
scene.initializeFrame();
|
|
const isUpdated = batch.update(time);
|
|
scene.render(time);
|
|
return isUpdated;
|
|
}).then(function () {
|
|
expect(scene.primitives.length).toEqual(1);
|
|
const primitive = scene.primitives.get(0);
|
|
const attributes = primitive.getGeometryInstanceAttributes(entity);
|
|
expect(attributes.color).toEqual([0, 128, 0, 255]);
|
|
batch.removeAllPrimitives();
|
|
});
|
|
});
|
|
});
|
|
|
|
it("updates with sampled color out of range", function () {
|
|
const validTime = JulianDate.fromIso8601("2018-02-14T04:10:00+1100");
|
|
const outOfRangeTime = JulianDate.fromIso8601("2018-02-14T04:20:00+1100");
|
|
const color = new TimeIntervalCollectionProperty();
|
|
color.intervals.addInterval(
|
|
TimeInterval.fromIso8601({
|
|
iso8601: "2018-02-14T04:00:00+1100/2018-02-14T04:15:00+1100",
|
|
data: Color.RED,
|
|
}),
|
|
);
|
|
const entity = new Entity({
|
|
availability: new TimeIntervalCollection([
|
|
TimeInterval.fromIso8601({
|
|
iso8601: "2018-02-14T04:00:00+1100/2018-02-14T04:30:00+1100",
|
|
}),
|
|
]),
|
|
position: new Cartesian3(1234, 5678, 9101112),
|
|
ellipse: {
|
|
semiMajorAxis: 2,
|
|
semiMinorAxis: 1,
|
|
extrudedHeight: 20,
|
|
outline: true,
|
|
outlineColor: color,
|
|
},
|
|
});
|
|
|
|
const batch = new StaticOutlineGeometryBatch(
|
|
scene.primitives,
|
|
scene,
|
|
false,
|
|
ShadowMode.DISABLED,
|
|
);
|
|
|
|
const updater = new EllipseGeometryUpdater(entity, scene);
|
|
batch.add(validTime, updater);
|
|
|
|
return pollToPromise(function () {
|
|
scene.initializeFrame();
|
|
const isUpdated = batch.update(validTime);
|
|
scene.render(validTime);
|
|
return isUpdated;
|
|
}).then(function () {
|
|
expect(scene.primitives.length).toEqual(1);
|
|
let primitive = scene.primitives.get(0);
|
|
let attributes = primitive.getGeometryInstanceAttributes(entity);
|
|
expect(attributes.color).toEqual([255, 0, 0, 255]);
|
|
|
|
batch.update(outOfRangeTime);
|
|
scene.render(outOfRangeTime);
|
|
|
|
primitive = scene.primitives.get(0);
|
|
attributes = primitive.getGeometryInstanceAttributes(entity);
|
|
expect(attributes.color).toEqual([255, 255, 255, 255]);
|
|
|
|
batch.removeAllPrimitives();
|
|
});
|
|
});
|
|
|
|
it("updates with sampled distance display condition out of range", function () {
|
|
const validTime = JulianDate.fromIso8601("2018-02-14T04:10:00+1100");
|
|
const outOfRangeTime = JulianDate.fromIso8601("2018-02-14T04:20:00+1100");
|
|
const ddc = new TimeIntervalCollectionProperty();
|
|
ddc.intervals.addInterval(
|
|
TimeInterval.fromIso8601({
|
|
iso8601: "2018-02-14T04:00:00+1100/2018-02-14T04:15:00+1100",
|
|
data: new DistanceDisplayCondition(1.0, 2.0),
|
|
}),
|
|
);
|
|
const entity = new Entity({
|
|
availability: new TimeIntervalCollection([
|
|
TimeInterval.fromIso8601({
|
|
iso8601: "2018-02-14T04:00:00+1100/2018-02-14T04:30:00+1100",
|
|
}),
|
|
]),
|
|
position: new Cartesian3(1234, 5678, 9101112),
|
|
ellipse: {
|
|
semiMajorAxis: 2,
|
|
semiMinorAxis: 1,
|
|
extrudedHeight: 20,
|
|
outline: true,
|
|
outlineColor: Color.RED,
|
|
distanceDisplayCondition: ddc,
|
|
},
|
|
});
|
|
|
|
const batch = new StaticOutlineGeometryBatch(
|
|
scene.primitives,
|
|
scene,
|
|
false,
|
|
ShadowMode.DISABLED,
|
|
);
|
|
|
|
const updater = new EllipseGeometryUpdater(entity, scene);
|
|
batch.add(validTime, updater);
|
|
|
|
return pollToPromise(function () {
|
|
scene.initializeFrame();
|
|
const isUpdated = batch.update(validTime);
|
|
scene.render(validTime);
|
|
return isUpdated;
|
|
}).then(function () {
|
|
expect(scene.primitives.length).toEqual(1);
|
|
let primitive = scene.primitives.get(0);
|
|
let attributes = primitive.getGeometryInstanceAttributes(entity);
|
|
expect(attributes.distanceDisplayCondition).toEqualEpsilon(
|
|
[1.0, 2.0],
|
|
CesiumMath.EPSILON6,
|
|
);
|
|
|
|
batch.update(outOfRangeTime);
|
|
scene.render(outOfRangeTime);
|
|
|
|
primitive = scene.primitives.get(0);
|
|
attributes = primitive.getGeometryInstanceAttributes(entity);
|
|
expect(attributes.distanceDisplayCondition).toEqual([0.0, Infinity]);
|
|
|
|
batch.removeAllPrimitives();
|
|
});
|
|
});
|
|
|
|
it("updates with sampled show out of range", function () {
|
|
const validTime = JulianDate.fromIso8601("2018-02-14T04:10:00+1100");
|
|
const outOfRangeTime = JulianDate.fromIso8601("2018-02-14T04:20:00+1100");
|
|
const show = new TimeIntervalCollectionProperty();
|
|
show.intervals.addInterval(
|
|
TimeInterval.fromIso8601({
|
|
iso8601: "2018-02-14T04:00:00+1100/2018-02-14T04:15:00+1100",
|
|
data: true,
|
|
}),
|
|
);
|
|
const entity = new Entity({
|
|
availability: new TimeIntervalCollection([
|
|
TimeInterval.fromIso8601({
|
|
iso8601: "2018-02-14T04:00:00+1100/2018-02-14T04:30:00+1100",
|
|
}),
|
|
]),
|
|
position: new Cartesian3(1234, 5678, 9101112),
|
|
ellipse: {
|
|
semiMajorAxis: 2,
|
|
semiMinorAxis: 1,
|
|
extrudedHeight: 20,
|
|
outline: true,
|
|
show: show,
|
|
},
|
|
});
|
|
|
|
const batch = new StaticOutlineGeometryBatch(
|
|
scene.primitives,
|
|
scene,
|
|
false,
|
|
ShadowMode.DISABLED,
|
|
);
|
|
|
|
const updater = new EllipseGeometryUpdater(entity, scene);
|
|
batch.add(validTime, updater);
|
|
|
|
return pollToPromise(function () {
|
|
scene.initializeFrame();
|
|
const isUpdated = batch.update(validTime);
|
|
scene.render(validTime);
|
|
return isUpdated;
|
|
}).then(function () {
|
|
expect(scene.primitives.length).toEqual(1);
|
|
let primitive = scene.primitives.get(0);
|
|
let attributes = primitive.getGeometryInstanceAttributes(entity);
|
|
expect(attributes.show).toEqual([1]);
|
|
|
|
batch.update(outOfRangeTime);
|
|
scene.render(outOfRangeTime);
|
|
|
|
primitive = scene.primitives.get(0);
|
|
attributes = primitive.getGeometryInstanceAttributes(entity);
|
|
expect(attributes.show).toEqual([0]);
|
|
|
|
batch.removeAllPrimitives();
|
|
});
|
|
});
|
|
|
|
it("shows only one primitive while rebuilding primitive", function () {
|
|
const batch = new StaticOutlineGeometryBatch(
|
|
scene.primitives,
|
|
scene,
|
|
false,
|
|
ShadowMode.DISABLED,
|
|
);
|
|
|
|
function buildEntity() {
|
|
return new Entity({
|
|
position: new Cartesian3(1234, 5678, 9101112),
|
|
ellipse: {
|
|
semiMajorAxis: 2,
|
|
semiMinorAxis: 1,
|
|
height: 0,
|
|
outline: true,
|
|
outlineColor: Color.RED.withAlpha(0.5),
|
|
},
|
|
});
|
|
}
|
|
|
|
function renderScene() {
|
|
scene.initializeFrame();
|
|
const isUpdated = batch.update(time);
|
|
scene.render(time);
|
|
return isUpdated;
|
|
}
|
|
|
|
const entity1 = buildEntity();
|
|
const entity2 = buildEntity();
|
|
|
|
const updater1 = new EllipseGeometryUpdater(entity1, scene);
|
|
const updater2 = new EllipseGeometryUpdater(entity2, scene);
|
|
|
|
batch.add(time, updater1);
|
|
return pollToPromise(renderScene)
|
|
.then(function () {
|
|
expect(scene.primitives.length).toEqual(1);
|
|
const primitive = scene.primitives.get(0);
|
|
expect(primitive.show).toBeTruthy();
|
|
})
|
|
.then(function () {
|
|
batch.add(time, updater2);
|
|
})
|
|
.then(function () {
|
|
return pollToPromise(function () {
|
|
renderScene();
|
|
return scene.primitives.length === 2;
|
|
});
|
|
})
|
|
.then(function () {
|
|
let showCount = 0;
|
|
expect(scene.primitives.length).toEqual(2);
|
|
showCount += !!scene.primitives.get(0).show;
|
|
showCount += !!scene.primitives.get(1).show;
|
|
expect(showCount).toEqual(1);
|
|
})
|
|
.then(function () {
|
|
return pollToPromise(renderScene);
|
|
})
|
|
.then(function () {
|
|
expect(scene.primitives.length).toEqual(1);
|
|
const primitive = scene.primitives.get(0);
|
|
expect(primitive.show).toBeTruthy();
|
|
|
|
batch.removeAllPrimitives();
|
|
});
|
|
});
|
|
|
|
it("has correct show attribute after rebuilding primitive", function () {
|
|
const batch = new StaticOutlineGeometryBatch(
|
|
scene.primitives,
|
|
scene,
|
|
false,
|
|
ShadowMode.DISABLED,
|
|
);
|
|
|
|
function buildEntity() {
|
|
return new Entity({
|
|
position: new Cartesian3(1234, 5678, 9101112),
|
|
ellipse: {
|
|
semiMajorAxis: 2,
|
|
semiMinorAxis: 1,
|
|
height: 0,
|
|
outline: true,
|
|
outlineColor: Color.RED.withAlpha(0.5),
|
|
},
|
|
});
|
|
}
|
|
|
|
function renderScene() {
|
|
scene.initializeFrame();
|
|
const isUpdated = batch.update(time);
|
|
scene.render(time);
|
|
return isUpdated;
|
|
}
|
|
|
|
const entity1 = buildEntity();
|
|
const updater1 = new EllipseGeometryUpdater(entity1, scene);
|
|
batch.add(time, updater1);
|
|
|
|
const entity2 = buildEntity();
|
|
const updater2 = new EllipseGeometryUpdater(entity2, scene);
|
|
|
|
return pollToPromise(renderScene)
|
|
.then(function () {
|
|
expect(scene.primitives.length).toEqual(1);
|
|
const primitive = scene.primitives.get(0);
|
|
const attributes = primitive.getGeometryInstanceAttributes(entity1);
|
|
expect(attributes.show).toEqual([1]);
|
|
|
|
entity1.show = false;
|
|
updater1._onEntityPropertyChanged(entity1, "isShowing");
|
|
return pollToPromise(renderScene);
|
|
})
|
|
.then(function () {
|
|
expect(scene.primitives.length).toEqual(1);
|
|
const primitive = scene.primitives.get(0);
|
|
const attributes = primitive.getGeometryInstanceAttributes(entity1);
|
|
expect(attributes.show).toEqual([0]);
|
|
|
|
batch.add(time, updater2);
|
|
return pollToPromise(renderScene);
|
|
})
|
|
.then(function () {
|
|
expect(scene.primitives.length).toEqual(1);
|
|
const primitive = scene.primitives.get(0);
|
|
let attributes = primitive.getGeometryInstanceAttributes(entity1);
|
|
expect(attributes.show).toEqual([0]);
|
|
|
|
attributes = primitive.getGeometryInstanceAttributes(entity2);
|
|
expect(attributes.show).toEqual([1]);
|
|
|
|
batch.removeAllPrimitives();
|
|
});
|
|
});
|
|
});
|