diff --git a/CHANGES.md b/CHANGES.md index bed3b5e89b0a..9f3fc1c3338e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,12 +3,18 @@ Change Log ### 1.43 - 2018-03-01 +##### Breaking Changes :mega: +* Removed `GeometryUpdater.perInstanceColorAppearanceType` and `GeometryUpdater.materialAppearanceType`. [#6239](https://github.com/AnalyticalGraphicsInc/cesium/pull/6239) +* `GeometryVisualizer` no longer uses a `type` parameter. [#6239](https://github.com/AnalyticalGraphicsInc/cesium/pull/6239) +* `GeometryVisualizer` no longer displays polylines. Use `PolylineVisualizer` instead. [#6239](https://github.com/AnalyticalGraphicsInc/cesium/pull/6239) + ##### Deprecated :hourglass_flowing_sand: * In the `Resource` class, `addQueryParameters` and `addTemplateValues` have been deprecated and will be removed in Cesium 1.45. Please use `setQueryParameters` and `setTemplateValues` instead. ##### Additions :tada: * Added support for a promise to a resource for `CesiumTerrainProvider`, `createTileMapServiceImageryProvider` and `Cesium3DTileset` [#6204](https://github.com/AnalyticalGraphicsInc/cesium/pull/6204) * Added `Cesium.Math.cbrt`. [#6222](https://github.com/AnalyticalGraphicsInc/cesium/pull/6222) +* Added `PolylineVisualizer` for displaying polyline entities [#6239](https://github.com/AnalyticalGraphicsInc/cesium/pull/6239) * `Resource` class [#6205](https://github.com/AnalyticalGraphicsInc/cesium/issues/6205) * Added `put`, `patch`, `delete`, `options` and `head` methods, so it can be used for all XHR requests. * Added `preserveQueryParameters` parameter to `getDerivedResource`, to allow us to append query parameters instead of always replacing them. diff --git a/Source/DataSources/BoxGeometryUpdater.js b/Source/DataSources/BoxGeometryUpdater.js index 638274b91e2a..b6adc8c9ec8d 100644 --- a/Source/DataSources/BoxGeometryUpdater.js +++ b/Source/DataSources/BoxGeometryUpdater.js @@ -1,6 +1,7 @@ define([ '../Core/BoxGeometry', '../Core/BoxOutlineGeometry', + '../Core/Check', '../Core/Color', '../Core/ColorGeometryInstanceAttribute', '../Core/defaultValue', @@ -26,6 +27,7 @@ define([ ], function( BoxGeometry, BoxOutlineGeometry, + Check, Color, ColorGeometryInstanceAttribute, defaultValue, @@ -76,12 +78,8 @@ define([ */ function BoxGeometryUpdater(entity, scene) { //>>includeStart('debug', pragmas.debug); - if (!defined(entity)) { - throw new DeveloperError('entity is required'); - } - if (!defined(scene)) { - throw new DeveloperError('scene is required'); - } + Check.defined('entity', entity); + Check.defined('scene', scene); //>>includeEnd('debug'); this._entity = entity; @@ -100,29 +98,23 @@ define([ this._shadowsProperty = undefined; this._distanceDisplayConditionProperty = undefined; this._options = new GeometryOptions(entity); + this._id = 'box-' + entity.id; + this._onEntityPropertyChanged(entity, 'box', entity.box, undefined); } - defineProperties(BoxGeometryUpdater, { + defineProperties(BoxGeometryUpdater.prototype, { /** - * Gets the type of Appearance to use for simple color-based geometry. - * @memberof BoxGeometryUpdater - * @type {Appearance} + * Gets the unique ID associated with this updater + * @memberof BoxGeometryUpdater.prototype + * @type {String} + * @readonly */ - perInstanceColorAppearanceType : { - value : PerInstanceColorAppearance + id: { + get: function() { + return this._id; + } }, - /** - * Gets the type of Appearance to use for material-based geometry. - * @memberof BoxGeometryUpdater - * @type {Appearance} - */ - materialAppearanceType : { - value : MaterialAppearance - } - }); - - defineProperties(BoxGeometryUpdater.prototype, { /** * Gets the entity associated with this geometry. * @memberof BoxGeometryUpdater.prototype @@ -323,9 +315,7 @@ define([ */ BoxGeometryUpdater.prototype.createFillGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._fillEnabled) { throw new DeveloperError('This instance does not represent a filled geometry.'); @@ -377,9 +367,7 @@ define([ */ BoxGeometryUpdater.prototype.createOutlineGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._outlineEnabled) { throw new DeveloperError('This instance does not represent an outlined geometry.'); @@ -512,13 +500,11 @@ define([ */ BoxGeometryUpdater.prototype.createDynamicUpdater = function(primitives) { //>>includeStart('debug', pragmas.debug); + Check.defined('primitives', primitives); + if (!this._dynamic) { throw new DeveloperError('This instance does not represent dynamic geometry.'); } - - if (!defined(primitives)) { - throw new DeveloperError('primitives is required.'); - } //>>includeEnd('debug'); return new DynamicGeometryUpdater(primitives, this); @@ -532,13 +518,13 @@ define([ this._primitive = undefined; this._outlinePrimitive = undefined; this._geometryUpdater = geometryUpdater; + this._entity = geometryUpdater._entity; this._options = new GeometryOptions(geometryUpdater._entity); } + DynamicGeometryUpdater.prototype.update = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); //>>includeEnd('debug'); var primitives = this._primitives; @@ -548,7 +534,7 @@ define([ this._outlinePrimitive = undefined; var geometryUpdater = this._geometryUpdater; - var entity = geometryUpdater._entity; + var entity = this._entity; var box = entity.box; if (!entity.isShowing || !entity.isAvailable(time) || !Property.getValueOrDefault(box.show, time, true)) { return; @@ -625,8 +611,8 @@ define([ } }; - DynamicGeometryUpdater.prototype.getBoundingSphere = function(entity, result) { - return dynamicGeometryGetBoundingSphere(entity, this._primitive, this._outlinePrimitive, result); + DynamicGeometryUpdater.prototype.getBoundingSphere = function(result) { + return dynamicGeometryGetBoundingSphere(this._entity, this._primitive, this._outlinePrimitive, result); }; DynamicGeometryUpdater.prototype.isDestroyed = function() { diff --git a/Source/DataSources/CorridorGeometryUpdater.js b/Source/DataSources/CorridorGeometryUpdater.js index 93c5580db486..0ee95683798f 100644 --- a/Source/DataSources/CorridorGeometryUpdater.js +++ b/Source/DataSources/CorridorGeometryUpdater.js @@ -1,4 +1,5 @@ define([ + '../Core/Check', '../Core/Color', '../Core/ColorGeometryInstanceAttribute', '../Core/CorridorGeometry', @@ -26,6 +27,7 @@ define([ './MaterialProperty', './Property' ], function( + Check, Color, ColorGeometryInstanceAttribute, CorridorGeometry, @@ -85,12 +87,8 @@ define([ */ function CorridorGeometryUpdater(entity, scene) { //>>includeStart('debug', pragmas.debug); - if (!defined(entity)) { - throw new DeveloperError('entity is required'); - } - if (!defined(scene)) { - throw new DeveloperError('scene is required'); - } + Check.defined('entity', entity); + Check.defined('scene', scene); //>>includeEnd('debug'); this._entity = entity; @@ -111,30 +109,23 @@ define([ this._distanceDisplayConditionProperty = undefined; this._onTerrain = false; this._options = new GeometryOptions(entity); + this._id = 'corridor-' + entity.id; this._onEntityPropertyChanged(entity, 'corridor', entity.corridor, undefined); } - defineProperties(CorridorGeometryUpdater, { + defineProperties(CorridorGeometryUpdater.prototype, { /** - * Gets the type of Appearance to use for simple color-based geometry. - * @memberof CorridorGeometryUpdater - * @type {Appearance} + * Gets the unique ID associated with this updater + * @memberof CorridorGeometryUpdater.prototype + * @type {String} + * @readonly */ - perInstanceColorAppearanceType : { - value : PerInstanceColorAppearance + id: { + get: function() { + return this._id; + } }, - /** - * Gets the type of Appearance to use for material-based geometry. - * @memberof CorridorGeometryUpdater - * @type {Appearance} - */ - materialAppearanceType : { - value : MaterialAppearance - } - }); - - defineProperties(CorridorGeometryUpdater.prototype, { /** * Gets the entity associated with this geometry. * @memberof CorridorGeometryUpdater.prototype @@ -349,9 +340,7 @@ define([ */ CorridorGeometryUpdater.prototype.createFillGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._fillEnabled) { throw new DeveloperError('This instance does not represent a filled geometry.'); @@ -401,9 +390,7 @@ define([ */ CorridorGeometryUpdater.prototype.createOutlineGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._outlineEnabled) { throw new DeveloperError('This instance does not represent an outlined geometry.'); @@ -558,13 +545,12 @@ define([ */ CorridorGeometryUpdater.prototype.createDynamicUpdater = function(primitives, groundPrimitives) { //>>includeStart('debug', pragmas.debug); + Check.defined('primitives', primitives); + Check.defined('groundPrimitives', groundPrimitives); + if (!this._dynamic) { throw new DeveloperError('This instance does not represent dynamic geometry.'); } - - if (!defined(primitives)) { - throw new DeveloperError('primitives is required.'); - } //>>includeEnd('debug'); return new DynamicGeometryUpdater(primitives, groundPrimitives, this); @@ -580,12 +566,12 @@ define([ this._outlinePrimitive = undefined; this._geometryUpdater = geometryUpdater; this._options = new GeometryOptions(geometryUpdater._entity); + this._entity = geometryUpdater._entity; } + DynamicGeometryUpdater.prototype.update = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); //>>includeEnd('debug'); var geometryUpdater = this._geometryUpdater; @@ -602,7 +588,7 @@ define([ } this._primitive = undefined; - var entity = geometryUpdater._entity; + var entity = this._entity; var corridor = entity.corridor; if (!entity.isShowing || !entity.isAvailable(time) || !Property.getValueOrDefault(corridor.show, time, true)) { return; @@ -701,8 +687,8 @@ define([ } }; - DynamicGeometryUpdater.prototype.getBoundingSphere = function(entity, result) { - return dynamicGeometryGetBoundingSphere(entity, this._primitive, this._outlinePrimitive, result); + DynamicGeometryUpdater.prototype.getBoundingSphere = function(result) { + return dynamicGeometryGetBoundingSphere(this._entity, this._primitive, this._outlinePrimitive, result); }; DynamicGeometryUpdater.prototype.isDestroyed = function() { diff --git a/Source/DataSources/CylinderGeometryUpdater.js b/Source/DataSources/CylinderGeometryUpdater.js index 426e8f4b0dd3..7ebea6633358 100644 --- a/Source/DataSources/CylinderGeometryUpdater.js +++ b/Source/DataSources/CylinderGeometryUpdater.js @@ -1,4 +1,5 @@ define([ + '../Core/Check', '../Core/Color', '../Core/ColorGeometryInstanceAttribute', '../Core/CylinderGeometry', @@ -24,6 +25,7 @@ define([ './MaterialProperty', './Property' ], function( + Check, Color, ColorGeometryInstanceAttribute, CylinderGeometry, @@ -81,12 +83,8 @@ define([ */ function CylinderGeometryUpdater(entity, scene) { //>>includeStart('debug', pragmas.debug); - if (!defined(entity)) { - throw new DeveloperError('entity is required'); - } - if (!defined(scene)) { - throw new DeveloperError('scene is required'); - } + Check.defined('entity', entity); + Check.defined('scene', scene); //>>includeEnd('debug'); this._entity = entity; @@ -105,29 +103,23 @@ define([ this._shadowsProperty = undefined; this._distanceDisplayConditionProperty = undefined; this._options = new GeometryOptions(entity); + this._id = 'cylinder-' + entity.id; + this._onEntityPropertyChanged(entity, 'cylinder', entity.cylinder, undefined); } - defineProperties(CylinderGeometryUpdater, { + defineProperties(CylinderGeometryUpdater.prototype, { /** - * Gets the type of Appearance to use for simple color-based geometry. - * @memberof CylinderGeometryUpdater - * @type {Appearance} + * Gets the unique ID associated with this updater + * @memberof CylinderGeometryUpdater.prototype + * @type {String} + * @readonly */ - perInstanceColorAppearanceType : { - value : PerInstanceColorAppearance + id: { + get: function() { + return this._id; + } }, - /** - * Gets the type of Appearance to use for material-based geometry. - * @memberof CylinderGeometryUpdater - * @type {Appearance} - */ - materialAppearanceType : { - value : MaterialAppearance - } - }); - - defineProperties(CylinderGeometryUpdater.prototype, { /** * Gets the entity associated with this geometry. * @memberof CylinderGeometryUpdater.prototype @@ -328,9 +320,7 @@ define([ */ CylinderGeometryUpdater.prototype.createFillGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._fillEnabled) { throw new DeveloperError('This instance does not represent a filled geometry.'); @@ -382,9 +372,7 @@ define([ */ CylinderGeometryUpdater.prototype.createOutlineGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._outlineEnabled) { throw new DeveloperError('This instance does not represent an outlined geometry.'); @@ -530,13 +518,11 @@ define([ */ CylinderGeometryUpdater.prototype.createDynamicUpdater = function(primitives) { //>>includeStart('debug', pragmas.debug); + Check.defined('primitives', primitives); + if (!this._dynamic) { throw new DeveloperError('This instance does not represent dynamic geometry.'); } - - if (!defined(primitives)) { - throw new DeveloperError('primitives is required.'); - } //>>includeEnd('debug'); return new DynamicGeometryUpdater(primitives, this); @@ -551,12 +537,12 @@ define([ this._outlinePrimitive = undefined; this._geometryUpdater = geometryUpdater; this._options = new GeometryOptions(geometryUpdater._entity); + this._entity = geometryUpdater._entity; } + DynamicGeometryUpdater.prototype.update = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); //>>includeEnd('debug'); var primitives = this._primitives; @@ -566,7 +552,7 @@ define([ this._outlinePrimitive = undefined; var geometryUpdater = this._geometryUpdater; - var entity = geometryUpdater._entity; + var entity = this._entity; var cylinder = entity.cylinder; if (!entity.isShowing || !entity.isAvailable(time) || !Property.getValueOrDefault(cylinder.show, time, true)) { return; @@ -649,8 +635,8 @@ define([ } }; - DynamicGeometryUpdater.prototype.getBoundingSphere = function(entity, result) { - return dynamicGeometryGetBoundingSphere(entity, this._primitive, this._outlinePrimitive, result); + DynamicGeometryUpdater.prototype.getBoundingSphere = function(result) { + return dynamicGeometryGetBoundingSphere(this._entity, this._primitive, this._outlinePrimitive, result); }; DynamicGeometryUpdater.prototype.isDestroyed = function() { diff --git a/Source/DataSources/DataSourceDisplay.js b/Source/DataSources/DataSourceDisplay.js index 977845700c24..6ba39af29ba2 100644 --- a/Source/DataSources/DataSourceDisplay.js +++ b/Source/DataSources/DataSourceDisplay.js @@ -10,23 +10,13 @@ define([ '../Scene/GroundPrimitive', './BillboardVisualizer', './BoundingSphereState', - './BoxGeometryUpdater', - './CorridorGeometryUpdater', './CustomDataSource', - './CylinderGeometryUpdater', - './EllipseGeometryUpdater', - './EllipsoidGeometryUpdater', './GeometryVisualizer', './LabelVisualizer', './ModelVisualizer', './PathVisualizer', - './PlaneGeometryUpdater', './PointVisualizer', - './PolygonGeometryUpdater', - './PolylineGeometryUpdater', - './PolylineVolumeGeometryUpdater', - './RectangleGeometryUpdater', - './WallGeometryUpdater' + './PolylineVisualizer' ], function( BoundingSphere, Check, @@ -39,23 +29,13 @@ define([ GroundPrimitive, BillboardVisualizer, BoundingSphereState, - BoxGeometryUpdater, - CorridorGeometryUpdater, CustomDataSource, - CylinderGeometryUpdater, - EllipseGeometryUpdater, - EllipsoidGeometryUpdater, GeometryVisualizer, LabelVisualizer, ModelVisualizer, PathVisualizer, - PlaneGeometryUpdater, PointVisualizer, - PolygonGeometryUpdater, - PolylineGeometryUpdater, - PolylineVolumeGeometryUpdater, - RectangleGeometryUpdater, - WallGeometryUpdater) { + PolylineVisualizer) { 'use strict'; /** @@ -105,27 +85,17 @@ define([ * Gets or sets the default function which creates an array of visualizers used for visualization. * By default, this function uses all standard visualizers. * - * @member * @type {DataSourceDisplay~VisualizersCallback} */ DataSourceDisplay.defaultVisualizersCallback = function(scene, entityCluster, dataSource) { var entities = dataSource.entities; return [new BillboardVisualizer(entityCluster, entities), - new GeometryVisualizer(BoxGeometryUpdater, scene, entities), - new GeometryVisualizer(CylinderGeometryUpdater, scene, entities), - new GeometryVisualizer(CorridorGeometryUpdater, scene, entities), - new GeometryVisualizer(EllipseGeometryUpdater, scene, entities), - new GeometryVisualizer(EllipsoidGeometryUpdater, scene, entities), - new GeometryVisualizer(PlaneGeometryUpdater, scene, entities), - new GeometryVisualizer(PolygonGeometryUpdater, scene, entities), - new GeometryVisualizer(PolylineGeometryUpdater, scene, entities), - new GeometryVisualizer(PolylineVolumeGeometryUpdater, scene, entities), - new GeometryVisualizer(RectangleGeometryUpdater, scene, entities), - new GeometryVisualizer(WallGeometryUpdater, scene, entities), + new GeometryVisualizer(scene, entities), new LabelVisualizer(entityCluster, entities), new ModelVisualizer(scene, entities), new PointVisualizer(entityCluster, entities), - new PathVisualizer(scene, entities)]; + new PathVisualizer(scene, entities), + new PolylineVisualizer(scene, entities)]; }; defineProperties(DataSourceDisplay.prototype, { @@ -228,9 +198,7 @@ define([ */ DataSourceDisplay.prototype.update = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); //>>includeEnd('debug'); if (!GroundPrimitive._initialized) { @@ -288,15 +256,9 @@ define([ */ DataSourceDisplay.prototype.getBoundingSphere = function(entity, allowPartial, result) { //>>includeStart('debug', pragmas.debug); - if (!defined(entity)) { - throw new DeveloperError('entity is required.'); - } - if (!defined(allowPartial)) { - throw new DeveloperError('allowPartial is required.'); - } - if (!defined(result)) { - throw new DeveloperError('result is required.'); - } + Check.defined('entity', entity); + Check.typeOf.bool('allowPartial', allowPartial); + Check.defined('result', result); //>>includeEnd('debug'); if (!this._ready) { diff --git a/Source/DataSources/DynamicGeometryBatch.js b/Source/DataSources/DynamicGeometryBatch.js new file mode 100644 index 000000000000..a36d3479bfd0 --- /dev/null +++ b/Source/DataSources/DynamicGeometryBatch.js @@ -0,0 +1,76 @@ +define([ + '../Core/AssociativeArray', + '../Core/Color', + '../Core/ColorGeometryInstanceAttribute', + '../Core/defined', + '../Core/DistanceDisplayCondition', + '../Core/DistanceDisplayConditionGeometryInstanceAttribute', + '../Core/ShowGeometryInstanceAttribute', + '../Scene/Primitive', + './BoundingSphereState', + './ColorMaterialProperty', + './MaterialProperty', + './Property' +], function( + AssociativeArray, + Color, + ColorGeometryInstanceAttribute, + defined, + DistanceDisplayCondition, + DistanceDisplayConditionGeometryInstanceAttribute, + ShowGeometryInstanceAttribute, + Primitive, + BoundingSphereState, + ColorMaterialProperty, + MaterialProperty, + Property) { + 'use strict'; + + /** + * @private + */ + function DynamicGeometryBatch(primitives, groundPrimitives) { + this._primitives = primitives; + this._groundPrimitives = groundPrimitives; + this._dynamicUpdaters = new AssociativeArray(); + } + + DynamicGeometryBatch.prototype.add = function(time, updater) { + this._dynamicUpdaters.set(updater.id, updater.createDynamicUpdater(this._primitives, this._groundPrimitives)); + }; + + DynamicGeometryBatch.prototype.remove = function(updater) { + var id = updater.id; + var dynamicUpdater = this._dynamicUpdaters.get(id); + if (defined(dynamicUpdater)) { + this._dynamicUpdaters.remove(id); + dynamicUpdater.destroy(); + } + }; + + DynamicGeometryBatch.prototype.update = function(time) { + var geometries = this._dynamicUpdaters.values; + for (var i = 0, len = geometries.length; i < len; i++) { + geometries[i].update(time); + } + return true; + }; + + DynamicGeometryBatch.prototype.removeAllPrimitives = function() { + var geometries = this._dynamicUpdaters.values; + for (var i = 0, len = geometries.length; i < len; i++) { + geometries[i].destroy(); + } + this._dynamicUpdaters.removeAll(); + }; + + DynamicGeometryBatch.prototype.getBoundingSphere = function(updater, result) { + updater = this._dynamicUpdaters.get(updater.id); + if (defined(updater) && defined(updater.getBoundingSphere)) { + return updater.getBoundingSphere(result); + } + return BoundingSphereState.FAILED; + }; + + return DynamicGeometryBatch; +}); diff --git a/Source/DataSources/DynamicGeometryUpdater.js b/Source/DataSources/DynamicGeometryUpdater.js index 4a7c9d866b15..d3cb3451792e 100644 --- a/Source/DataSources/DynamicGeometryUpdater.js +++ b/Source/DataSources/DynamicGeometryUpdater.js @@ -34,7 +34,6 @@ define([ * The bounding sphere is in the fixed frame of the scene's globe. * @function * - * @param {Entity} entity The entity whose bounding sphere to compute. * @param {BoundingSphere} result The bounding sphere onto which to store the result. * @returns {BoundingSphereState} BoundingSphereState.DONE if the result contains the bounding sphere, * BoundingSphereState.PENDING if the result is still being computed, or diff --git a/Source/DataSources/EllipseGeometryUpdater.js b/Source/DataSources/EllipseGeometryUpdater.js index fa83fde44ad5..8f7f06eca827 100644 --- a/Source/DataSources/EllipseGeometryUpdater.js +++ b/Source/DataSources/EllipseGeometryUpdater.js @@ -1,4 +1,5 @@ define([ + '../Core/Check', '../Core/Color', '../Core/ColorGeometryInstanceAttribute', '../Core/defaultValue', @@ -26,6 +27,7 @@ define([ './MaterialProperty', './Property' ], function( + Check, Color, ColorGeometryInstanceAttribute, defaultValue, @@ -88,12 +90,8 @@ define([ */ function EllipseGeometryUpdater(entity, scene) { //>>includeStart('debug', pragmas.debug); - if (!defined(entity)) { - throw new DeveloperError('entity is required'); - } - if (!defined(scene)) { - throw new DeveloperError('scene is required'); - } + Check.defined('entity', entity); + Check.defined('scene', scene); //>>includeEnd('debug'); this._entity = entity; @@ -114,30 +112,23 @@ define([ this._distanceDisplayConditionProperty = undefined; this._onTerrain = false; this._options = new GeometryOptions(entity); + this._id = 'ellipse-' + entity.id; this._onEntityPropertyChanged(entity, 'ellipse', entity.ellipse, undefined); } - defineProperties(EllipseGeometryUpdater, { + defineProperties(EllipseGeometryUpdater.prototype, { /** - * Gets the type of Appearance to use for simple color-based geometry. - * @memberof EllipseGeometryUpdater - * @type {Appearance} + * Gets the unique ID associated with this updater + * @memberof EllipseGeometryUpdater.prototype + * @type {String} + * @readonly */ - perInstanceColorAppearanceType : { - value : PerInstanceColorAppearance + id: { + get: function() { + return this._id; + } }, - /** - * Gets the type of Appearance to use for material-based geometry. - * @memberof EllipseGeometryUpdater - * @type {Appearance} - */ - materialAppearanceType : { - value : MaterialAppearance - } - }); - - defineProperties(EllipseGeometryUpdater.prototype, { /** * Gets the entity associated with this geometry. * @memberof EllipseGeometryUpdater.prototype @@ -352,9 +343,7 @@ define([ */ EllipseGeometryUpdater.prototype.createFillGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._fillEnabled) { throw new DeveloperError('This instance does not represent a filled geometry.'); @@ -405,9 +394,7 @@ define([ */ EllipseGeometryUpdater.prototype.createOutlineGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._outlineEnabled) { throw new DeveloperError('This instance does not represent an outlined geometry.'); @@ -572,13 +559,12 @@ define([ */ EllipseGeometryUpdater.prototype.createDynamicUpdater = function(primitives, groundPrimitives) { //>>includeStart('debug', pragmas.debug); + Check.defined('primitives', primitives); + Check.defined('groundPrimitives', groundPrimitives); + if (!this._dynamic) { throw new DeveloperError('This instance does not represent dynamic geometry.'); } - - if (!defined(primitives)) { - throw new DeveloperError('primitives is required.'); - } //>>includeEnd('debug'); return new DynamicGeometryUpdater(primitives, groundPrimitives, this); @@ -594,12 +580,12 @@ define([ this._outlinePrimitive = undefined; this._geometryUpdater = geometryUpdater; this._options = new GeometryOptions(geometryUpdater._entity); + this._entity = geometryUpdater._entity; } + DynamicGeometryUpdater.prototype.update = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); //>>includeEnd('debug'); var geometryUpdater = this._geometryUpdater; @@ -617,7 +603,7 @@ define([ this._primitive = undefined; - var entity = geometryUpdater._entity; + var entity = this._entity; var ellipse = entity.ellipse; if (!entity.isShowing || !entity.isAvailable(time) || !Property.getValueOrDefault(ellipse.show, time, true)) { return; @@ -722,8 +708,8 @@ define([ } }; - DynamicGeometryUpdater.prototype.getBoundingSphere = function(entity, result) { - return dynamicGeometryGetBoundingSphere(entity, this._primitive, this._outlinePrimitive, result); + DynamicGeometryUpdater.prototype.getBoundingSphere = function(result) { + return dynamicGeometryGetBoundingSphere(this._entity, this._primitive, this._outlinePrimitive, result); }; DynamicGeometryUpdater.prototype.isDestroyed = function() { diff --git a/Source/DataSources/EllipsoidGeometryUpdater.js b/Source/DataSources/EllipsoidGeometryUpdater.js index 5334661ca1d7..57cb097dce5f 100644 --- a/Source/DataSources/EllipsoidGeometryUpdater.js +++ b/Source/DataSources/EllipsoidGeometryUpdater.js @@ -1,4 +1,5 @@ define([ + '../Core/Check', '../Core/Cartesian3', '../Core/Color', '../Core/ColorGeometryInstanceAttribute', @@ -27,6 +28,7 @@ define([ './MaterialProperty', './Property' ], function( + Check, Cartesian3, Color, ColorGeometryInstanceAttribute, @@ -88,12 +90,8 @@ define([ */ function EllipsoidGeometryUpdater(entity, scene) { //>>includeStart('debug', pragmas.debug); - if (!defined(entity)) { - throw new DeveloperError('entity is required'); - } - if (!defined(scene)) { - throw new DeveloperError('scene is required'); - } + Check.defined('entity', entity); + Check.defined('scene', scene); //>>includeEnd('debug'); this._scene = scene; @@ -112,29 +110,23 @@ define([ this._shadowsProperty = undefined; this._distanceDisplayConditionProperty = undefined; this._options = new GeometryOptions(entity); + this._id = 'ellipsoid-' + entity.id; + this._onEntityPropertyChanged(entity, 'ellipsoid', entity.ellipsoid, undefined); } - defineProperties(EllipsoidGeometryUpdater, { + defineProperties(EllipsoidGeometryUpdater.prototype, { /** - * Gets the type of Appearance to use for simple color-based geometry. - * @memberof EllipsoidGeometryUpdater - * @type {Appearance} + * Gets the unique ID associated with this updater + * @memberof EllipsoidGeometryUpdater.prototype + * @type {String} + * @readonly */ - perInstanceColorAppearanceType : { - value : PerInstanceColorAppearance + id: { + get: function() { + return this._id; + } }, - /** - * Gets the type of Appearance to use for material-based geometry. - * @memberof EllipsoidGeometryUpdater - * @type {Appearance} - */ - materialAppearanceType : { - value : MaterialAppearance - } - }); - - defineProperties(EllipsoidGeometryUpdater.prototype, { /** * Gets the entity associated with this geometry. * @memberof EllipsoidGeometryUpdater.prototype @@ -335,9 +327,7 @@ define([ */ EllipsoidGeometryUpdater.prototype.createFillGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._fillEnabled) { throw new DeveloperError('This instance does not represent a filled geometry.'); @@ -389,9 +379,7 @@ define([ */ EllipsoidGeometryUpdater.prototype.createOutlineGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._outlineEnabled) { throw new DeveloperError('This instance does not represent an outlined geometry.'); @@ -535,13 +523,11 @@ define([ */ EllipsoidGeometryUpdater.prototype.createDynamicUpdater = function(primitives) { //>>includeStart('debug', pragmas.debug); + Check.defined('primitives', primitives); + if (!this._dynamic) { throw new DeveloperError('This instance does not represent dynamic geometry.'); } - - if (!defined(primitives)) { - throw new DeveloperError('primitives is required.'); - } //>>includeEnd('debug'); return new DynamicGeometryUpdater(primitives, this); @@ -568,11 +554,10 @@ define([ this._lastOutlineWidth = undefined; this._lastOutlineColor = undefined; } + DynamicGeometryUpdater.prototype.update = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); //>>includeEnd('debug'); var entity = this._entity; @@ -756,8 +741,8 @@ define([ } }; - DynamicGeometryUpdater.prototype.getBoundingSphere = function(entity, result) { - return dynamicGeometryGetBoundingSphere(entity, this._primitive, this._outlinePrimitive, result); + DynamicGeometryUpdater.prototype.getBoundingSphere = function(result) { + return dynamicGeometryGetBoundingSphere(this._entity, this._primitive, this._outlinePrimitive, result); }; DynamicGeometryUpdater.prototype.isDestroyed = function() { diff --git a/Source/DataSources/GeometryUpdater.js b/Source/DataSources/GeometryUpdater.js index c3634da36891..1e5681d0f793 100644 --- a/Source/DataSources/GeometryUpdater.js +++ b/Source/DataSources/GeometryUpdater.js @@ -30,26 +30,17 @@ define([ DeveloperError.throwInstantiationError(); } - defineProperties(GeometryUpdater, { + defineProperties(GeometryUpdater.prototype, { /** - * Gets the type of Appearance to use for simple color-based geometry. - * @memberof GeometryUpdater - * @type {Appearance} + * Gets the unique id associated with this updater. + * @memberof GeometryUpdater.prototype + * + * @type {String} + * @readonly */ - perInstanceColorAppearanceType : { + id : { get : DeveloperError.throwInstantiationError }, - /** - * Gets the type of Appearance to use for material-based geometry. - * @memberof GeometryUpdater - * @type {Appearance} - */ - materialAppearanceType : { - get : DeveloperError.throwInstantiationError - } - }); - - defineProperties(GeometryUpdater.prototype, { /** * Gets the entity associated with this geometry. * @memberof GeometryUpdater.prototype diff --git a/Source/DataSources/GeometryVisualizer.js b/Source/DataSources/GeometryVisualizer.js index 295278fc651d..7b6e8bbc1c00 100644 --- a/Source/DataSources/GeometryVisualizer.js +++ b/Source/DataSources/GeometryVisualizer.js @@ -1,150 +1,117 @@ define([ '../Core/AssociativeArray', '../Core/BoundingSphere', + '../Core/Check', '../Core/defined', '../Core/destroyObject', '../Core/DeveloperError', + '../Core/Event', + '../Core/EventHelper', + '../Scene/MaterialAppearance', + '../Scene/PerInstanceColorAppearance', '../Scene/ShadowMode', + './BoxGeometryUpdater', './BoundingSphereState', './ColorMaterialProperty', + './CorridorGeometryUpdater', + './CylinderGeometryUpdater', + './DynamicGeometryBatch', + './EllipseGeometryUpdater', + './EllipsoidGeometryUpdater', + './PlaneGeometryUpdater', + './PolygonGeometryUpdater', + './PolylineVolumeGeometryUpdater', + './RectangleGeometryUpdater', './StaticGeometryColorBatch', './StaticGeometryPerMaterialBatch', './StaticGroundGeometryColorBatch', - './StaticOutlineGeometryBatch' + './StaticOutlineGeometryBatch', + './WallGeometryUpdater' ], function( AssociativeArray, BoundingSphere, + Check, defined, destroyObject, DeveloperError, + Event, + EventHelper, + MaterialAppearance, + PerInstanceColorAppearance, ShadowMode, + BoxGeometryUpdater, BoundingSphereState, ColorMaterialProperty, + CorridorGeometryUpdater, + CylinderGeometryUpdater, + DynamicGeometryBatch, + EllipseGeometryUpdater, + EllipsoidGeometryUpdater, + PlaneGeometryUpdater, + PolygonGeometryUpdater, + PolylineVolumeGeometryUpdater, + RectangleGeometryUpdater, StaticGeometryColorBatch, StaticGeometryPerMaterialBatch, StaticGroundGeometryColorBatch, - StaticOutlineGeometryBatch) { + StaticOutlineGeometryBatch, + WallGeometryUpdater) { 'use strict'; var emptyArray = []; - function DynamicGeometryBatch(primitives, groundPrimitives) { - this._primitives = primitives; - this._groundPrimitives = groundPrimitives; - this._dynamicUpdaters = new AssociativeArray(); - } - DynamicGeometryBatch.prototype.add = function(time, updater) { - this._dynamicUpdaters.set(updater.entity.id, updater.createDynamicUpdater(this._primitives, this._groundPrimitives)); - }; + var geometryUpdaters = [BoxGeometryUpdater, CylinderGeometryUpdater, CorridorGeometryUpdater, EllipseGeometryUpdater, EllipsoidGeometryUpdater, PlaneGeometryUpdater, + PolygonGeometryUpdater, PolylineVolumeGeometryUpdater, RectangleGeometryUpdater, WallGeometryUpdater]; - DynamicGeometryBatch.prototype.remove = function(updater) { - var id = updater.entity.id; - var dynamicUpdater = this._dynamicUpdaters.get(id); - if (defined(dynamicUpdater)) { - this._dynamicUpdaters.remove(id); - dynamicUpdater.destroy(); + function GeometryUpdaterSet(entity, scene) { + this.entity = entity; + this.scene = scene; + var updaters = new Array(geometryUpdaters.length); + var geometryChanged = new Event(); + function raiseEvent(geometry) { + geometryChanged.raiseEvent(geometry); } - }; - - DynamicGeometryBatch.prototype.update = function(time) { - var geometries = this._dynamicUpdaters.values; - for (var i = 0, len = geometries.length; i < len; i++) { - geometries[i].update(time); + var eventHelper = new EventHelper(); + for (var i = 0; i < updaters.length; i++) { + var updater = new geometryUpdaters[i](entity, scene); + eventHelper.add(updater.geometryChanged, raiseEvent); + updaters[i] = updater; } - return true; - }; + this.updaters = updaters; + this.geometryChanged = geometryChanged; + this.eventHelper = eventHelper; + } - DynamicGeometryBatch.prototype.removeAllPrimitives = function() { - var geometries = this._dynamicUpdaters.values; - for (var i = 0, len = geometries.length; i < len; i++) { - geometries[i].destroy(); + GeometryUpdaterSet.prototype.forEach = function (callback) { + var updaters = this.updaters; + for (var i = 0; i < updaters.length; i++) { + callback(updaters[i]); } - this._dynamicUpdaters.removeAll(); }; - DynamicGeometryBatch.prototype.getBoundingSphere = function(entity, result) { - var updater = this._dynamicUpdaters.get(entity.id); - if (defined(updater) && defined(updater.getBoundingSphere)) { - return updater.getBoundingSphere(entity, result); + GeometryUpdaterSet.prototype.destroy = function() { + this.eventHelper.removeAll(); + var updaters = this.updaters; + for (var i = 0; i < updaters.length; i++) { + updaters[i].destroy(); } - return BoundingSphereState.FAILED; + destroyObject(this); }; - function removeUpdater(that, updater) { - //We don't keep track of which batch an updater is in, so just remove it from all of them. - var batches = that._batches; - var length = batches.length; - for (var i = 0; i < length; i++) { - batches[i].remove(updater); - } - } - - function insertUpdaterIntoBatch(that, time, updater) { - if (updater.isDynamic) { - that._dynamicBatch.add(time, updater); - return; - } - - var shadows; - if (updater.outlineEnabled || updater.fillEnabled) { - shadows = updater.shadowsProperty.getValue(time); - } - - if (updater.outlineEnabled) { - that._outlineBatches[shadows].add(time, updater); - } - - var multiplier = 0; - if (defined(updater.depthFailMaterialProperty)) { - multiplier = updater.depthFailMaterialProperty instanceof ColorMaterialProperty ? 1 : 2; - } - - var index; - if (defined(shadows)) { - index = shadows + multiplier * ShadowMode.NUMBER_OF_SHADOW_MODES; - } - - if (updater.fillEnabled) { - if (updater.onTerrain) { - that._groundColorBatch.add(time, updater); - } else if (updater.isClosed) { - if (updater.fillMaterialProperty instanceof ColorMaterialProperty) { - that._closedColorBatches[index].add(time, updater); - } else { - that._closedMaterialBatches[index].add(time, updater); - } - } else if (updater.fillMaterialProperty instanceof ColorMaterialProperty) { - that._openColorBatches[index].add(time, updater); - } else { - that._openMaterialBatches[index].add(time, updater); - } - } - } - /** * A general purpose visualizer for geometry represented by {@link Primitive} instances. * @alias GeometryVisualizer * @constructor * - * @param {GeometryUpdater} type The updater to be used for creating the geometry. * @param {Scene} scene The scene the primitives will be rendered in. * @param {EntityCollection} entityCollection The entityCollection to visualize. */ - function GeometryVisualizer(type, scene, entityCollection) { + function GeometryVisualizer(scene, entityCollection) { //>>includeStart('debug', pragmas.debug); - if (!defined(type)) { - throw new DeveloperError('type is required.'); - } - if (!defined(scene)) { - throw new DeveloperError('scene is required.'); - } - if (!defined(entityCollection)) { - throw new DeveloperError('entityCollection is required.'); - } + Check.defined('scene', scene); + Check.defined('entityCollection', entityCollection); //>>includeEnd('debug'); - this._type = type; - var primitives = scene.primitives; var groundPrimitives = scene.groundPrimitives; this._scene = scene; @@ -157,28 +124,18 @@ define([ var numberOfShadowModes = ShadowMode.NUMBER_OF_SHADOW_MODES; this._outlineBatches = new Array(numberOfShadowModes); - this._closedColorBatches = new Array(numberOfShadowModes * 3); - this._closedMaterialBatches = new Array(numberOfShadowModes * 3); - this._openColorBatches = new Array(numberOfShadowModes * 3); - this._openMaterialBatches = new Array(numberOfShadowModes * 3); + this._closedColorBatches = new Array(numberOfShadowModes); + this._closedMaterialBatches = new Array(numberOfShadowModes); + this._openColorBatches = new Array(numberOfShadowModes); + this._openMaterialBatches = new Array(numberOfShadowModes); for (var i = 0; i < numberOfShadowModes; ++i) { this._outlineBatches[i] = new StaticOutlineGeometryBatch(primitives, scene, i); - this._closedColorBatches[i] = new StaticGeometryColorBatch(primitives, type.perInstanceColorAppearanceType, undefined, true, i); - this._closedMaterialBatches[i] = new StaticGeometryPerMaterialBatch(primitives, type.materialAppearanceType, undefined, true, i); - this._openColorBatches[i] = new StaticGeometryColorBatch(primitives, type.perInstanceColorAppearanceType, undefined, false, i); - this._openMaterialBatches[i] = new StaticGeometryPerMaterialBatch(primitives, type.materialAppearanceType, undefined, false, i); - - this._closedColorBatches[i + numberOfShadowModes] = new StaticGeometryColorBatch(primitives, type.perInstanceColorAppearanceType, type.perInstanceColorAppearanceType, true, i); - this._closedMaterialBatches[i + numberOfShadowModes] = new StaticGeometryPerMaterialBatch(primitives, type.materialAppearanceType, type.perInstanceColorAppearanceType, true, i); - this._openColorBatches[i + numberOfShadowModes] = new StaticGeometryColorBatch(primitives, type.perInstanceColorAppearanceType, type.perInstanceColorAppearanceType, false, i); - this._openMaterialBatches[i + numberOfShadowModes] = new StaticGeometryPerMaterialBatch(primitives, type.materialAppearanceType, type.perInstanceColorAppearanceType, false, i); - - this._closedColorBatches[i + numberOfShadowModes * 2] = new StaticGeometryColorBatch(primitives, type.perInstanceColorAppearanceType, type.materialAppearanceType, true, i); - this._closedMaterialBatches[i + numberOfShadowModes * 2] = new StaticGeometryPerMaterialBatch(primitives, type.materialAppearanceType, type.materialAppearanceType, true, i); - this._openColorBatches[i + numberOfShadowModes * 2] = new StaticGeometryColorBatch(primitives, type.perInstanceColorAppearanceType, type.materialAppearanceType, false, i); - this._openMaterialBatches[i + numberOfShadowModes * 2] = new StaticGeometryPerMaterialBatch(primitives, type.materialAppearanceType, type.materialAppearanceType, false, i); + this._closedColorBatches[i] = new StaticGeometryColorBatch(primitives, PerInstanceColorAppearance, undefined, true, i); + this._closedMaterialBatches[i] = new StaticGeometryPerMaterialBatch(primitives, MaterialAppearance, undefined, true, i); + this._openColorBatches[i] = new StaticGeometryColorBatch(primitives, PerInstanceColorAppearance, undefined, false, i); + this._openMaterialBatches[i] = new StaticGeometryPerMaterialBatch(primitives, MaterialAppearance, undefined, false, i); } this._groundColorBatch = new StaticGroundGeometryColorBatch(groundPrimitives); @@ -187,7 +144,7 @@ define([ this._batches = this._outlineBatches.concat(this._closedColorBatches, this._closedMaterialBatches, this._openColorBatches, this._openMaterialBatches, this._groundColorBatch, this._dynamicBatch); this._subscriptions = new AssociativeArray(); - this._updaters = new AssociativeArray(); + this._updaterSets = new AssociativeArray(); this._entityCollection = entityCollection; entityCollection.collectionChanged.addEventListener(GeometryVisualizer.prototype._onCollectionChanged, this); @@ -204,9 +161,7 @@ define([ */ GeometryVisualizer.prototype.update = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); //>>includeEnd('debug'); var addedObjects = this._addedObjects; @@ -219,21 +174,24 @@ define([ var i; var entity; var id; - var updater; + var updaterSet; + var that = this; for (i = changed.length - 1; i > -1; i--) { entity = changed[i]; id = entity.id; - updater = this._updaters.get(id); + updaterSet = this._updaterSets.get(id); //If in a single update, an entity gets removed and a new instance //re-added with the same id, the updater no longer tracks the //correct entity, we need to both remove the old one and //add the new one, which is done by pushing the entity //onto the removed/added lists. - if (updater.entity === entity) { - removeUpdater(this, updater); - insertUpdaterIntoBatch(this, time, updater); + if (updaterSet.entity === entity) { + updaterSet.forEach(function(updater) { + that._removeUpdater(updater); + that._insertUpdaterIntoBatch(time, updater); + }); } else { removed.push(entity); added.push(entity); @@ -243,10 +201,10 @@ define([ for (i = removed.length - 1; i > -1; i--) { entity = removed[i]; id = entity.id; - updater = this._updaters.get(id); - removeUpdater(this, updater); - updater.destroy(); - this._updaters.remove(id); + updaterSet = this._updaterSets.get(id); + updaterSet.forEach(this._removeUpdater.bind(this)); + updaterSet.destroy(); + this._updaterSets.remove(id); this._subscriptions.get(id)(); this._subscriptions.remove(id); } @@ -254,10 +212,12 @@ define([ for (i = added.length - 1; i > -1; i--) { entity = added[i]; id = entity.id; - updater = new this._type(entity, this._scene); - this._updaters.set(id, updater); - insertUpdaterIntoBatch(this, time, updater); - this._subscriptions.set(id, updater.geometryChanged.addEventListener(GeometryVisualizer._onGeometryChanged, this)); + updaterSet = new GeometryUpdaterSet(entity, this._scene); + this._updaterSets.set(id, updaterSet); + updaterSet.forEach(function(updater) { + that._insertUpdaterIntoBatch(time, updater); + }); + this._subscriptions.set(id, updaterSet.geometryChanged.addEventListener(GeometryVisualizer._onGeometryChanged, this)); } addedObjects.removeAll(); @@ -290,12 +250,8 @@ define([ */ GeometryVisualizer.prototype.getBoundingSphere = function(entity, result) { //>>includeStart('debug', pragmas.debug); - if (!defined(entity)) { - throw new DeveloperError('entity is required.'); - } - if (!defined(result)) { - throw new DeveloperError('result is required.'); - } + Check.defined('entity', entity); + Check.defined('result', result); //>>includeEnd('debug'); var boundingSpheres = getBoundingSphereArrayScratch; @@ -306,13 +262,19 @@ define([ var batches = this._batches; var batchesLength = batches.length; - for (var i = 0; i < batchesLength; i++) { - state = batches[i].getBoundingSphere(entity, tmp); - if (state === BoundingSphereState.PENDING) { - return BoundingSphereState.PENDING; - } else if (state === BoundingSphereState.DONE) { - boundingSpheres[count] = BoundingSphere.clone(tmp, boundingSpheres[count]); - count++; + var id = entity.id; + var updaters = this._updaterSets.get(id).updaters; + + for (var j = 0; j < updaters.length; j++) { + var updater = updaters[j]; + for (var i = 0; i < batchesLength; i++) { + state = batches[i].getBoundingSphere(updater, tmp); + if (state === BoundingSphereState.PENDING) { + return BoundingSphereState.PENDING; + } else if (state === BoundingSphereState.DONE) { + boundingSpheres[count] = BoundingSphere.clone(tmp, boundingSpheres[count]); + count++; + } } } @@ -358,6 +320,53 @@ define([ return destroyObject(this); }; + /** + * @private + */ + GeometryVisualizer.prototype._removeUpdater = function(updater) { + //We don't keep track of which batch an updater is in, so just remove it from all of them. + var batches = this._batches; + var length = batches.length; + for (var i = 0; i < length; i++) { + batches[i].remove(updater); + } + }; + + /** + * @private + */ + GeometryVisualizer.prototype._insertUpdaterIntoBatch = function(time, updater) { + if (updater.isDynamic) { + this._dynamicBatch.add(time, updater); + return; + } + + var shadows; + if (updater.outlineEnabled || updater.fillEnabled) { + shadows = updater.shadowsProperty.getValue(time); + } + + if (updater.outlineEnabled) { + this._outlineBatches[shadows].add(time, updater); + } + + if (updater.fillEnabled) { + if (updater.onTerrain) { + this._groundColorBatch.add(time, updater); + } else if (updater.isClosed) { + if (updater.fillMaterialProperty instanceof ColorMaterialProperty) { + this._closedColorBatches[shadows].add(time, updater); + } else { + this._closedMaterialBatches[shadows].add(time, updater); + } + } else if (updater.fillMaterialProperty instanceof ColorMaterialProperty) { + this._openColorBatches[shadows].add(time, updater); + } else { + this._openMaterialBatches[shadows].add(time, updater); + } + } + }; + /** * @private */ diff --git a/Source/DataSources/PlaneGeometryUpdater.js b/Source/DataSources/PlaneGeometryUpdater.js index cf3362c24699..5fdbfb4e1527 100644 --- a/Source/DataSources/PlaneGeometryUpdater.js +++ b/Source/DataSources/PlaneGeometryUpdater.js @@ -3,6 +3,7 @@ define([ '../Core/PlaneOutlineGeometry', '../Core/Cartesian2', '../Core/Cartesian3', + '../Core/Check', '../Core/Color', '../Core/ColorGeometryInstanceAttribute', '../Core/defaultValue', @@ -32,6 +33,7 @@ define([ PlaneOutlineGeometry, Cartesian2, Cartesian3, + Check, Color, ColorGeometryInstanceAttribute, defaultValue, @@ -85,12 +87,8 @@ define([ */ function PlaneGeometryUpdater(entity, scene) { //>>includeStart('debug', pragmas.debug); - if (!defined(entity)) { - throw new DeveloperError('entity is required'); - } - if (!defined(scene)) { - throw new DeveloperError('scene is required'); - } + Check.defined('entity', entity); + Check.defined('scene', scene); //>>includeEnd('debug'); this._entity = entity; @@ -109,29 +107,23 @@ define([ this._shadowsProperty = undefined; this._distanceDisplayConditionProperty = undefined; this._options = new GeometryOptions(entity); + this._id = 'plane-' + entity.id; + this._onEntityPropertyChanged(entity, 'plane', entity.plane, undefined); } - defineProperties(PlaneGeometryUpdater, { + defineProperties(PlaneGeometryUpdater.prototype, { /** - * Gets the type of Appearance to use for simple color-based geometry. - * @memberof PlaneGeometryUpdater - * @type {Appearance} + * Gets the unique ID associated with this updater + * @memberof PlaneGeometryUpdater.prototype + * @type {String} + * @readonly */ - perInstanceColorAppearanceType : { - value : PerInstanceColorAppearance + id: { + get: function() { + return this._id; + } }, - /** - * Gets the type of Appearance to use for material-based geometry. - * @memberof PlaneGeometryUpdater - * @type {Appearance} - */ - materialAppearanceType : { - value : MaterialAppearance - } - }); - - defineProperties(PlaneGeometryUpdater.prototype, { /** * Gets the entity associated with this geometry. * @memberof PlaneGeometryUpdater.prototype @@ -332,9 +324,7 @@ define([ */ PlaneGeometryUpdater.prototype.createFillGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._fillEnabled) { throw new DeveloperError('This instance does not represent a filled geometry.'); @@ -400,9 +390,7 @@ define([ */ PlaneGeometryUpdater.prototype.createOutlineGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._outlineEnabled) { throw new DeveloperError('This instance does not represent an outlined geometry.'); @@ -551,13 +539,11 @@ define([ */ PlaneGeometryUpdater.prototype.createDynamicUpdater = function(primitives) { //>>includeStart('debug', pragmas.debug); + Check.defined('primitives', primitives); + if (!this._dynamic) { throw new DeveloperError('This instance does not represent dynamic geometry.'); } - - if (!defined(primitives)) { - throw new DeveloperError('primitives is required.'); - } //>>includeEnd('debug'); return new DynamicGeometryUpdater(primitives, this); @@ -572,12 +558,12 @@ define([ this._outlinePrimitive = undefined; this._geometryUpdater = geometryUpdater; this._options = new GeometryOptions(geometryUpdater._entity); + this._entity = geometryUpdater._entity; } + DynamicGeometryUpdater.prototype.update = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); //>>includeEnd('debug'); var primitives = this._primitives; @@ -587,7 +573,7 @@ define([ this._outlinePrimitive = undefined; var geometryUpdater = this._geometryUpdater; - var entity = geometryUpdater._entity; + var entity = this._entity; var planeGraphics = entity.plane; if (!entity.isShowing || !entity.isAvailable(time) || !Property.getValueOrDefault(planeGraphics.show, time, true)) { return; @@ -712,8 +698,8 @@ define([ return Quaternion.fromAxisAngle(axis, angle, scratchQuaternion); } - DynamicGeometryUpdater.prototype.getBoundingSphere = function(entity, result) { - return dynamicGeometryGetBoundingSphere(entity, this._primitive, this._outlinePrimitive, result); + DynamicGeometryUpdater.prototype.getBoundingSphere = function(result) { + return dynamicGeometryGetBoundingSphere(this._entity, this._primitive, this._outlinePrimitive, result); }; DynamicGeometryUpdater.prototype.isDestroyed = function() { diff --git a/Source/DataSources/PolygonGeometryUpdater.js b/Source/DataSources/PolygonGeometryUpdater.js index c0ab0c898172..66aaa549adba 100644 --- a/Source/DataSources/PolygonGeometryUpdater.js +++ b/Source/DataSources/PolygonGeometryUpdater.js @@ -1,4 +1,5 @@ define([ + '../Core/Check', '../Core/Color', '../Core/ColorGeometryInstanceAttribute', '../Core/defaultValue', @@ -28,6 +29,7 @@ define([ './MaterialProperty', './Property' ], function( + Check, Color, ColorGeometryInstanceAttribute, defaultValue, @@ -91,12 +93,8 @@ define([ */ function PolygonGeometryUpdater(entity, scene) { //>>includeStart('debug', pragmas.debug); - if (!defined(entity)) { - throw new DeveloperError('entity is required'); - } - if (!defined(scene)) { - throw new DeveloperError('scene is required'); - } + Check.defined('entity', entity); + Check.defined('scene', scene); //>>includeEnd('debug'); this._entity = entity; @@ -117,29 +115,23 @@ define([ this._distanceDisplayConditionProperty = undefined; this._onTerrain = false; this._options = new GeometryOptions(entity); + this._id = 'polygon-' + entity.id; + this._onEntityPropertyChanged(entity, 'polygon', entity.polygon, undefined); } - defineProperties(PolygonGeometryUpdater, { + defineProperties(PolygonGeometryUpdater.prototype, { /** - * Gets the type of Appearance to use for simple color-based geometry. - * @memberof PolygonGeometryUpdater - * @type {Appearance} + * Gets the unique ID associated with this updater + * @memberof PolygonGeometryUpdater.prototype + * @type {String} + * @readonly */ - perInstanceColorAppearanceType : { - value : PerInstanceColorAppearance + id: { + get: function() { + return this._id; + } }, - /** - * Gets the type of Appearance to use for material-based geometry. - * @memberof PolygonGeometryUpdater - * @type {Appearance} - */ - materialAppearanceType : { - value : MaterialAppearance - } - }); - - defineProperties(PolygonGeometryUpdater.prototype, { /** * Gets the entity associated with this geometry. * @memberof PolygonGeometryUpdater.prototype @@ -354,9 +346,7 @@ define([ */ PolygonGeometryUpdater.prototype.createFillGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._fillEnabled) { throw new DeveloperError('This instance does not represent a filled geometry.'); @@ -407,9 +397,7 @@ define([ */ PolygonGeometryUpdater.prototype.createOutlineGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._outlineEnabled) { throw new DeveloperError('This instance does not represent an outlined geometry.'); @@ -588,13 +576,12 @@ define([ */ PolygonGeometryUpdater.prototype.createDynamicUpdater = function(primitives, groundPrimitives) { //>>includeStart('debug', pragmas.debug); + Check.defined('primitives', primitives); + Check.defined('groundPrimitives', groundPrimitives); + if (!this._dynamic) { throw new DeveloperError('This instance does not represent dynamic geometry.'); } - - if (!defined(primitives)) { - throw new DeveloperError('primitives is required.'); - } //>>includeEnd('debug'); return new DynamicGeometryUpdater(primitives, groundPrimitives, this); @@ -610,13 +597,12 @@ define([ this._outlinePrimitive = undefined; this._geometryUpdater = geometryUpdater; this._options = new GeometryOptions(geometryUpdater._entity); + this._entity = geometryUpdater._entity; } DynamicGeometryUpdater.prototype.update = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); //>>includeEnd('debug'); var geometryUpdater = this._geometryUpdater; @@ -633,7 +619,7 @@ define([ } this._primitive = undefined; - var entity = geometryUpdater._entity; + var entity = this._entity; var polygon = entity.polygon; if (!entity.isShowing || !entity.isAvailable(time) || !Property.getValueOrDefault(polygon.show, time, true)) { return; @@ -734,8 +720,8 @@ define([ } }; - DynamicGeometryUpdater.prototype.getBoundingSphere = function(entity, result) { - return dynamicGeometryGetBoundingSphere(entity, this._primitive, this._outlinePrimitive, result); + DynamicGeometryUpdater.prototype.getBoundingSphere = function(result) { + return dynamicGeometryGetBoundingSphere(this._entity, this._primitive, this._outlinePrimitive, result); }; DynamicGeometryUpdater.prototype.isDestroyed = function() { diff --git a/Source/DataSources/PolylineGeometryUpdater.js b/Source/DataSources/PolylineGeometryUpdater.js index ed5805ae524b..f515086ae47e 100644 --- a/Source/DataSources/PolylineGeometryUpdater.js +++ b/Source/DataSources/PolylineGeometryUpdater.js @@ -1,5 +1,6 @@ define([ '../Core/BoundingSphere', + '../Core/Check', '../Core/Color', '../Core/ColorGeometryInstanceAttribute', '../Core/defaultValue', @@ -26,6 +27,7 @@ define([ './Property' ], function( BoundingSphere, + Check, Color, ColorGeometryInstanceAttribute, defaultValue, @@ -100,29 +102,23 @@ define([ this._distanceDisplayConditionProperty = undefined; this._depthFailMaterialProperty = undefined; this._options = new GeometryOptions(entity); + this._id = 'polyline-' + entity.id; + this._onEntityPropertyChanged(entity, 'polyline', entity.polyline, undefined); } - defineProperties(PolylineGeometryUpdater, { + defineProperties(PolylineGeometryUpdater.prototype, { /** - * Gets the type of Appearance to use for simple color-based geometry. - * @memberof PolylineGeometryUpdater - * @type {Appearance} + * Gets the unique ID associated with this updater + * @memberof PolylineGeometryUpdater.prototype + * @type {String} + * @readonly */ - perInstanceColorAppearanceType : { - value : PolylineColorAppearance + id: { + get: function() { + return this._id; + } }, - /** - * Gets the type of Appearance to use for material-based geometry. - * @memberof PolylineGeometryUpdater - * @type {Appearance} - */ - materialAppearanceType : { - value : PolylineMaterialAppearance - } - }); - - defineProperties(PolylineGeometryUpdater.prototype, { /** * Gets the entity associated with this geometry. * @memberof PolylineGeometryUpdater.prototype @@ -514,8 +510,8 @@ define([ this._primitives = primitives; this._geometryUpdater = geometryUpdater; this._positions = []; - } + DynamicGeometryUpdater.prototype.update = function(time) { var geometryUpdater = this._geometryUpdater; var entity = geometryUpdater._entity; @@ -551,14 +547,9 @@ define([ line.distanceDisplayCondition = Property.getValueOrUndefined(polyline._distanceDisplayCondition, time, line.distanceDisplayCondition); }; - DynamicGeometryUpdater.prototype.getBoundingSphere = function(entity, result) { + DynamicGeometryUpdater.prototype.getBoundingSphere = function(result) { //>>includeStart('debug', pragmas.debug); - if (!defined(entity)) { - throw new DeveloperError('entity is required.'); - } - if (!defined(result)) { - throw new DeveloperError('result is required.'); - } + Check.defined('result', result); //>>includeEnd('debug'); var line = this._line; diff --git a/Source/DataSources/PolylineVisualizer.js b/Source/DataSources/PolylineVisualizer.js new file mode 100644 index 000000000000..7c5dd65d0640 --- /dev/null +++ b/Source/DataSources/PolylineVisualizer.js @@ -0,0 +1,331 @@ +define([ + '../Core/AssociativeArray', + '../Core/BoundingSphere', + '../Core/Check', + '../Core/defined', + '../Core/destroyObject', + '../Core/DeveloperError', + '../Scene/PolylineColorAppearance', + '../Scene/PolylineMaterialAppearance', + '../Scene/ShadowMode', + './BoundingSphereState', + './ColorMaterialProperty', + './DynamicGeometryBatch', + './PolylineGeometryUpdater', + './StaticGeometryColorBatch', + './StaticGeometryPerMaterialBatch' +], function( + AssociativeArray, + BoundingSphere, + Check, + defined, + destroyObject, + DeveloperError, + PolylineColorAppearance, + PolylineMaterialAppearance, + ShadowMode, + BoundingSphereState, + ColorMaterialProperty, + DynamicGeometryBatch, + PolylineGeometryUpdater, + StaticGeometryColorBatch, + StaticGeometryPerMaterialBatch) { + 'use strict'; + + var emptyArray = []; + + function removeUpdater(that, updater) { + //We don't keep track of which batch an updater is in, so just remove it from all of them. + var batches = that._batches; + var length = batches.length; + for (var i = 0; i < length; i++) { + batches[i].remove(updater); + } + } + + function insertUpdaterIntoBatch(that, time, updater) { + if (updater.isDynamic) { + that._dynamicBatch.add(time, updater); + return; + } + + var shadows; + if (updater.fillEnabled) { + shadows = updater.shadowsProperty.getValue(time); + } + + var multiplier = 0; + if (defined(updater.depthFailMaterialProperty)) { + multiplier = updater.depthFailMaterialProperty instanceof ColorMaterialProperty ? 1 : 2; + } + + var index; + if (defined(shadows)) { + index = shadows + multiplier * ShadowMode.NUMBER_OF_SHADOW_MODES; + } + + if (updater.fillEnabled) { + if (updater.fillMaterialProperty instanceof ColorMaterialProperty) { + that._colorBatches[index].add(time, updater); + } else { + that._materialBatches[index].add(time, updater); + } + } + } + + /** + * A visualizer for polylines represented by {@link Primitive} instances. + * @alias PolylineVisualizer + * @constructor + * + * @param {Scene} scene The scene the primitives will be rendered in. + * @param {EntityCollection} entityCollection The entityCollection to visualize. + */ + function PolylineVisualizer(scene, entityCollection) { + //>>includeStart('debug', pragmas.debug); + Check.defined('scene', scene); + Check.defined('entityCollection', entityCollection); + //>>includeEnd('debug'); + + var primitives = scene.primitives; + + this._scene = scene; + this._primitives = primitives; + this._entityCollection = undefined; + this._addedObjects = new AssociativeArray(); + this._removedObjects = new AssociativeArray(); + this._changedObjects = new AssociativeArray(); + + var numberOfShadowModes = ShadowMode.NUMBER_OF_SHADOW_MODES; + this._colorBatches = new Array(numberOfShadowModes * 3); + this._materialBatches = new Array(numberOfShadowModes * 3); + + for (var i = 0; i < numberOfShadowModes; ++i) { + this._colorBatches[i] = new StaticGeometryColorBatch(primitives, PolylineColorAppearance, undefined, false, i); // no depth fail appearance + this._materialBatches[i] = new StaticGeometryPerMaterialBatch(primitives, PolylineMaterialAppearance, undefined, false, i); + + this._colorBatches[i + numberOfShadowModes] = new StaticGeometryColorBatch(primitives, PolylineColorAppearance, PolylineColorAppearance, false, i); //depth fail appearance variations + this._materialBatches[i + numberOfShadowModes] = new StaticGeometryPerMaterialBatch(primitives, PolylineMaterialAppearance, PolylineColorAppearance, false, i); + + this._colorBatches[i + numberOfShadowModes * 2] = new StaticGeometryColorBatch(primitives, PolylineColorAppearance, PolylineMaterialAppearance, false, i); + this._materialBatches[i + numberOfShadowModes * 2] = new StaticGeometryPerMaterialBatch(primitives, PolylineMaterialAppearance, PolylineMaterialAppearance, false, i); + } + + this._dynamicBatch = new DynamicGeometryBatch(primitives); + + this._batches = this._colorBatches.concat(this._materialBatches, this._dynamicBatch); + + this._subscriptions = new AssociativeArray(); + this._updaters = new AssociativeArray(); + + this._entityCollection = entityCollection; + entityCollection.collectionChanged.addEventListener(PolylineVisualizer.prototype._onCollectionChanged, this); + this._onCollectionChanged(entityCollection, entityCollection.values, emptyArray); + } + + /** + * Updates all of the primitives created by this visualizer to match their + * Entity counterpart at the given time. + * + * @param {JulianDate} time The time to update to. + * @returns {Boolean} True if the visualizer successfully updated to the provided time, + * false if the visualizer is waiting for asynchronous primitives to be created. + */ + PolylineVisualizer.prototype.update = function(time) { + //>>includeStart('debug', pragmas.debug); + Check.defined('time', time); + //>>includeEnd('debug'); + + var addedObjects = this._addedObjects; + var added = addedObjects.values; + var removedObjects = this._removedObjects; + var removed = removedObjects.values; + var changedObjects = this._changedObjects; + var changed = changedObjects.values; + + var i; + var entity; + var id; + var updater; + + for (i = changed.length - 1; i > -1; i--) { + entity = changed[i]; + id = entity.id; + updater = this._updaters.get(id); + + //If in a single update, an entity gets removed and a new instance + //re-added with the same id, the updater no longer tracks the + //correct entity, we need to both remove the old one and + //add the new one, which is done by pushing the entity + //onto the removed/added lists. + if (updater.entity === entity) { + removeUpdater(this, updater); + insertUpdaterIntoBatch(this, time, updater); + } else { + removed.push(entity); + added.push(entity); + } + } + + for (i = removed.length - 1; i > -1; i--) { + entity = removed[i]; + id = entity.id; + updater = this._updaters.get(id); + removeUpdater(this, updater); + updater.destroy(); + this._updaters.remove(id); + this._subscriptions.get(id)(); + this._subscriptions.remove(id); + } + + for (i = added.length - 1; i > -1; i--) { + entity = added[i]; + id = entity.id; + updater = new PolylineGeometryUpdater(entity, this._scene); + this._updaters.set(id, updater); + insertUpdaterIntoBatch(this, time, updater); + this._subscriptions.set(id, updater.geometryChanged.addEventListener(PolylineVisualizer._onGeometryChanged, this)); + } + + addedObjects.removeAll(); + removedObjects.removeAll(); + changedObjects.removeAll(); + + var isUpdated = true; + var batches = this._batches; + var length = batches.length; + for (i = 0; i < length; i++) { + isUpdated = batches[i].update(time) && isUpdated; + } + + return isUpdated; + }; + + var getBoundingSphereArrayScratch = []; + var getBoundingSphereBoundingSphereScratch = new BoundingSphere(); + + /** + * Computes a bounding sphere which encloses the visualization produced for the specified entity. + * The bounding sphere is in the fixed frame of the scene's globe. + * + * @param {Entity} entity The entity whose bounding sphere to compute. + * @param {BoundingSphere} result The bounding sphere onto which to store the result. + * @returns {BoundingSphereState} BoundingSphereState.DONE if the result contains the bounding sphere, + * BoundingSphereState.PENDING if the result is still being computed, or + * BoundingSphereState.FAILED if the entity has no visualization in the current scene. + * @private + */ + PolylineVisualizer.prototype.getBoundingSphere = function(entity, result) { + //>>includeStart('debug', pragmas.debug); + Check.defined('entity', entity); + Check.defined('result', result); + //>>includeEnd('debug'); + + var boundingSpheres = getBoundingSphereArrayScratch; + var tmp = getBoundingSphereBoundingSphereScratch; + + var count = 0; + var state = BoundingSphereState.DONE; + var batches = this._batches; + var batchesLength = batches.length; + var updater = this._updaters.get(entity.id); + for (var i = 0; i < batchesLength; i++) { + state = batches[i].getBoundingSphere(updater, tmp); + if (state === BoundingSphereState.PENDING) { + return BoundingSphereState.PENDING; + } else if (state === BoundingSphereState.DONE) { + boundingSpheres[count] = BoundingSphere.clone(tmp, boundingSpheres[count]); + count++; + } + } + + if (count === 0) { + return BoundingSphereState.FAILED; + } + + boundingSpheres.length = count; + BoundingSphere.fromBoundingSpheres(boundingSpheres, result); + return BoundingSphereState.DONE; + }; + + /** + * Returns true if this object was destroyed; otherwise, false. + * + * @returns {Boolean} True if this object was destroyed; otherwise, false. + */ + PolylineVisualizer.prototype.isDestroyed = function() { + return false; + }; + + /** + * Removes and destroys all primitives created by this instance. + */ + PolylineVisualizer.prototype.destroy = function() { + this._entityCollection.collectionChanged.removeEventListener(PolylineVisualizer.prototype._onCollectionChanged, this); + this._addedObjects.removeAll(); + this._removedObjects.removeAll(); + + var i; + var batches = this._batches; + var length = batches.length; + for (i = 0; i < length; i++) { + batches[i].removeAllPrimitives(); + } + + var subscriptions = this._subscriptions.values; + length = subscriptions.length; + for (i = 0; i < length; i++) { + subscriptions[i](); + } + this._subscriptions.removeAll(); + return destroyObject(this); + }; + + /** + * @private + */ + PolylineVisualizer._onGeometryChanged = function(updater) { + var removedObjects = this._removedObjects; + var changedObjects = this._changedObjects; + + var entity = updater.entity; + var id = entity.id; + + if (!defined(removedObjects.get(id)) && !defined(changedObjects.get(id))) { + changedObjects.set(id, entity); + } + }; + + /** + * @private + */ + PolylineVisualizer.prototype._onCollectionChanged = function(entityCollection, added, removed) { + var addedObjects = this._addedObjects; + var removedObjects = this._removedObjects; + var changedObjects = this._changedObjects; + + var i; + var id; + var entity; + for (i = removed.length - 1; i > -1; i--) { + entity = removed[i]; + id = entity.id; + if (!addedObjects.remove(id)) { + removedObjects.set(id, entity); + changedObjects.remove(id); + } + } + + for (i = added.length - 1; i > -1; i--) { + entity = added[i]; + id = entity.id; + if (removedObjects.remove(id)) { + changedObjects.set(id, entity); + } else { + addedObjects.set(id, entity); + } + } + }; + + return PolylineVisualizer; +}); diff --git a/Source/DataSources/PolylineVolumeGeometryUpdater.js b/Source/DataSources/PolylineVolumeGeometryUpdater.js index c83822ec5be4..8cce9d4c4e88 100644 --- a/Source/DataSources/PolylineVolumeGeometryUpdater.js +++ b/Source/DataSources/PolylineVolumeGeometryUpdater.js @@ -1,4 +1,5 @@ define([ + '../Core/Check', '../Core/Color', '../Core/ColorGeometryInstanceAttribute', '../Core/defaultValue', @@ -24,6 +25,7 @@ define([ './MaterialProperty', './Property' ], function( + Check, Color, ColorGeometryInstanceAttribute, defaultValue, @@ -79,12 +81,8 @@ define([ */ function PolylineVolumeGeometryUpdater(entity, scene) { //>>includeStart('debug', pragmas.debug); - if (!defined(entity)) { - throw new DeveloperError('entity is required'); - } - if (!defined(scene)) { - throw new DeveloperError('scene is required'); - } + Check.defined('entity', entity); + Check.defined('scene', scene); //>>includeEnd('debug'); this._entity = entity; @@ -103,29 +101,23 @@ define([ this._shadowsProperty = undefined; this._distanceDisplayConditionProperty = undefined; this._options = new GeometryOptions(entity); + this._id = 'polyline-volume-' + entity.id; + this._onEntityPropertyChanged(entity, 'polylineVolume', entity.polylineVolume, undefined); } - defineProperties(PolylineVolumeGeometryUpdater, { + defineProperties(PolylineVolumeGeometryUpdater.prototype, { /** - * Gets the type of appearance to use for simple color-based geometry. - * @memberof PolylineVolumeGeometryUpdater - * @type {Appearance} + * Gets the unique ID associated with this updater + * @memberof PolylineVolumeGeometryUpdater.prototype + * @type {String} + * @readonly */ - perInstanceColorAppearanceType : { - value : PerInstanceColorAppearance + id: { + get: function() { + return this._id; + } }, - /** - * Gets the type of appearance to use for material-based geometry. - * @memberof PolylineVolumeGeometryUpdater - * @type {Appearance} - */ - materialAppearanceType : { - value : MaterialAppearance - } - }); - - defineProperties(PolylineVolumeGeometryUpdater.prototype, { /** * Gets the entity associated with this geometry. * @memberof PolylineVolumeGeometryUpdater.prototype @@ -326,9 +318,7 @@ define([ */ PolylineVolumeGeometryUpdater.prototype.createFillGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._fillEnabled) { throw new DeveloperError('This instance does not represent a filled geometry.'); @@ -379,9 +369,7 @@ define([ */ PolylineVolumeGeometryUpdater.prototype.createOutlineGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._outlineEnabled) { throw new DeveloperError('This instance does not represent an outlined geometry.'); @@ -519,13 +507,11 @@ define([ */ PolylineVolumeGeometryUpdater.prototype.createDynamicUpdater = function(primitives) { //>>includeStart('debug', pragmas.debug); + Check.defined('primitives', primitives); + if (!this._dynamic) { throw new DeveloperError('This instance does not represent dynamic geometry.'); } - - if (!defined(primitives)) { - throw new DeveloperError('primitives is required.'); - } //>>includeEnd('debug'); return new DynamicGeometryUpdater(primitives, this); @@ -540,12 +526,12 @@ define([ this._outlinePrimitive = undefined; this._geometryUpdater = geometryUpdater; this._options = new GeometryOptions(geometryUpdater._entity); + this._entity = geometryUpdater._entity; } + DynamicGeometryUpdater.prototype.update = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); //>>includeEnd('debug'); var primitives = this._primitives; @@ -555,7 +541,7 @@ define([ this._outlinePrimitive = undefined; var geometryUpdater = this._geometryUpdater; - var entity = geometryUpdater._entity; + var entity = this._entity; var polylineVolume = entity.polylineVolume; if (!entity.isShowing || !entity.isAvailable(time) || !Property.getValueOrDefault(polylineVolume.show, time, true)) { return; @@ -625,8 +611,8 @@ define([ } }; - DynamicGeometryUpdater.prototype.getBoundingSphere = function(entity, result) { - return dynamicGeometryGetBoundingSphere(entity, this._primitive, this._outlinePrimitive, result); + DynamicGeometryUpdater.prototype.getBoundingSphere = function(result) { + return dynamicGeometryGetBoundingSphere(this._entity, this._primitive, this._outlinePrimitive, result); }; DynamicGeometryUpdater.prototype.isDestroyed = function() { diff --git a/Source/DataSources/RectangleGeometryUpdater.js b/Source/DataSources/RectangleGeometryUpdater.js index bc499b6c531c..9b3dd17bc047 100644 --- a/Source/DataSources/RectangleGeometryUpdater.js +++ b/Source/DataSources/RectangleGeometryUpdater.js @@ -1,4 +1,5 @@ define([ + '../Core/Check', '../Core/Color', '../Core/ColorGeometryInstanceAttribute', '../Core/defaultValue', @@ -26,6 +27,7 @@ define([ './MaterialProperty', './Property' ], function( + Check, Color, ColorGeometryInstanceAttribute, defaultValue, @@ -87,12 +89,8 @@ define([ */ function RectangleGeometryUpdater(entity, scene) { //>>includeStart('debug', pragmas.debug); - if (!defined(entity)) { - throw new DeveloperError('entity is required'); - } - if (!defined(scene)) { - throw new DeveloperError('scene is required'); - } + Check.defined('entity', entity); + Check.defined('scene', scene); //>>includeEnd('debug'); this._entity = entity; @@ -113,30 +111,23 @@ define([ this._distanceDisplayConditionProperty = undefined; this._onTerrain = false; this._options = new GeometryOptions(entity); + this._id = 'rectangle-' + entity.id; this._onEntityPropertyChanged(entity, 'rectangle', entity.rectangle, undefined); } - defineProperties(RectangleGeometryUpdater, { + defineProperties(RectangleGeometryUpdater.prototype, { /** - * Gets the type of Appearance to use for simple color-based geometry. - * @memberof RectangleGeometryUpdater - * @type {Appearance} + * Gets the unique ID associated with this updater + * @memberof RectangleGeometryUpdater.prototype + * @type {String} + * @readonly */ - perInstanceColorAppearanceType : { - value : PerInstanceColorAppearance + id: { + get: function() { + return this._id; + } }, - /** - * Gets the type of Appearance to use for material-based geometry. - * @memberof RectangleGeometryUpdater - * @type {Appearance} - */ - materialAppearanceType : { - value : MaterialAppearance - } - }); - - defineProperties(RectangleGeometryUpdater.prototype, { /** * Gets the entity associated with this geometry. * @memberof RectangleGeometryUpdater.prototype @@ -351,9 +342,7 @@ define([ */ RectangleGeometryUpdater.prototype.createFillGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._fillEnabled) { throw new DeveloperError('This instance does not represent a filled geometry.'); @@ -404,9 +393,7 @@ define([ */ RectangleGeometryUpdater.prototype.createOutlineGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._outlineEnabled) { throw new DeveloperError('This instance does not represent an outlined geometry.'); @@ -568,13 +555,12 @@ define([ */ RectangleGeometryUpdater.prototype.createDynamicUpdater = function(primitives, groundPrimitives) { //>>includeStart('debug', pragmas.debug); + Check.defined('primitives', primitives); + Check.defined('groundPrimitives', groundPrimitives); + if (!this._dynamic) { throw new DeveloperError('This instance does not represent dynamic geometry.'); } - - if (!defined(primitives)) { - throw new DeveloperError('primitives is required.'); - } //>>includeEnd('debug'); return new DynamicGeometryUpdater(primitives, groundPrimitives, this); @@ -590,12 +576,12 @@ define([ this._outlinePrimitive = undefined; this._geometryUpdater = geometryUpdater; this._options = new GeometryOptions(geometryUpdater._entity); + this._entity = geometryUpdater._entity; } + DynamicGeometryUpdater.prototype.update = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); //>>includeEnd('debug'); var geometryUpdater = this._geometryUpdater; @@ -612,7 +598,7 @@ define([ } this._primitive = undefined; - var entity = geometryUpdater._entity; + var entity = this._entity; var rectangle = entity.rectangle; if (!entity.isShowing || !entity.isAvailable(time) || !Property.getValueOrDefault(rectangle.show, time, true)) { return; @@ -706,8 +692,8 @@ define([ } }; - DynamicGeometryUpdater.prototype.getBoundingSphere = function(entity, result) { - return dynamicGeometryGetBoundingSphere(entity, this._primitive, this._outlinePrimitive, result); + DynamicGeometryUpdater.prototype.getBoundingSphere = function(result) { + return dynamicGeometryGetBoundingSphere(this._entity, this._primitive, this._outlinePrimitive, result); }; DynamicGeometryUpdater.prototype.isDestroyed = function() { diff --git a/Source/DataSources/StaticGeometryColorBatch.js b/Source/DataSources/StaticGeometryColorBatch.js index c8284092b5d9..f0a304277de3 100644 --- a/Source/DataSources/StaticGeometryColorBatch.js +++ b/Source/DataSources/StaticGeometryColorBatch.js @@ -75,7 +75,7 @@ define([ }; Batch.prototype.add = function(updater, instance) { - var id = updater.entity.id; + var id = updater.id; this.createPrimitive = true; this.geometry.set(id, instance); this.updaters.set(id, updater); @@ -85,14 +85,14 @@ define([ var that = this; this.subscriptions.set(id, updater.entity.definitionChanged.addEventListener(function(entity, propertyName, newValue, oldValue) { if (propertyName === 'isShowing') { - that.showsUpdated.set(entity.id, updater); + that.showsUpdated.set(updater.id, updater); } })); } }; Batch.prototype.remove = function(updater) { - var id = updater.entity.id; + var id = updater.id; this.createPrimitive = this.geometry.remove(id) || this.createPrimitive; if (this.updaters.remove(id)) { this.updatersWithAttributes.remove(id); @@ -198,7 +198,7 @@ define([ var waitingOnCreate = this.waitingOnCreate; for (i = 0; i < length; i++) { var updater = updatersWithAttributes[i]; - var instance = this.geometry.get(updater.entity.id); + var instance = this.geometry.get(updater.id); attributes = this.attributes.get(instance.id.id); if (!defined(attributes)) { @@ -257,7 +257,7 @@ define([ var length = showsUpdated.length; for (var i = 0; i < length; i++) { var updater = showsUpdated[i]; - var instance = this.geometry.get(updater.entity.id); + var instance = this.geometry.get(updater.id); var attributes = this.attributes.get(instance.id.id); if (!defined(attributes)) { @@ -274,16 +274,16 @@ define([ this.showsUpdated.removeAll(); }; - Batch.prototype.contains = function(entity) { - return this.updaters.contains(entity.id); + Batch.prototype.contains = function(updater) { + return this.updaters.contains(updater.id); }; - Batch.prototype.getBoundingSphere = function(entity, result) { + Batch.prototype.getBoundingSphere = function(updater, result) { var primitive = this.primitive; if (!primitive.ready) { return BoundingSphereState.PENDING; } - var attributes = primitive.getGeometryInstanceAttributes(entity); + var attributes = primitive.getGeometryInstanceAttributes(updater.entity); if (!defined(attributes) || !defined(attributes.boundingSphere) ||// (defined(attributes.show) && attributes.show[0] === 0)) { return BoundingSphereState.FAILED; @@ -445,21 +445,21 @@ define([ return isUpdated; }; - function getBoundingSphere(items, entity, result) { + function getBoundingSphere(items, updater, result) { var length = items.length; for (var i = 0; i < length; i++) { var item = items[i]; - if(item.contains(entity)){ - return item.getBoundingSphere(entity, result); + if(item.contains(updater)){ + return item.getBoundingSphere(updater, result); } } return BoundingSphereState.FAILED; } - StaticGeometryColorBatch.prototype.getBoundingSphere = function(entity, result) { - var boundingSphere = getBoundingSphere(this._solidItems, entity, result); + StaticGeometryColorBatch.prototype.getBoundingSphere = function(updater, result) { + var boundingSphere = getBoundingSphere(this._solidItems, updater, result); if (boundingSphere === BoundingSphereState.FAILED) { - return getBoundingSphere(this._translucentItems, entity, result); + return getBoundingSphere(this._translucentItems, updater, result); } return boundingSphere; }; diff --git a/Source/DataSources/StaticGeometryPerMaterialBatch.js b/Source/DataSources/StaticGeometryPerMaterialBatch.js index 0a74c5d0a856..96870a69ab2b 100644 --- a/Source/DataSources/StaticGeometryPerMaterialBatch.js +++ b/Source/DataSources/StaticGeometryPerMaterialBatch.js @@ -70,7 +70,7 @@ define([ }; Batch.prototype.add = function(time, updater) { - var id = updater.entity.id; + var id = updater.id; this.updaters.set(id, updater); this.geometry.set(id, updater.createFillGeometryInstance(time)); if (!updater.hasConstantFill || !updater.fillMaterialProperty.isConstant || !Property.isConstant(updater.distanceDisplayConditionProperty)) { @@ -79,7 +79,7 @@ define([ var that = this; this.subscriptions.set(id, updater.entity.definitionChanged.addEventListener(function(entity, propertyName, newValue, oldValue) { if (propertyName === 'isShowing') { - that.showsUpdated.set(entity.id, updater); + that.showsUpdated.set(updater.id, updater); } })); } @@ -87,7 +87,7 @@ define([ }; Batch.prototype.remove = function(updater) { - var id = updater.entity.id; + var id = updater.id; this.createPrimitive = this.geometry.remove(id) || this.createPrimitive; if (this.updaters.remove(id)) { this.updatersWithAttributes.remove(id); @@ -205,7 +205,7 @@ define([ for (i = 0; i < length; i++) { var updater = updatersWithAttributes[i]; var entity = updater.entity; - var instance = this.geometry.get(entity.id); + var instance = this.geometry.get(updater.id); attributes = this.attributes.get(instance.id.id); if (!defined(attributes)) { @@ -251,7 +251,7 @@ define([ for (var i = 0; i < length; i++) { var updater = showsUpdated[i]; var entity = updater.entity; - var instance = this.geometry.get(entity.id); + var instance = this.geometry.get(updater.id); var attributes = this.attributes.get(instance.id.id); if (!defined(attributes)) { @@ -268,16 +268,16 @@ define([ this.showsUpdated.removeAll(); }; - Batch.prototype.contains = function(entity) { - return this.updaters.contains(entity.id); + Batch.prototype.contains = function(updater) { + return this.updaters.contains(updater.id); }; - Batch.prototype.getBoundingSphere = function(entity, result) { + Batch.prototype.getBoundingSphere = function(updater, result) { var primitive = this.primitive; if (!primitive.ready) { return BoundingSphereState.PENDING; } - var attributes = primitive.getGeometryInstanceAttributes(entity); + var attributes = primitive.getGeometryInstanceAttributes(updater.entity); if (!defined(attributes) || !defined(attributes.boundingSphere) || (defined(attributes.show) && attributes.show[0] === 0)) { return BoundingSphereState.FAILED; @@ -366,13 +366,13 @@ define([ return isUpdated; }; - StaticGeometryPerMaterialBatch.prototype.getBoundingSphere = function(entity, result) { + StaticGeometryPerMaterialBatch.prototype.getBoundingSphere = function(updater, result) { var items = this._items; var length = items.length; for (var i = 0; i < length; i++) { var item = items[i]; - if(item.contains(entity)){ - return item.getBoundingSphere(entity, result); + if(item.contains(updater)){ + return item.getBoundingSphere(updater, result); } } return BoundingSphereState.FAILED; diff --git a/Source/DataSources/StaticGroundGeometryColorBatch.js b/Source/DataSources/StaticGroundGeometryColorBatch.js index e0c22eb2a100..97662f457ad6 100644 --- a/Source/DataSources/StaticGroundGeometryColorBatch.js +++ b/Source/DataSources/StaticGroundGeometryColorBatch.js @@ -42,7 +42,7 @@ define([ } Batch.prototype.add = function(updater, instance) { - var id = updater.entity.id; + var id = updater.id; this.createPrimitive = true; this.geometry.set(id, instance); this.updaters.set(id, updater); @@ -52,14 +52,14 @@ define([ var that = this; this.subscriptions.set(id, updater.entity.definitionChanged.addEventListener(function(entity, propertyName, newValue, oldValue) { if (propertyName === 'isShowing') { - that.showsUpdated.set(entity.id, updater); + that.showsUpdated.set(updater.id, updater); } })); } }; Batch.prototype.remove = function(updater) { - var id = updater.entity.id; + var id = updater.id; this.createPrimitive = this.geometry.remove(id) || this.createPrimitive; if (this.updaters.remove(id)) { this.updatersWithAttributes.remove(id); @@ -140,7 +140,7 @@ define([ var waitingOnCreate = this.waitingOnCreate; for (i = 0; i < length; i++) { var updater = updatersWithAttributes[i]; - var instance = this.geometry.get(updater.entity.id); + var instance = this.geometry.get(updater.id); attributes = this.attributes.get(instance.id.id); if (!defined(attributes)) { @@ -193,7 +193,7 @@ define([ var length = showsUpdated.length; for (var i = 0; i < length; i++) { var updater = showsUpdated[i]; - var instance = this.geometry.get(updater.entity.id); + var instance = this.geometry.get(updater.id); var attributes = this.attributes.get(instance.id.id); if (!defined(attributes)) { @@ -210,17 +210,17 @@ define([ this.showsUpdated.removeAll(); }; - Batch.prototype.contains = function(entity) { - return this.updaters.contains(entity.id); + Batch.prototype.contains = function(updater) { + return this.updaters.contains(updater.id); }; - Batch.prototype.getBoundingSphere = function(entity, result) { + Batch.prototype.getBoundingSphere = function(updater, result) { var primitive = this.primitive; if (!primitive.ready) { return BoundingSphereState.PENDING; } - var bs = primitive.getBoundingSphere(entity); + var bs = primitive.getBoundingSphere(updater.entity); if (!defined(bs)) { return BoundingSphereState.FAILED; } @@ -325,13 +325,13 @@ define([ return isUpdated; }; - StaticGroundGeometryColorBatch.prototype.getBoundingSphere = function(entity, result) { + StaticGroundGeometryColorBatch.prototype.getBoundingSphere = function(updater, result) { var batchesArray = this._batches.values; var batchCount = batchesArray.length; for (var i = 0; i < batchCount; ++i) { var batch = batchesArray[i]; - if (batch.contains(entity)) { - return batch.getBoundingSphere(entity, result); + if (batch.contains(updater)) { + return batch.getBoundingSphere(updater, result); } } diff --git a/Source/DataSources/StaticOutlineGeometryBatch.js b/Source/DataSources/StaticOutlineGeometryBatch.js index fe5786d42230..755456746123 100644 --- a/Source/DataSources/StaticOutlineGeometryBatch.js +++ b/Source/DataSources/StaticOutlineGeometryBatch.js @@ -42,7 +42,7 @@ define([ this.showsUpdated = new AssociativeArray(); } Batch.prototype.add = function(updater, instance) { - var id = updater.entity.id; + var id = updater.id; this.createPrimitive = true; this.geometry.set(id, instance); this.updaters.set(id, updater); @@ -52,14 +52,14 @@ define([ var that = this; this.subscriptions.set(id, updater.entity.definitionChanged.addEventListener(function(entity, propertyName, newValue, oldValue) { if (propertyName === 'isShowing') { - that.showsUpdated.set(entity.id, updater); + that.showsUpdated.set(updater.id, updater); } })); } }; Batch.prototype.remove = function(updater) { - var id = updater.entity.id; + var id = updater.id; this.createPrimitive = this.geometry.remove(id) || this.createPrimitive; if (this.updaters.remove(id)) { this.updatersWithAttributes.remove(id); @@ -151,7 +151,7 @@ define([ var waitingOnCreate = this.waitingOnCreate; for (i = 0; i < length; i++) { var updater = updatersWithAttributes[i]; - var instance = this.geometry.get(updater.entity.id); + var instance = this.geometry.get(updater.id); attributes = this.attributes.get(instance.id.id); if (!defined(attributes)) { @@ -202,7 +202,7 @@ define([ var length = showsUpdated.length; for (var i = 0; i < length; i++) { var updater = showsUpdated[i]; - var instance = this.geometry.get(updater.entity.id); + var instance = this.geometry.get(updater.id); var attributes = this.attributes.get(instance.id.id); if (!defined(attributes)) { @@ -219,16 +219,16 @@ define([ this.showsUpdated.removeAll(); }; - Batch.prototype.contains = function(entity) { - return this.updaters.contains(entity.id); + Batch.prototype.contains = function(updater) { + return this.updaters.contains(updater.id); }; - Batch.prototype.getBoundingSphere = function(entity, result) { + Batch.prototype.getBoundingSphere = function(updater, result) { var primitive = this.primitive; if (!primitive.ready) { return BoundingSphereState.PENDING; } - var attributes = primitive.getGeometryInstanceAttributes(entity); + var attributes = primitive.getGeometryInstanceAttributes(updater.entity); if (!defined(attributes) || !defined(attributes.boundingSphere) ||// (defined(attributes.show) && attributes.show[0] === 0)) { return BoundingSphereState.FAILED; @@ -365,15 +365,15 @@ define([ return isUpdated; }; - StaticOutlineGeometryBatch.prototype.getBoundingSphere = function(entity, result) { + StaticOutlineGeometryBatch.prototype.getBoundingSphere = function(updater, result) { var i; var solidBatches = this._solidBatches.values; var solidBatchesLength = solidBatches.length; for (i = 0; i < solidBatchesLength; i++) { var solidBatch = solidBatches[i]; - if(solidBatch.contains(entity)){ - return solidBatch.getBoundingSphere(entity, result); + if(solidBatch.contains(updater)){ + return solidBatch.getBoundingSphere(updater, result); } } @@ -381,8 +381,8 @@ define([ var translucentBatchesLength = translucentBatches.length; for (i = 0; i < translucentBatchesLength; i++) { var translucentBatch = translucentBatches[i]; - if(translucentBatch.contains(entity)){ - return translucentBatch.getBoundingSphere(entity, result); + if(translucentBatch.contains(updater)){ + return translucentBatch.getBoundingSphere(updater, result); } } diff --git a/Source/DataSources/WallGeometryUpdater.js b/Source/DataSources/WallGeometryUpdater.js index 8ade7d448206..19f96b125dc6 100644 --- a/Source/DataSources/WallGeometryUpdater.js +++ b/Source/DataSources/WallGeometryUpdater.js @@ -1,4 +1,5 @@ define([ + '../Core/Check', '../Core/Color', '../Core/ColorGeometryInstanceAttribute', '../Core/defaultValue', @@ -24,6 +25,7 @@ define([ './MaterialProperty', './Property' ], function( + Check, Color, ColorGeometryInstanceAttribute, defaultValue, @@ -79,12 +81,8 @@ define([ */ function WallGeometryUpdater(entity, scene) { //>>includeStart('debug', pragmas.debug); - if (!defined(entity)) { - throw new DeveloperError('entity is required'); - } - if (!defined(scene)) { - throw new DeveloperError('scene is required'); - } + Check.defined('entity', entity); + Check.defined('scene', scene); //>>includeEnd('debug'); this._entity = entity; @@ -103,29 +101,23 @@ define([ this._shadowsProperty = undefined; this._distanceDisplayConditionProperty = undefined; this._options = new GeometryOptions(entity); + this._id = 'wall-' + entity.id; + this._onEntityPropertyChanged(entity, 'wall', entity.wall, undefined); } - defineProperties(WallGeometryUpdater, { + defineProperties(WallGeometryUpdater.prototype, { /** - * Gets the type of Appearance to use for simple color-based geometry. - * @memberof WallGeometryUpdater - * @type {Appearance} + * Gets the unique ID associated with this updater + * @memberof WallGeometryUpdater.prototype + * @type {String} + * @readonly */ - perInstanceColorAppearanceType : { - value : PerInstanceColorAppearance + id: { + get: function() { + return this._id; + } }, - /** - * Gets the type of Appearance to use for material-based geometry. - * @memberof WallGeometryUpdater - * @type {Appearance} - */ - materialAppearanceType : { - value : MaterialAppearance - } - }); - - defineProperties(WallGeometryUpdater.prototype, { /** * Gets the entity associated with this geometry. * @memberof WallGeometryUpdater.prototype @@ -328,9 +320,7 @@ define([ */ WallGeometryUpdater.prototype.createFillGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._fillEnabled) { throw new DeveloperError('This instance does not represent a filled geometry.'); @@ -381,9 +371,7 @@ define([ */ WallGeometryUpdater.prototype.createOutlineGeometryInstance = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); if (!this._outlineEnabled) { throw new DeveloperError('This instance does not represent an outlined geometry.'); @@ -522,13 +510,11 @@ define([ */ WallGeometryUpdater.prototype.createDynamicUpdater = function(primitives) { //>>includeStart('debug', pragmas.debug); + Check.defined('primitives', primitives); + if (!this._dynamic) { throw new DeveloperError('This instance does not represent dynamic geometry.'); } - - if (!defined(primitives)) { - throw new DeveloperError('primitives is required.'); - } //>>includeEnd('debug'); return new DynamicGeometryUpdater(primitives, this); @@ -543,12 +529,12 @@ define([ this._outlinePrimitive = undefined; this._geometryUpdater = geometryUpdater; this._options = new GeometryOptions(geometryUpdater._entity); + this._entity = geometryUpdater._entity; } + DynamicGeometryUpdater.prototype.update = function(time) { //>>includeStart('debug', pragmas.debug); - if (!defined(time)) { - throw new DeveloperError('time is required.'); - } + Check.defined('time', time); //>>includeEnd('debug'); var primitives = this._primitives; @@ -558,7 +544,7 @@ define([ this._outlinePrimitive = undefined; var geometryUpdater = this._geometryUpdater; - var entity = geometryUpdater._entity; + var entity = this._entity; var wall = entity.wall; if (!entity.isShowing || !entity.isAvailable(time) || !Property.getValueOrDefault(wall.show, time, true)) { return; @@ -627,8 +613,8 @@ define([ } }; - DynamicGeometryUpdater.prototype.getBoundingSphere = function(entity, result) { - return dynamicGeometryGetBoundingSphere(entity, this._primitive, this._outlinePrimitive, result); + DynamicGeometryUpdater.prototype.getBoundingSphere = function(result) { + return dynamicGeometryGetBoundingSphere(this._entity, this._primitive, this._outlinePrimitive, result); }; DynamicGeometryUpdater.prototype.isDestroyed = function() { diff --git a/Specs/DataSources/CorridorGeometryUpdaterSpec.js b/Specs/DataSources/CorridorGeometryUpdaterSpec.js index 2fef90a3ccf7..4e5248031fd5 100644 --- a/Specs/DataSources/CorridorGeometryUpdaterSpec.js +++ b/Specs/DataSources/CorridorGeometryUpdaterSpec.js @@ -510,7 +510,7 @@ defineSuite([ var updater = new CorridorGeometryUpdater(entity, scene); var primitives = new PrimitiveCollection(); var groundPrimitives = new PrimitiveCollection(); - var dynamicUpdater = updater.createDynamicUpdater(primitives); + var dynamicUpdater = updater.createDynamicUpdater(primitives, groundPrimitives); expect(dynamicUpdater.isDestroyed()).toBe(false); expect(primitives.length).toBe(0); expect(groundPrimitives.length).toBe(0); @@ -658,7 +658,7 @@ defineSuite([ var entity = createBasicCorridor(); var updater = new CorridorGeometryUpdater(entity, scene); expect(function() { - return updater.createDynamicUpdater(new PrimitiveCollection()); + return updater.createDynamicUpdater(new PrimitiveCollection(), new PrimitiveCollection()); }).toThrowDeveloperError(); }); @@ -669,7 +669,18 @@ defineSuite([ var updater = new CorridorGeometryUpdater(entity, scene); expect(updater.isDynamic).toBe(true); expect(function() { - return updater.createDynamicUpdater(undefined); + return updater.createDynamicUpdater(undefined, new PrimitiveCollection()); + }).toThrowDeveloperError(); + }); + + it('createDynamicUpdater throws if groundPrimitives undefined', function() { + var entity = createBasicCorridor(); + entity.corridor.height = new SampledProperty(Number); + entity.corridor.height.addSample(time, 4); + var updater = new CorridorGeometryUpdater(entity, scene); + expect(updater.isDynamic).toBe(true); + expect(function() { + return updater.createDynamicUpdater(new PrimitiveCollection(), undefined); }).toThrowDeveloperError(); }); @@ -678,7 +689,7 @@ defineSuite([ entity.corridor.height = new SampledProperty(Number); entity.corridor.height.addSample(time, 4); var updater = new CorridorGeometryUpdater(entity, scene); - var dynamicUpdater = updater.createDynamicUpdater(new PrimitiveCollection()); + var dynamicUpdater = updater.createDynamicUpdater(new PrimitiveCollection(), new PrimitiveCollection()); expect(function() { dynamicUpdater.update(undefined); }).toThrowDeveloperError(); diff --git a/Specs/DataSources/EllipseGeometryUpdaterSpec.js b/Specs/DataSources/EllipseGeometryUpdaterSpec.js index 3b87b053f710..f833a9ee521a 100644 --- a/Specs/DataSources/EllipseGeometryUpdaterSpec.js +++ b/Specs/DataSources/EllipseGeometryUpdaterSpec.js @@ -703,7 +703,7 @@ defineSuite([ var entity = createBasicEllipse(); var updater = new EllipseGeometryUpdater(entity, scene); expect(function() { - return updater.createDynamicUpdater(new PrimitiveCollection()); + return updater.createDynamicUpdater(new PrimitiveCollection(), new PrimitiveCollection()); }).toThrowDeveloperError(); }); @@ -713,7 +713,7 @@ defineSuite([ var updater = new EllipseGeometryUpdater(entity, scene); expect(updater.isDynamic).toBe(true); expect(function() { - return updater.createDynamicUpdater(undefined); + return updater.createDynamicUpdater(undefined, new PrimitiveCollection()); }).toThrowDeveloperError(); }); @@ -721,7 +721,7 @@ defineSuite([ var entity = createBasicEllipse(); entity.ellipse.semiMajorAxis = createDynamicProperty(4); var updater = new EllipseGeometryUpdater(entity, scene); - var dynamicUpdater = updater.createDynamicUpdater(new PrimitiveCollection()); + var dynamicUpdater = updater.createDynamicUpdater(new PrimitiveCollection(), new PrimitiveCollection()); expect(function() { dynamicUpdater.update(undefined); }).toThrowDeveloperError(); diff --git a/Specs/DataSources/GeometryVisualizerSpec.js b/Specs/DataSources/GeometryVisualizerSpec.js index 837a189f3209..65304b57393f 100644 --- a/Specs/DataSources/GeometryVisualizerSpec.js +++ b/Specs/DataSources/GeometryVisualizerSpec.js @@ -16,14 +16,14 @@ defineSuite([ 'DataSources/Entity', 'DataSources/EntityCollection', 'DataSources/GridMaterialProperty', - 'DataSources/PolylineGeometryUpdater', - 'DataSources/PolylineGraphics', 'DataSources/SampledProperty', 'DataSources/StaticGeometryColorBatch', 'DataSources/StaticGeometryPerMaterialBatch', 'DataSources/StaticGroundGeometryColorBatch', 'DataSources/StaticOutlineGeometryBatch', 'Scene/GroundPrimitive', + 'Scene/MaterialAppearance', + 'Scene/PerInstanceColorAppearance', 'Scene/ShadowMode', 'Specs/createDynamicProperty', 'Specs/createScene', @@ -46,14 +46,14 @@ defineSuite([ Entity, EntityCollection, GridMaterialProperty, - PolylineGeometryUpdater, - PolylineGraphics, SampledProperty, StaticGeometryColorBatch, StaticGeometryPerMaterialBatch, StaticGroundGeometryColorBatch, StaticOutlineGeometryBatch, GroundPrimitive, + MaterialAppearance, + PerInstanceColorAppearance, ShadowMode, createDynamicProperty, createScene, @@ -80,7 +80,7 @@ defineSuite([ it('Can create and destroy', function() { var objects = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, objects); + var visualizer = new GeometryVisualizer(scene, objects); expect(visualizer.update(time)).toBe(true); expect(scene.primitives.length).toBe(0); expect(visualizer.isDestroyed()).toBe(false); @@ -90,7 +90,7 @@ defineSuite([ it('Creates and removes static color open geometry', function() { var objects = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, objects); + var visualizer = new GeometryVisualizer(scene, objects); var ellipse = new EllipseGraphics(); ellipse.semiMajorAxis = new ConstantProperty(2); @@ -114,7 +114,7 @@ defineSuite([ expect(attributes).toBeDefined(); expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); expect(attributes.color).toEqual(ColorGeometryInstanceAttribute.toValue(Color.WHITE)); - expect(primitive.appearance).toBeInstanceOf(EllipseGeometryUpdater.perInstanceColorAppearanceType); + expect(primitive.appearance).toBeInstanceOf(PerInstanceColorAppearance); expect(primitive.appearance.closed).toBe(false); objects.remove(entity); @@ -132,7 +132,7 @@ defineSuite([ it('Creates and removes static material open geometry', function() { var objects = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, objects); + var visualizer = new GeometryVisualizer(scene, objects); var ellipse = new EllipseGraphics(); ellipse.semiMajorAxis = new ConstantProperty(2); @@ -155,7 +155,7 @@ defineSuite([ expect(attributes).toBeDefined(); expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); expect(attributes.color).toBeUndefined(); - expect(primitive.appearance).toBeInstanceOf(EllipseGeometryUpdater.materialAppearanceType); + expect(primitive.appearance).toBeInstanceOf(MaterialAppearance); expect(primitive.appearance.closed).toBe(false); objects.remove(entity); @@ -173,7 +173,7 @@ defineSuite([ it('Creates and removes static color closed geometry', function() { var objects = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, objects); + var visualizer = new GeometryVisualizer(scene, objects); var ellipse = new EllipseGraphics(); ellipse.semiMajorAxis = new ConstantProperty(2); @@ -197,7 +197,7 @@ defineSuite([ expect(attributes).toBeDefined(); expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); expect(attributes.color).toEqual(ColorGeometryInstanceAttribute.toValue(Color.WHITE)); - expect(primitive.appearance).toBeInstanceOf(EllipseGeometryUpdater.perInstanceColorAppearanceType); + expect(primitive.appearance).toBeInstanceOf(PerInstanceColorAppearance); expect(primitive.appearance.closed).toBe(true); objects.remove(entity); @@ -215,7 +215,7 @@ defineSuite([ it('Creates and removes static material closed geometry', function() { var objects = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, objects); + var visualizer = new GeometryVisualizer(scene, objects); var ellipse = new EllipseGraphics(); ellipse.semiMajorAxis = new ConstantProperty(2); @@ -239,7 +239,7 @@ defineSuite([ expect(attributes).toBeDefined(); expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); expect(attributes.color).toBeUndefined(); - expect(primitive.appearance).toBeInstanceOf(EllipseGeometryUpdater.materialAppearanceType); + expect(primitive.appearance).toBeInstanceOf(MaterialAppearance); expect(primitive.appearance.closed).toBe(true); objects.remove(entity); @@ -257,7 +257,7 @@ defineSuite([ it('Creates and removes static outline geometry', function() { var objects = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, objects); + var visualizer = new GeometryVisualizer(scene, objects); var ellipse = new EllipseGraphics(); ellipse.semiMajorAxis = new ConstantProperty(2); @@ -282,7 +282,7 @@ defineSuite([ expect(attributes).toBeDefined(); expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); expect(attributes.color).toEqual(ColorGeometryInstanceAttribute.toValue(Color.BLUE)); - expect(primitive.appearance).toBeInstanceOf(EllipseGeometryUpdater.perInstanceColorAppearanceType); + expect(primitive.appearance).toBeInstanceOf(PerInstanceColorAppearance); objects.remove(entity); @@ -299,7 +299,7 @@ defineSuite([ function createAndRemoveGeometryWithShadows(shadows) { var objects = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, objects); + var visualizer = new GeometryVisualizer(scene, objects); var ellipse = new EllipseGraphics(); ellipse.semiMajorAxis = new ConstantProperty(2); @@ -351,177 +351,9 @@ defineSuite([ return createAndRemoveGeometryWithShadows(ShadowMode.RECEIVE_ONLY); }); - it('Creates and removes static color material and static color depth fail material', function() { - var objects = new EntityCollection(); - var visualizer = new GeometryVisualizer(PolylineGeometryUpdater, scene, objects); - - var polyline = new PolylineGraphics(); - polyline.positions = new ConstantProperty([Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]); - polyline.material = new ColorMaterialProperty(); - polyline.depthFailMaterial = new ColorMaterialProperty(); - - var entity = new Entity(); - entity.position = new ConstantPositionProperty(new Cartesian3(1234, 5678, 9101112)); - entity.polyline = polyline; - objects.add(entity); - - return pollToPromise(function() { - scene.initializeFrame(); - var isUpdated = visualizer.update(time); - scene.render(time); - return isUpdated; - }).then(function() { - var primitive = scene.primitives.get(0); - var attributes = primitive.getGeometryInstanceAttributes(entity); - expect(attributes).toBeDefined(); - expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); - expect(attributes.color).toEqual(ColorGeometryInstanceAttribute.toValue(Color.WHITE)); - expect(attributes.depthFailColor).toEqual(ColorGeometryInstanceAttribute.toValue(Color.WHITE)); - expect(primitive.appearance).toBeInstanceOf(PolylineGeometryUpdater.perInstanceColorAppearanceType); - expect(primitive.depthFailAppearance).toBeInstanceOf(PolylineGeometryUpdater.perInstanceColorAppearanceType); - - objects.remove(entity); - - return pollToPromise(function() { - scene.initializeFrame(); - expect(visualizer.update(time)).toBe(true); - scene.render(time); - return scene.primitives.length === 0; - }).then(function(){ - visualizer.destroy(); - }); - }); - }); - - it('Creates and removes static color material and static depth fail material', function() { - var objects = new EntityCollection(); - var visualizer = new GeometryVisualizer(PolylineGeometryUpdater, scene, objects); - - var polyline = new PolylineGraphics(); - polyline.positions = new ConstantProperty([Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]); - polyline.material = new ColorMaterialProperty(); - polyline.depthFailMaterial = new GridMaterialProperty(); - - var entity = new Entity(); - entity.position = new ConstantPositionProperty(new Cartesian3(1234, 5678, 9101112)); - entity.polyline = polyline; - objects.add(entity); - - return pollToPromise(function() { - scene.initializeFrame(); - var isUpdated = visualizer.update(time); - scene.render(time); - return isUpdated; - }).then(function() { - var primitive = scene.primitives.get(0); - var attributes = primitive.getGeometryInstanceAttributes(entity); - expect(attributes).toBeDefined(); - expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); - expect(attributes.color).toEqual(ColorGeometryInstanceAttribute.toValue(Color.WHITE)); - expect(attributes.depthFailColor).toBeUndefined(); - expect(primitive.appearance).toBeInstanceOf(PolylineGeometryUpdater.perInstanceColorAppearanceType); - expect(primitive.depthFailAppearance).toBeInstanceOf(PolylineGeometryUpdater.materialAppearanceType); - - objects.remove(entity); - - return pollToPromise(function() { - scene.initializeFrame(); - expect(visualizer.update(time)).toBe(true); - scene.render(time); - return scene.primitives.length === 0; - }).then(function(){ - visualizer.destroy(); - }); - }); - }); - - it('Creates and removes static material and static depth fail material', function() { - var objects = new EntityCollection(); - var visualizer = new GeometryVisualizer(PolylineGeometryUpdater, scene, objects); - - var polyline = new PolylineGraphics(); - polyline.positions = new ConstantProperty([Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]); - polyline.material = new GridMaterialProperty(); - polyline.depthFailMaterial = new GridMaterialProperty(); - - var entity = new Entity(); - entity.position = new ConstantPositionProperty(new Cartesian3(1234, 5678, 9101112)); - entity.polyline = polyline; - objects.add(entity); - - return pollToPromise(function() { - scene.initializeFrame(); - var isUpdated = visualizer.update(time); - scene.render(time); - return isUpdated; - }).then(function() { - var primitive = scene.primitives.get(0); - var attributes = primitive.getGeometryInstanceAttributes(entity); - expect(attributes).toBeDefined(); - expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); - expect(attributes.color).toBeUndefined(); - expect(attributes.depthFailColor).toBeUndefined(); - expect(primitive.appearance).toBeInstanceOf(PolylineGeometryUpdater.materialAppearanceType); - expect(primitive.depthFailAppearance).toBeInstanceOf(PolylineGeometryUpdater.materialAppearanceType); - - objects.remove(entity); - - return pollToPromise(function() { - scene.initializeFrame(); - expect(visualizer.update(time)).toBe(true); - scene.render(time); - return scene.primitives.length === 0; - }).then(function(){ - visualizer.destroy(); - }); - }); - }); - - it('Creates and removes static material and static color depth fail material', function() { - var objects = new EntityCollection(); - var visualizer = new GeometryVisualizer(PolylineGeometryUpdater, scene, objects); - - var polyline = new PolylineGraphics(); - polyline.positions = new ConstantProperty([Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]); - polyline.material = new GridMaterialProperty(); - polyline.depthFailMaterial = new ColorMaterialProperty(); - - var entity = new Entity(); - entity.position = new ConstantPositionProperty(new Cartesian3(1234, 5678, 9101112)); - entity.polyline = polyline; - objects.add(entity); - - return pollToPromise(function() { - scene.initializeFrame(); - var isUpdated = visualizer.update(time); - scene.render(time); - return isUpdated; - }).then(function() { - var primitive = scene.primitives.get(0); - var attributes = primitive.getGeometryInstanceAttributes(entity); - expect(attributes).toBeDefined(); - expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); - expect(attributes.color).toBeUndefined(); - expect(attributes.depthFailColor).toEqual(ColorGeometryInstanceAttribute.toValue(Color.WHITE)); - expect(primitive.appearance).toBeInstanceOf(PolylineGeometryUpdater.materialAppearanceType); - expect(primitive.depthFailAppearance).toBeInstanceOf(PolylineGeometryUpdater.perInstanceColorAppearanceType); - - objects.remove(entity); - - return pollToPromise(function() { - scene.initializeFrame(); - expect(visualizer.update(time)).toBe(true); - scene.render(time); - return scene.primitives.length === 0; - }).then(function(){ - visualizer.destroy(); - }); - }); - }); - it('Correctly handles geometry changing batches', function() { var objects = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, objects); + var visualizer = new GeometryVisualizer(scene, objects); var ellipse = new EllipseGraphics(); ellipse.semiMajorAxis = new ConstantProperty(2); @@ -545,7 +377,7 @@ defineSuite([ expect(attributes).toBeDefined(); expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); expect(attributes.color).toEqual(ColorGeometryInstanceAttribute.toValue(Color.WHITE)); - expect(primitive.appearance).toBeInstanceOf(EllipseGeometryUpdater.perInstanceColorAppearanceType); + expect(primitive.appearance).toBeInstanceOf(PerInstanceColorAppearance); ellipse.material = new GridMaterialProperty(); @@ -560,7 +392,7 @@ defineSuite([ expect(attributes).toBeDefined(); expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); expect(attributes.color).toBeUndefined(); - expect(primitive.appearance).toBeInstanceOf(EllipseGeometryUpdater.materialAppearanceType); + expect(primitive.appearance).toBeInstanceOf(MaterialAppearance); objects.remove(entity); scene.initializeFrame(); @@ -576,7 +408,7 @@ defineSuite([ it('Correctly handles modifying translucent outline color', function() { var entities = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, entities); + var visualizer = new GeometryVisualizer(scene, entities); var color = Color.BLUE.withAlpha(0.5); var entity = entities.add({ @@ -623,7 +455,7 @@ defineSuite([ it('Creates and removes dynamic geometry', function() { var objects = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, objects); + var visualizer = new GeometryVisualizer(scene, objects); var ellipse = new EllipseGraphics(); ellipse.semiMajorAxis = new SampledProperty(Number); @@ -650,7 +482,7 @@ defineSuite([ it('Creates and removes dynamic geometry on terrain ', function() { var objects = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, objects); + var visualizer = new GeometryVisualizer(scene, objects); var ellipse = new EllipseGraphics(); ellipse.semiMajorAxis = new SampledProperty(Number); @@ -684,12 +516,12 @@ defineSuite([ it('Constructor throws without scene', function() { var objects = new EntityCollection(); expect(function() { - return new GeometryVisualizer(EllipseGeometryUpdater, undefined, objects); + return new GeometryVisualizer(undefined, objects); }).toThrowDeveloperError(); }); it('Update throws without time parameter', function() { - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, new EntityCollection()); + var visualizer = new GeometryVisualizer(scene, new EntityCollection()); expect(function() { visualizer.update(undefined); }).toThrowDeveloperError(); @@ -697,14 +529,14 @@ defineSuite([ it('removes the listener from the entity collection when destroyed', function() { var entityCollection = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, entityCollection); + var visualizer = new GeometryVisualizer(scene, entityCollection); expect(entityCollection.collectionChanged.numberOfListeners).toEqual(1); visualizer.destroy(); expect(entityCollection.collectionChanged.numberOfListeners).toEqual(0); }); it('StaticGeometryPerMaterialBatch handles shared material being invalidated', function() { - var batch = new StaticGeometryPerMaterialBatch(scene.primitives, EllipseGeometryUpdater.materialAppearanceType, undefined, false, ShadowMode.DISABLED); + var batch = new StaticGeometryPerMaterialBatch(scene.primitives, MaterialAppearance, undefined, false, ShadowMode.DISABLED); var ellipse = new EllipseGraphics(); ellipse.semiMajorAxis = new ConstantProperty(2); @@ -751,7 +583,7 @@ defineSuite([ }); it('StaticGeometryColorBatch updates color attribute after rebuilding primitive', function() { - var batch = new StaticGeometryColorBatch(scene.primitives, EllipseGeometryUpdater.materialAppearanceType, undefined, false, ShadowMode.DISABLED); + var batch = new StaticGeometryColorBatch(scene.primitives, MaterialAppearance, undefined, false, ShadowMode.DISABLED); var entity = new Entity({ position : new Cartesian3(1234, 5678, 9101112), @@ -921,7 +753,7 @@ defineSuite([ it('Computes dynamic geometry bounding sphere.', function() { var entityCollection = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, entityCollection); + var visualizer = new GeometryVisualizer(scene, entityCollection); var ellipse = new EllipseGraphics(); ellipse.semiMajorAxis = new ConstantProperty(2); @@ -954,7 +786,7 @@ defineSuite([ it('Compute dynamic geometry bounding sphere throws without entity.', function() { var entityCollection = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, entityCollection); + var visualizer = new GeometryVisualizer(scene, entityCollection); var result = new BoundingSphere(); expect(function() { @@ -968,7 +800,7 @@ defineSuite([ var entityCollection = new EntityCollection(); var entity = new Entity(); entityCollection.add(entity); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, entityCollection); + var visualizer = new GeometryVisualizer(scene, entityCollection); expect(function() { visualizer.getBoundingSphere(entity, undefined); @@ -979,7 +811,7 @@ defineSuite([ it('Can remove and entity and then add a new new instance with the same id.', function() { var objects = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, objects); + var visualizer = new GeometryVisualizer(scene, objects); var entity = new Entity({ id : 'test', @@ -1025,7 +857,7 @@ defineSuite([ expect(attributes).toBeDefined(); expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); expect(attributes.color).toEqual(ColorGeometryInstanceAttribute.toValue(Color.BLUE)); - expect(primitive.appearance).toBeInstanceOf(EllipseGeometryUpdater.perInstanceColorAppearanceType); + expect(primitive.appearance).toBeInstanceOf(PerInstanceColorAppearance); objects.remove(entity); @@ -1043,7 +875,7 @@ defineSuite([ it('Sets static geometry primitive show attribute when using dynamic fill color', function() { var entities = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, entities); + var visualizer = new GeometryVisualizer(scene, entities); var entity = entities.add({ position : new Cartesian3(1234, 5678, 9101112), @@ -1087,7 +919,7 @@ defineSuite([ it('Sets static geometry primitive show attribute when using dynamic outline color', function() { var entities = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, entities); + var visualizer = new GeometryVisualizer(scene, entities); var entity = entities.add({ position : new Cartesian3(1234, 5678, 9101112), @@ -1132,7 +964,7 @@ defineSuite([ it('Sets static geometry primitive show attribute when using dynamic fill material', function() { var entities = new EntityCollection(); - var visualizer = new GeometryVisualizer(EllipseGeometryUpdater, scene, entities); + var visualizer = new GeometryVisualizer(scene, entities); var entity = entities.add({ position : new Cartesian3(1234, 5678, 9101112), diff --git a/Specs/DataSources/PolygonGeometryUpdaterSpec.js b/Specs/DataSources/PolygonGeometryUpdaterSpec.js index 38cee4903735..4d7c48d83db5 100644 --- a/Specs/DataSources/PolygonGeometryUpdaterSpec.js +++ b/Specs/DataSources/PolygonGeometryUpdaterSpec.js @@ -558,7 +558,7 @@ defineSuite([ var updater = new PolygonGeometryUpdater(entity, scene); var primitives = new PrimitiveCollection(); var groundPrimitives = new PrimitiveCollection(); - var dynamicUpdater = updater.createDynamicUpdater(primitives); + var dynamicUpdater = updater.createDynamicUpdater(primitives, groundPrimitives); expect(dynamicUpdater.isDestroyed()).toBe(false); expect(primitives.length).toBe(0); expect(groundPrimitives.length).toBe(0); @@ -707,7 +707,7 @@ defineSuite([ var entity = createBasicPolygon(); var updater = new PolygonGeometryUpdater(entity, scene); expect(function() { - return updater.createDynamicUpdater(new PrimitiveCollection()); + return updater.createDynamicUpdater(new PrimitiveCollection(), new PrimitiveCollection()); }).toThrowDeveloperError(); }); @@ -718,7 +718,18 @@ defineSuite([ var updater = new PolygonGeometryUpdater(entity, scene); expect(updater.isDynamic).toBe(true); expect(function() { - return updater.createDynamicUpdater(undefined); + return updater.createDynamicUpdater(undefined, new PrimitiveCollection()); + }).toThrowDeveloperError(); + }); + + it('createDynamicUpdater throws if groundPrimitives undefined', function() { + var entity = createBasicPolygon(); + entity.polygon.height = new SampledProperty(Number); + entity.polygon.height.addSample(time, 4); + var updater = new PolygonGeometryUpdater(entity, scene); + expect(updater.isDynamic).toBe(true); + expect(function() { + return updater.createDynamicUpdater(new PrimitiveCollection(), undefined); }).toThrowDeveloperError(); }); @@ -727,7 +738,7 @@ defineSuite([ entity.polygon.height = new SampledProperty(Number); entity.polygon.height.addSample(time, 4); var updater = new PolygonGeometryUpdater(entity, scene); - var dynamicUpdater = updater.createDynamicUpdater(new PrimitiveCollection()); + var dynamicUpdater = updater.createDynamicUpdater(new PrimitiveCollection(), new PrimitiveCollection()); expect(function() { dynamicUpdater.update(undefined); }).toThrowDeveloperError(); diff --git a/Specs/DataSources/PolylineGeometryUpdaterSpec.js b/Specs/DataSources/PolylineGeometryUpdaterSpec.js index 55c25e18dcbb..d231e63ebb9e 100644 --- a/Specs/DataSources/PolylineGeometryUpdaterSpec.js +++ b/Specs/DataSources/PolylineGeometryUpdaterSpec.js @@ -524,7 +524,7 @@ defineSuite([ dynamicUpdater.update(time); var result = new BoundingSphere(0); - var state = dynamicUpdater.getBoundingSphere(entity, result); + var state = dynamicUpdater.getBoundingSphere(result); expect(state).toBe(BoundingSphereState.DONE); var primitive = scene.primitives.get(0); @@ -542,28 +542,13 @@ defineSuite([ var dynamicUpdater = updater.createDynamicUpdater(scene.primitives); var result = new BoundingSphere(); - var state = dynamicUpdater.getBoundingSphere(entity, result); + var state = dynamicUpdater.getBoundingSphere(result); expect(state).toBe(BoundingSphereState.FAILED); updater.destroy(); scene.primitives.removeAll(); }); - it('Compute dynamic geometry bounding sphere throws without entity.', function() { - var entity = createBasicPolyline(); - entity.polyline.width = createDynamicProperty(1); - var updater = new PolylineGeometryUpdater(entity, scene); - var dynamicUpdater = updater.createDynamicUpdater(scene.primitives); - - var result = new BoundingSphere(); - expect(function() { - dynamicUpdater.getBoundingSphere(undefined, result); - }).toThrowDeveloperError(); - - updater.destroy(); - scene.primitives.removeAll(); - }); - it('Compute dynamic geometry bounding sphere throws without result.', function() { var entity = createBasicPolyline(); entity.polyline.width = createDynamicProperty(1); @@ -571,7 +556,7 @@ defineSuite([ var dynamicUpdater = updater.createDynamicUpdater(scene.primitives); expect(function() { - dynamicUpdater.getBoundingSphere(entity, undefined); + dynamicUpdater.getBoundingSphere(undefined); }).toThrowDeveloperError(); updater.destroy(); diff --git a/Specs/DataSources/PolylineVisualizerSpec.js b/Specs/DataSources/PolylineVisualizerSpec.js new file mode 100644 index 000000000000..bf217862b34c --- /dev/null +++ b/Specs/DataSources/PolylineVisualizerSpec.js @@ -0,0 +1,760 @@ +defineSuite([ + 'DataSources/PolylineVisualizer', + 'Core/BoundingSphere', + 'Core/Cartesian3', + 'Core/Color', + 'Core/ColorGeometryInstanceAttribute', + 'Core/JulianDate', + 'Core/ShowGeometryInstanceAttribute', + 'DataSources/BoundingSphereState', + 'DataSources/CallbackProperty', + 'DataSources/ColorMaterialProperty', + 'DataSources/ConstantPositionProperty', + 'DataSources/ConstantProperty', + 'DataSources/Entity', + 'DataSources/EntityCollection', + 'DataSources/PolylineArrowMaterialProperty', + 'DataSources/PolylineGeometryUpdater', + 'DataSources/PolylineGraphics', + 'DataSources/SampledProperty', + 'DataSources/StaticGeometryColorBatch', + 'DataSources/StaticGeometryPerMaterialBatch', + 'DataSources/StaticGroundGeometryColorBatch', + 'DataSources/StaticOutlineGeometryBatch', + 'Scene/PolylineColorAppearance', + 'Scene/PolylineMaterialAppearance', + 'Scene/ShadowMode', + 'Specs/createDynamicProperty', + 'Specs/createScene', + 'Specs/pollToPromise' +], function( + PolylineVisualizer, + BoundingSphere, + Cartesian3, + Color, + ColorGeometryInstanceAttribute, + JulianDate, + ShowGeometryInstanceAttribute, + BoundingSphereState, + CallbackProperty, + ColorMaterialProperty, + ConstantPositionProperty, + ConstantProperty, + Entity, + EntityCollection, + PolylineArrowMaterialProperty, + PolylineGeometryUpdater, + PolylineGraphics, + SampledProperty, + StaticGeometryColorBatch, + StaticGeometryPerMaterialBatch, + StaticGroundGeometryColorBatch, + StaticOutlineGeometryBatch, + PolylineColorAppearance, + PolylineMaterialAppearance, + ShadowMode, + createDynamicProperty, + createScene, + pollToPromise) { + 'use strict'; + + var time = JulianDate.now(); + + var scene; + beforeAll(function() { + scene = createScene(); + }); + + afterAll(function() { + scene.destroyForSpecs(); + }); + + it('Can create and destroy', function() { + var objects = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, objects); + expect(visualizer.update(time)).toBe(true); + expect(scene.primitives.length).toBe(0); + expect(visualizer.isDestroyed()).toBe(false); + visualizer.destroy(); + expect(visualizer.isDestroyed()).toBe(true); + }); + + it('Creates and removes static color polyline', function() { + var objects = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, objects); + + var polyline = new PolylineGraphics(); + polyline.positions = new ConstantProperty([Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]); + polyline.material = new ColorMaterialProperty(); + + var entity = new Entity(); + entity.polyline = polyline; + objects.add(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = visualizer.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + var primitive = scene.primitives.get(0); + var attributes = primitive.getGeometryInstanceAttributes(entity); + expect(attributes).toBeDefined(); + expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); + expect(attributes.color).toEqual(ColorGeometryInstanceAttribute.toValue(Color.WHITE)); + expect(primitive.appearance).toBeInstanceOf(PolylineColorAppearance); + expect(primitive.appearance.closed).toBe(false); + + objects.remove(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + expect(visualizer.update(time)).toBe(true); + scene.render(time); + return scene.primitives.length === 0; + }).then(function(){ + visualizer.destroy(); + }); + }); + }); + + it('Creates and removes static material polyline', function() { + var objects = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, objects); + + var polyline = new PolylineGraphics(); + polyline.positions = new ConstantProperty([Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]); + polyline.material = new PolylineArrowMaterialProperty(); + + var entity = new Entity(); + entity.polyline = polyline; + objects.add(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = visualizer.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + var primitive = scene.primitives.get(0); + var attributes = primitive.getGeometryInstanceAttributes(entity); + expect(attributes).toBeDefined(); + expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); + expect(attributes.color).toBeUndefined(); + expect(primitive.appearance).toBeInstanceOf(PolylineMaterialAppearance); + expect(primitive.appearance.closed).toBe(false); + + objects.remove(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + expect(visualizer.update(time)).toBe(true); + scene.render(time); + return scene.primitives.length === 0; + }).then(function(){ + visualizer.destroy(); + }); + }); + }); + + function createAndRemoveGeometryWithShadows(shadows) { + var objects = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, objects); + + var polyline = new PolylineGraphics(); + polyline.positions = new ConstantProperty([Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]); + polyline.material = new ColorMaterialProperty(); + polyline.shadows = new ConstantProperty(shadows); + + var entity = new Entity(); + entity.polyline = polyline; + objects.add(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = visualizer.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + var primitive = scene.primitives.get(0); + expect(primitive.shadows).toBe(shadows); + + objects.remove(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + expect(visualizer.update(time)).toBe(true); + scene.render(time); + return scene.primitives.length === 0; + }).then(function(){ + visualizer.destroy(); + }); + }); + } + + it('Creates and removes geometry with shadows disabled', function() { + return createAndRemoveGeometryWithShadows(ShadowMode.DISABLED); + }); + + it('Creates and removes geometry with shadows enabled', function() { + return createAndRemoveGeometryWithShadows(ShadowMode.ENABLED); + }); + + it('Creates and removes geometry with shadow casting only', function() { + return createAndRemoveGeometryWithShadows(ShadowMode.CAST_ONLY); + }); + + it('Creates and removes geometry with shadow receiving only', function() { + return createAndRemoveGeometryWithShadows(ShadowMode.RECEIVE_ONLY); + }); + + it('Creates and removes static color material and static color depth fail material', function() { + var objects = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, objects); + + var polyline = new PolylineGraphics(); + polyline.positions = new ConstantProperty([Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]); + polyline.material = new ColorMaterialProperty(); + polyline.depthFailMaterial = new ColorMaterialProperty(); + + var entity = new Entity(); + entity.position = new ConstantPositionProperty(new Cartesian3(1234, 5678, 9101112)); + entity.polyline = polyline; + objects.add(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = visualizer.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + var primitive = scene.primitives.get(0); + var attributes = primitive.getGeometryInstanceAttributes(entity); + expect(attributes).toBeDefined(); + expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); + expect(attributes.color).toEqual(ColorGeometryInstanceAttribute.toValue(Color.WHITE)); + expect(attributes.depthFailColor).toEqual(ColorGeometryInstanceAttribute.toValue(Color.WHITE)); + expect(primitive.appearance).toBeInstanceOf(PolylineColorAppearance); + expect(primitive.depthFailAppearance).toBeInstanceOf(PolylineColorAppearance); + + objects.remove(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + expect(visualizer.update(time)).toBe(true); + scene.render(time); + return scene.primitives.length === 0; + }).then(function(){ + visualizer.destroy(); + }); + }); + }); + + it('Creates and removes static color material and static depth fail material', function() { + var objects = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, objects); + + var polyline = new PolylineGraphics(); + polyline.positions = new ConstantProperty([Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]); + polyline.material = new ColorMaterialProperty(); + polyline.depthFailMaterial = new PolylineArrowMaterialProperty(); + + var entity = new Entity(); + entity.position = new ConstantPositionProperty(new Cartesian3(1234, 5678, 9101112)); + entity.polyline = polyline; + objects.add(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = visualizer.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + var primitive = scene.primitives.get(0); + var attributes = primitive.getGeometryInstanceAttributes(entity); + expect(attributes).toBeDefined(); + expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); + expect(attributes.color).toEqual(ColorGeometryInstanceAttribute.toValue(Color.WHITE)); + expect(attributes.depthFailColor).toBeUndefined(); + expect(primitive.appearance).toBeInstanceOf(PolylineColorAppearance); + expect(primitive.depthFailAppearance).toBeInstanceOf(PolylineMaterialAppearance); + + objects.remove(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + expect(visualizer.update(time)).toBe(true); + scene.render(time); + return scene.primitives.length === 0; + }).then(function(){ + visualizer.destroy(); + }); + }); + }); + + it('Creates and removes static material and static depth fail material', function() { + var objects = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, objects); + + var polyline = new PolylineGraphics(); + polyline.positions = new ConstantProperty([Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]); + polyline.material = new PolylineArrowMaterialProperty(); + polyline.depthFailMaterial = new PolylineArrowMaterialProperty(); + + var entity = new Entity(); + entity.position = new ConstantPositionProperty(new Cartesian3(1234, 5678, 9101112)); + entity.polyline = polyline; + objects.add(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = visualizer.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + var primitive = scene.primitives.get(0); + var attributes = primitive.getGeometryInstanceAttributes(entity); + expect(attributes).toBeDefined(); + expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); + expect(attributes.color).toBeUndefined(); + expect(attributes.depthFailColor).toBeUndefined(); + expect(primitive.appearance).toBeInstanceOf(PolylineMaterialAppearance); + expect(primitive.depthFailAppearance).toBeInstanceOf(PolylineMaterialAppearance); + + objects.remove(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + expect(visualizer.update(time)).toBe(true); + scene.render(time); + return scene.primitives.length === 0; + }).then(function(){ + visualizer.destroy(); + }); + }); + }); + + it('Creates and removes static material and static color depth fail material', function() { + var objects = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, objects); + + var polyline = new PolylineGraphics(); + polyline.positions = new ConstantProperty([Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]); + polyline.material = new PolylineArrowMaterialProperty(); + polyline.depthFailMaterial = new ColorMaterialProperty(); + + var entity = new Entity(); + entity.position = new ConstantPositionProperty(new Cartesian3(1234, 5678, 9101112)); + entity.polyline = polyline; + objects.add(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = visualizer.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + var primitive = scene.primitives.get(0); + var attributes = primitive.getGeometryInstanceAttributes(entity); + expect(attributes).toBeDefined(); + expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); + expect(attributes.color).toBeUndefined(); + expect(attributes.depthFailColor).toEqual(ColorGeometryInstanceAttribute.toValue(Color.WHITE)); + expect(primitive.appearance).toBeInstanceOf(PolylineMaterialAppearance); + expect(primitive.depthFailAppearance).toBeInstanceOf(PolylineColorAppearance); + + objects.remove(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + expect(visualizer.update(time)).toBe(true); + scene.render(time); + return scene.primitives.length === 0; + }).then(function(){ + visualizer.destroy(); + }); + }); + }); + + it('Correctly handles geometry changing batches', function() { + var objects = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, objects); + + var polyline = new PolylineGraphics(); + polyline.positions = new ConstantProperty([Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]); + polyline.material = new ColorMaterialProperty(); + + var entity = new Entity(); + entity.polyline = polyline; + objects.add(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = visualizer.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + var primitive = scene.primitives.get(0); + var attributes = primitive.getGeometryInstanceAttributes(entity); + expect(attributes).toBeDefined(); + expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); + expect(attributes.color).toEqual(ColorGeometryInstanceAttribute.toValue(Color.WHITE)); + expect(primitive.appearance).toBeInstanceOf(PolylineColorAppearance); + + polyline.material = new PolylineArrowMaterialProperty(); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = visualizer.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + primitive = scene.primitives.get(0); + attributes = primitive.getGeometryInstanceAttributes(entity); + expect(attributes).toBeDefined(); + expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); + expect(attributes.color).toBeUndefined(); + expect(primitive.appearance).toBeInstanceOf(PolylineMaterialAppearance); + + objects.remove(entity); + scene.initializeFrame(); + expect(visualizer.update(time)).toBe(true); + scene.render(time); + + expect(scene.primitives.length).toBe(0); + + visualizer.destroy(); + }); + }); + }); + + it('Creates and removes dynamic polyline', function() { + var objects = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, objects); + + var polyline = new PolylineGraphics(); + polyline.positions = new CallbackProperty(function() { + return [Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]; + }, false); + polyline.material = new ColorMaterialProperty(); + + var entity = new Entity(); + entity.polyline = polyline; + objects.add(entity); + + scene.initializeFrame(); + expect(visualizer.update(time)).toBe(true); + scene.render(time); + objects.remove(entity); + scene.initializeFrame(); + expect(visualizer.update(time)).toBe(true); + scene.render(time); + expect(scene.primitives.length).toBe(0); + visualizer.destroy(); + }); + + it('Constructor throws without scene', function() { + var objects = new EntityCollection(); + expect(function() { + return new PolylineVisualizer(undefined, objects); + }).toThrowDeveloperError(); + }); + + it('Update throws without time parameter', function() { + var visualizer = new PolylineVisualizer(scene, new EntityCollection()); + expect(function() { + visualizer.update(undefined); + }).toThrowDeveloperError(); + }); + + it('removes the listener from the entity collection when destroyed', function() { + var entityCollection = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, entityCollection); + expect(entityCollection.collectionChanged.numberOfListeners).toEqual(1); + visualizer.destroy(); + expect(entityCollection.collectionChanged.numberOfListeners).toEqual(0); + }); + + it('StaticGeometryPerMaterialBatch handles shared material being invalidated', function() { + var batch = new StaticGeometryPerMaterialBatch(scene.primitives, PolylineMaterialAppearance, undefined, false, ShadowMode.DISABLED); + + var polyline = new PolylineGraphics(); + polyline.positions = new ConstantProperty([Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]); + polyline.material = new PolylineArrowMaterialProperty(); + + var entity = new Entity(); + entity.polyline = polyline; + + var polyline2 = new PolylineGraphics(); + polyline2.positions = new ConstantProperty([Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]); + polyline2.material = new PolylineArrowMaterialProperty(); + + var entity2 = new Entity(); + entity2.polyline = polyline2; + + var updater = new PolylineGeometryUpdater(entity, scene); + var updater2 = new PolylineGeometryUpdater(entity2, scene); + batch.add(time, updater); + batch.add(time, updater2); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = batch.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + expect(scene.primitives.length).toEqual(1); + polyline.material.color = new ConstantProperty(Color.RED); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = batch.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + expect(scene.primitives.length).toEqual(2); + batch.removeAllPrimitives(); + }); + }); + }); + + it('StaticGeometryColorBatch updates color attribute after rebuilding primitive', function() { + var batch = new StaticGeometryColorBatch(scene.primitives, PolylineColorAppearance, undefined, false, ShadowMode.DISABLED); + + var entity = new Entity({ + polyline : { + positions : [Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)], + material : Color.RED + } + }); + + var updater = new PolylineGeometryUpdater(entity, scene); + batch.add(time, updater); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = batch.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + expect(scene.primitives.length).toEqual(1); + var primitive = scene.primitives.get(0); + var attributes = primitive.getGeometryInstanceAttributes(entity); + expect(attributes.color).toEqual([255, 0, 0, 255]); + + entity.polyline.material = Color.GREEN; + batch.remove(updater); + batch.add(time, updater); + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = batch.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + expect(scene.primitives.length).toEqual(1); + var primitive = scene.primitives.get(0); + var attributes = primitive.getGeometryInstanceAttributes(entity); + expect(attributes.color).toEqual([0, 128, 0, 255]); + batch.removeAllPrimitives(); + }); + }); + }); + + it('Computes dynamic geometry bounding sphere.', function() { + var entityCollection = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, entityCollection); + + var polyline = new PolylineGraphics(); + polyline.positions = new ConstantProperty([Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)]); + polyline.material = new PolylineArrowMaterialProperty(); + + var entity = new Entity(); + entity.polyline = polyline; + entityCollection.add(entity); + + var state; + var result = new BoundingSphere(); + + return pollToPromise(function() { + scene.initializeFrame(); + scene.render(); + visualizer.update(time); + state = visualizer.getBoundingSphere(entity, result); + return state !== BoundingSphereState.PENDING; + }).then(function() { + var primitive = scene.primitives.get(0); + expect(state).toBe(BoundingSphereState.DONE); + var attributes = primitive.getGeometryInstanceAttributes(entity); + expect(result).toEqual(BoundingSphere.transform(attributes.boundingSphere, primitive.modelMatrix, new BoundingSphere())); + + visualizer.destroy(); + }); + }); + + it('Compute dynamic geometry bounding sphere throws without entity.', function() { + var entityCollection = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, entityCollection); + + var result = new BoundingSphere(); + expect(function() { + visualizer.getBoundingSphere(undefined, result); + }).toThrowDeveloperError(); + + visualizer.destroy(); + }); + + it('Compute dynamic geometry bounding sphere throws without result.', function() { + var entityCollection = new EntityCollection(); + var entity = new Entity(); + entityCollection.add(entity); + var visualizer = new PolylineVisualizer(scene, entityCollection); + + expect(function() { + visualizer.getBoundingSphere(entity, undefined); + }).toThrowDeveloperError(); + + visualizer.destroy(); + }); + + it('Can remove and entity and then add a new new instance with the same id.', function() { + var objects = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, objects); + + var entity = new Entity({ + id : 'test', + polyline : { + positions: [Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)], + material: Color.ORANGE + } + }); + objects.add(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = visualizer.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + objects.remove(entity); + + var entity2 = new Entity({ + id : 'test', + position : Cartesian3.fromDegrees(0, 0, 0), + polyline : { + positions: [Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)], + material : Color.BLUE + } + }); + objects.add(entity2); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = visualizer.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + + var primitive = scene.primitives.get(0); + var attributes = primitive.getGeometryInstanceAttributes(entity2); + expect(attributes).toBeDefined(); + expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); + expect(attributes.color).toEqual(ColorGeometryInstanceAttribute.toValue(Color.BLUE)); + expect(primitive.appearance).toBeInstanceOf(PolylineColorAppearance); + + objects.remove(entity); + + return pollToPromise(function() { + scene.initializeFrame(); + expect(visualizer.update(time)).toBe(true); + scene.render(time); + return scene.primitives.length === 0; + }).then(function() { + visualizer.destroy(); + }); + }); + }); + }); + + it('Sets static geometry primitive show attribute when using dynamic fill color', function() { + var entities = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, entities); + + var entity = entities.add({ + polyline : { + positions: [Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)], + material : new ColorMaterialProperty(createDynamicProperty(Color.BLUE)) + } + }); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = visualizer.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + var primitive = scene.primitives.get(0); + var attributes = primitive.getGeometryInstanceAttributes(entity); + expect(attributes).toBeDefined(); + expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); + + entity.show = false; + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = visualizer.update(time); + scene.render(time); + return isUpdated; + }); + }).then(function() { + var primitive = scene.primitives.get(0); + var attributes = primitive.getGeometryInstanceAttributes(entity); + expect(attributes).toBeDefined(); + expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(false)); + + entities.remove(entity); + visualizer.destroy(); + }); + }); + + it('Sets static geometry primitive show attribute when using dynamic fill material', function() { + var entities = new EntityCollection(); + var visualizer = new PolylineVisualizer(scene, entities); + + var entity = entities.add({ + position : new Cartesian3(1234, 5678, 9101112), + polyline : { + positions: [Cartesian3.fromDegrees(0.0, 0.0), Cartesian3.fromDegrees(0.0, 1.0)], + material : new PolylineArrowMaterialProperty(createDynamicProperty(Color.BLUE)) + } + }); + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = visualizer.update(time); + scene.render(time); + return isUpdated; + }).then(function() { + var primitive = scene.primitives.get(0); + var attributes = primitive.getGeometryInstanceAttributes(entity); + expect(attributes).toBeDefined(); + expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(true)); + + entity.show = false; + + return pollToPromise(function() { + scene.initializeFrame(); + var isUpdated = visualizer.update(time); + scene.render(time); + return isUpdated; + }); + }).then(function() { + var primitive = scene.primitives.get(0); + var attributes = primitive.getGeometryInstanceAttributes(entity); + expect(attributes).toBeDefined(); + expect(attributes.show).toEqual(ShowGeometryInstanceAttribute.toValue(false)); + + entities.remove(entity); + visualizer.destroy(); + }); + }); +}, 'WebGL'); diff --git a/Specs/DataSources/RectangleGeometryUpdaterSpec.js b/Specs/DataSources/RectangleGeometryUpdaterSpec.js index 6c15db890390..2fb1b020a9bc 100644 --- a/Specs/DataSources/RectangleGeometryUpdaterSpec.js +++ b/Specs/DataSources/RectangleGeometryUpdaterSpec.js @@ -656,7 +656,18 @@ defineSuite([ var updater = new RectangleGeometryUpdater(entity, scene); expect(updater.isDynamic).toBe(true); expect(function() { - return updater.createDynamicUpdater(undefined); + return updater.createDynamicUpdater(undefined, new PrimitiveCollection()); + }).toThrowDeveloperError(); + }); + + it('createDynamicUpdater throws if groundPrimitives undefined', function() { + var entity = createBasicRectangle(); + entity.rectangle.height = new SampledProperty(Number); + entity.rectangle.height.addSample(time, 4); + var updater = new RectangleGeometryUpdater(entity, scene); + expect(updater.isDynamic).toBe(true); + expect(function() { + return updater.createDynamicUpdater(new PrimitiveCollection(), undefined); }).toThrowDeveloperError(); }); @@ -665,7 +676,7 @@ defineSuite([ entity.rectangle.height = new SampledProperty(Number); entity.rectangle.height.addSample(time, 4); var updater = new RectangleGeometryUpdater(entity, scene); - var dynamicUpdater = updater.createDynamicUpdater(new PrimitiveCollection()); + var dynamicUpdater = updater.createDynamicUpdater(new PrimitiveCollection(), new PrimitiveCollection()); expect(function() { dynamicUpdater.update(undefined); }).toThrowDeveloperError(); diff --git a/Specs/createDynamicGeometryBoundingSphereSpecs.js b/Specs/createDynamicGeometryBoundingSphereSpecs.js index beb5662a9fdc..d9037d1c77c8 100644 --- a/Specs/createDynamicGeometryBoundingSphereSpecs.js +++ b/Specs/createDynamicGeometryBoundingSphereSpecs.js @@ -19,7 +19,7 @@ define([ var updater = new Updater(entity, scene); graphics.fill = true; graphics.outline = false; - var dynamicUpdater = updater.createDynamicUpdater(scene.primitives); + var dynamicUpdater = updater.createDynamicUpdater(scene.primitives, scene.groundPrimitives); dynamicUpdater.update(time); var state; @@ -28,7 +28,7 @@ define([ return pollToPromise(function() { scene.initializeFrame(); scene.render(); - state = dynamicUpdater.getBoundingSphere(entity, result); + state = dynamicUpdater.getBoundingSphere(result); return state !== BoundingSphereState.PENDING; }).then(function() { var primitive = scene.primitives.get(0); @@ -47,7 +47,7 @@ define([ graphics.fill = false; graphics.outline = true; - var dynamicUpdater = updater.createDynamicUpdater(scene.primitives); + var dynamicUpdater = updater.createDynamicUpdater(scene.primitives, scene.groundPrimitives); dynamicUpdater.update(time); var state; @@ -55,7 +55,7 @@ define([ return pollToPromise(function() { scene.initializeFrame(); scene.render(); - state = dynamicUpdater.getBoundingSphere(entity, result); + state = dynamicUpdater.getBoundingSphere(result); return state !== BoundingSphereState.PENDING; }).then(function() { var primitive = scene.primitives.get(0); @@ -68,27 +68,13 @@ define([ }); }); - it('Compute dynamic geometry bounding sphere throws without entity.', function() { - var scene = getScene(); - var updater = new Updater(entity, scene); - var dynamicUpdater = updater.createDynamicUpdater(scene.primitives); - - var result = new BoundingSphere(); - expect(function() { - dynamicUpdater.getBoundingSphere(undefined, result); - }).toThrowDeveloperError(); - - updater.destroy(); - scene.primitives.removeAll(); - }); - it('Compute dynamic geometry bounding sphere throws without result.', function() { var scene = getScene(); var updater = new Updater(entity, scene); - var dynamicUpdater = updater.createDynamicUpdater(scene.primitives); + var dynamicUpdater = updater.createDynamicUpdater(scene.primitives, scene.groundPrimitives); expect(function() { - dynamicUpdater.getBoundingSphere(entity, undefined); + dynamicUpdater.getBoundingSphere(undefined); }).toThrowDeveloperError(); updater.destroy();