1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015 |
- import Color from '../../Core/Color.js';
- import defined from '../../Core/defined.js';
- import defineProperties from '../../Core/defineProperties.js';
- import destroyObject from '../../Core/destroyObject.js';
- import DeveloperError from '../../Core/DeveloperError.js';
- import getElement from '../getElement.js';
- import subscribeAndEvaluate from '../subscribeAndEvaluate.js';
- var svgNS = 'http://www.w3.org/2000/svg';
- var xlinkNS = 'http://www.w3.org/1999/xlink';
- var widgetForDrag;
- var gradientEnabledColor0 = Color.fromCssColorString('rgba(247,250,255,0.384)');
- var gradientEnabledColor1 = Color.fromCssColorString('rgba(143,191,255,0.216)');
- var gradientEnabledColor2 = Color.fromCssColorString('rgba(153,197,255,0.098)');
- var gradientEnabledColor3 = Color.fromCssColorString('rgba(255,255,255,0.086)');
- var gradientDisabledColor0 = Color.fromCssColorString('rgba(255,255,255,0.267)');
- var gradientDisabledColor1 = Color.fromCssColorString('rgba(255,255,255,0)');
- var gradientKnobColor = Color.fromCssColorString('rgba(66,67,68,0.3)');
- var gradientPointerColor = Color.fromCssColorString('rgba(0,0,0,0.5)');
- function getElementColor(element) {
- return Color.fromCssColorString(window.getComputedStyle(element).getPropertyValue('color'));
- }
- //Dynamically builds an SVG element from a JSON object.
- function svgFromObject(obj) {
- var ele = document.createElementNS(svgNS, obj.tagName);
- for ( var field in obj) {
- if (obj.hasOwnProperty(field) && field !== 'tagName') {
- if (field === 'children') {
- var i;
- var len = obj.children.length;
- for (i = 0; i < len; ++i) {
- ele.appendChild(svgFromObject(obj.children[i]));
- }
- } else if (field.indexOf('xlink:') === 0) {
- ele.setAttributeNS(xlinkNS, field.substring(6), obj[field]);
- } else if (field === 'textContent') {
- ele.textContent = obj[field];
- } else {
- ele.setAttribute(field, obj[field]);
- }
- }
- }
- return ele;
- }
- function svgText(x, y, msg) {
- var text = document.createElementNS(svgNS, 'text');
- text.setAttribute('x', x);
- text.setAttribute('y', y);
- text.setAttribute('class', 'cesium-animation-svgText');
- var tspan = document.createElementNS(svgNS, 'tspan');
- tspan.textContent = msg;
- text.appendChild(tspan);
- return text;
- }
- function setShuttleRingPointer(shuttleRingPointer, knobOuter, angle) {
- shuttleRingPointer.setAttribute('transform', 'translate(100,100) rotate(' + angle + ')');
- knobOuter.setAttribute('transform', 'rotate(' + angle + ')');
- }
- var makeColorStringScratch = new Color();
- function makeColorString(background, gradient) {
- var gradientAlpha = gradient.alpha;
- var backgroundAlpha = 1.0 - gradientAlpha;
- makeColorStringScratch.red = (background.red * backgroundAlpha) + (gradient.red * gradientAlpha);
- makeColorStringScratch.green = (background.green * backgroundAlpha) + (gradient.green * gradientAlpha);
- makeColorStringScratch.blue = (background.blue * backgroundAlpha) + (gradient.blue * gradientAlpha);
- return makeColorStringScratch.toCssColorString();
- }
- function rectButton(x, y, path) {
- var button = {
- tagName : 'g',
- 'class' : 'cesium-animation-rectButton',
- transform : 'translate(' + x + ',' + y + ')',
- children : [{
- tagName : 'rect',
- 'class' : 'cesium-animation-buttonGlow',
- width : 32,
- height : 32,
- rx : 2,
- ry : 2
- }, {
- tagName : 'rect',
- 'class' : 'cesium-animation-buttonMain',
- width : 32,
- height : 32,
- rx : 4,
- ry : 4
- }, {
- tagName : 'use',
- 'class' : 'cesium-animation-buttonPath',
- 'xlink:href' : path
- }, {
- tagName : 'title',
- textContent : ''
- }]
- };
- return svgFromObject(button);
- }
- function wingButton(x, y, path) {
- var button = {
- tagName : 'g',
- 'class' : 'cesium-animation-rectButton',
- transform : 'translate(' + x + ',' + y + ')',
- children : [{
- tagName : 'use',
- 'class' : 'cesium-animation-buttonGlow',
- 'xlink:href' : '#animation_pathWingButton'
- }, {
- tagName : 'use',
- 'class' : 'cesium-animation-buttonMain',
- 'xlink:href' : '#animation_pathWingButton'
- }, {
- tagName : 'use',
- 'class' : 'cesium-animation-buttonPath',
- 'xlink:href' : path
- }, {
- tagName : 'title',
- textContent : ''
- }]
- };
- return svgFromObject(button);
- }
- function setShuttleRingFromMouseOrTouch(widget, e) {
- var viewModel = widget._viewModel;
- var shuttleRingDragging = viewModel.shuttleRingDragging;
- if (shuttleRingDragging && (widgetForDrag !== widget)) {
- return;
- }
- if (e.type === 'mousedown' || (shuttleRingDragging && e.type === 'mousemove') ||
- (e.type === 'touchstart' && e.touches.length === 1) ||
- (shuttleRingDragging && e.type === 'touchmove' && e.touches.length === 1)) {
- var centerX = widget._centerX;
- var centerY = widget._centerY;
- var svg = widget._svgNode;
- var rect = svg.getBoundingClientRect();
- var clientX;
- var clientY;
- if (e.type === 'touchstart' || e.type === 'touchmove') {
- clientX = e.touches[0].clientX;
- clientY = e.touches[0].clientY;
- } else {
- clientX = e.clientX;
- clientY = e.clientY;
- }
- if (!shuttleRingDragging &&
- (clientX > rect.right ||
- clientX < rect.left ||
- clientY < rect.top ||
- clientY > rect.bottom)) {
- return;
- }
- var pointerRect = widget._shuttleRingPointer.getBoundingClientRect();
- var x = clientX - centerX - rect.left;
- var y = clientY - centerY - rect.top;
- var angle = Math.atan2(y, x) * 180 / Math.PI + 90;
- if (angle > 180) {
- angle -= 360;
- }
- var shuttleRingAngle = viewModel.shuttleRingAngle;
- if (shuttleRingDragging || (clientX < pointerRect.right && clientX > pointerRect.left && clientY > pointerRect.top && clientY < pointerRect.bottom)) {
- widgetForDrag = widget;
- viewModel.shuttleRingDragging = true;
- viewModel.shuttleRingAngle = angle;
- } else if (angle < shuttleRingAngle) {
- viewModel.slower();
- } else if (angle > shuttleRingAngle) {
- viewModel.faster();
- }
- e.preventDefault();
- } else {
- if (widget === widgetForDrag) {
- widgetForDrag = undefined;
- }
- viewModel.shuttleRingDragging = false;
- }
- }
- //This is a private class for treating an SVG element like a button.
- //If we ever need a general purpose SVG button, we can make this generic.
- function SvgButton(svgElement, viewModel) {
- this._viewModel = viewModel;
- this.svgElement = svgElement;
- this._enabled = undefined;
- this._toggled = undefined;
- var that = this;
- this._clickFunction = function() {
- var command = that._viewModel.command;
- if (command.canExecute) {
- command();
- }
- };
- svgElement.addEventListener('click', this._clickFunction, true);
- //TODO: Since the animation widget uses SVG and has no HTML backing,
- //we need to wire everything up manually. Knockout can supposedly
- //bind to SVG, so we we figure that out we can modify our SVG
- //to include the binding information directly.
- this._subscriptions = [//
- subscribeAndEvaluate(viewModel, 'toggled', this.setToggled, this),//
- subscribeAndEvaluate(viewModel, 'tooltip', this.setTooltip, this),//
- subscribeAndEvaluate(viewModel.command, 'canExecute', this.setEnabled, this)];
- }
- SvgButton.prototype.destroy = function() {
- this.svgElement.removeEventListener('click', this._clickFunction, true);
- var subscriptions = this._subscriptions;
- for ( var i = 0, len = subscriptions.length; i < len; i++) {
- subscriptions[i].dispose();
- }
- destroyObject(this);
- };
- SvgButton.prototype.isDestroyed = function() {
- return false;
- };
- SvgButton.prototype.setEnabled = function(enabled) {
- if (this._enabled !== enabled) {
- this._enabled = enabled;
- if (!enabled) {
- this.svgElement.setAttribute('class', 'cesium-animation-buttonDisabled');
- return;
- }
- if (this._toggled) {
- this.svgElement.setAttribute('class', 'cesium-animation-rectButton cesium-animation-buttonToggled');
- return;
- }
- this.svgElement.setAttribute('class', 'cesium-animation-rectButton');
- }
- };
- SvgButton.prototype.setToggled = function(toggled) {
- if (this._toggled !== toggled) {
- this._toggled = toggled;
- if (this._enabled) {
- if (toggled) {
- this.svgElement.setAttribute('class', 'cesium-animation-rectButton cesium-animation-buttonToggled');
- } else {
- this.svgElement.setAttribute('class', 'cesium-animation-rectButton');
- }
- }
- }
- };
- SvgButton.prototype.setTooltip = function(tooltip) {
- this.svgElement.getElementsByTagName('title')[0].textContent = tooltip;
- };
- /**
- * <span style="display: block; text-align: center;">
- * <img src="Images/AnimationWidget.png" width="211" height="142" alt="" />
- * <br />Animation widget
- * </span>
- * <br /><br />
- * The Animation widget provides buttons for play, pause, and reverse, along with the
- * current time and date, surrounded by a "shuttle ring" for controlling the speed of animation.
- * <br /><br />
- * The "shuttle ring" concept is borrowed from video editing, where typically a
- * "jog wheel" can be rotated to move past individual animation frames very slowly, and
- * a surrounding shuttle ring can be twisted to control direction and speed of fast playback.
- * Cesium typically treats time as continuous (not broken into pre-defined animation frames),
- * so this widget offers no jog wheel. Instead, the shuttle ring is capable of both fast and
- * very slow playback. Click and drag the shuttle ring pointer itself (shown above in green),
- * or click in the rest of the ring area to nudge the pointer to the next preset speed in that direction.
- * <br /><br />
- * The Animation widget also provides a "realtime" button (in the upper-left) that keeps
- * animation time in sync with the end user's system clock, typically displaying
- * "today" or "right now." This mode is not available in {@link ClockRange.CLAMPED} or
- * {@link ClockRange.LOOP_STOP} mode if the current time is outside of {@link Clock}'s startTime and endTime.
- *
- * @alias Animation
- * @constructor
- *
- * @param {Element|String} container The DOM element or ID that will contain the widget.
- * @param {AnimationViewModel} viewModel The view model used by this widget.
- *
- * @exception {DeveloperError} Element with id "container" does not exist in the document.
- *
- *
- * @example
- * // In HTML head, include a link to Animation.css stylesheet,
- * // and in the body, include: <div id="animationContainer"></div>
- *
- * var clock = new Cesium.Clock();
- * var clockViewModel = new Cesium.ClockViewModel(clock);
- * var viewModel = new Cesium.AnimationViewModel(clockViewModel);
- * var widget = new Cesium.Animation('animationContainer', viewModel);
- *
- * function tick() {
- * clock.tick();
- * Cesium.requestAnimationFrame(tick);
- * }
- * Cesium.requestAnimationFrame(tick);
- *
- * @see AnimationViewModel
- * @see Clock
- */
- function Animation(container, viewModel) {
- //>>includeStart('debug', pragmas.debug);
- if (!defined(container)) {
- throw new DeveloperError('container is required.');
- }
- if (!defined(viewModel)) {
- throw new DeveloperError('viewModel is required.');
- }
- //>>includeEnd('debug');
- container = getElement(container);
- this._viewModel = viewModel;
- this._container = container;
- this._centerX = 0;
- this._centerY = 0;
- this._defsElement = undefined;
- this._svgNode = undefined;
- this._topG = undefined;
- this._lastHeight = undefined;
- this._lastWidth = undefined;
- // Firefox requires SVG references to be included directly, not imported from external CSS.
- // Also, CSS minifiers get confused by this being in an external CSS file.
- var cssStyle = document.createElement('style');
- cssStyle.textContent = '.cesium-animation-rectButton .cesium-animation-buttonGlow { filter: url(#animation_blurred); }\
- .cesium-animation-rectButton .cesium-animation-buttonMain { fill: url(#animation_buttonNormal); }\
- .cesium-animation-buttonToggled .cesium-animation-buttonMain { fill: url(#animation_buttonToggled); }\
- .cesium-animation-rectButton:hover .cesium-animation-buttonMain { fill: url(#animation_buttonHovered); }\
- .cesium-animation-buttonDisabled .cesium-animation-buttonMain { fill: url(#animation_buttonDisabled); }\
- .cesium-animation-shuttleRingG .cesium-animation-shuttleRingSwoosh { fill: url(#animation_shuttleRingSwooshGradient); }\
- .cesium-animation-shuttleRingG:hover .cesium-animation-shuttleRingSwoosh { fill: url(#animation_shuttleRingSwooshHovered); }\
- .cesium-animation-shuttleRingPointer { fill: url(#animation_shuttleRingPointerGradient); }\
- .cesium-animation-shuttleRingPausePointer { fill: url(#animation_shuttleRingPointerPaused); }\
- .cesium-animation-knobOuter { fill: url(#animation_knobOuter); }\
- .cesium-animation-knobInner { fill: url(#animation_knobInner); }';
- document.head.insertBefore(cssStyle, document.head.childNodes[0]);
- var themeEle = document.createElement('div');
- themeEle.className = 'cesium-animation-theme';
- themeEle.innerHTML = '<div class="cesium-animation-themeNormal"></div>\
- <div class="cesium-animation-themeHover"></div>\
- <div class="cesium-animation-themeSelect"></div>\
- <div class="cesium-animation-themeDisabled"></div>\
- <div class="cesium-animation-themeKnob"></div>\
- <div class="cesium-animation-themePointer"></div>\
- <div class="cesium-animation-themeSwoosh"></div>\
- <div class="cesium-animation-themeSwooshHover"></div>';
- this._theme = themeEle;
- this._themeNormal = themeEle.childNodes[0];
- this._themeHover = themeEle.childNodes[1];
- this._themeSelect = themeEle.childNodes[2];
- this._themeDisabled = themeEle.childNodes[3];
- this._themeKnob = themeEle.childNodes[4];
- this._themePointer = themeEle.childNodes[5];
- this._themeSwoosh = themeEle.childNodes[6];
- this._themeSwooshHover = themeEle.childNodes[7];
- var svg = document.createElementNS(svgNS, 'svg:svg');
- this._svgNode = svg;
- // Define the XLink namespace that SVG uses
- svg.setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:xlink', xlinkNS);
- var topG = document.createElementNS(svgNS, 'g');
- this._topG = topG;
- this._realtimeSVG = new SvgButton(wingButton(3, 4, '#animation_pathClock'), viewModel.playRealtimeViewModel);
- this._playReverseSVG = new SvgButton(rectButton(44, 99, '#animation_pathPlayReverse'), viewModel.playReverseViewModel);
- this._playForwardSVG = new SvgButton(rectButton(124, 99, '#animation_pathPlay'), viewModel.playForwardViewModel);
- this._pauseSVG = new SvgButton(rectButton(84, 99, '#animation_pathPause'), viewModel.pauseViewModel);
- var buttonsG = document.createElementNS(svgNS, 'g');
- buttonsG.appendChild(this._realtimeSVG.svgElement);
- buttonsG.appendChild(this._playReverseSVG.svgElement);
- buttonsG.appendChild(this._playForwardSVG.svgElement);
- buttonsG.appendChild(this._pauseSVG.svgElement);
- var shuttleRingBackPanel = svgFromObject({
- tagName : 'circle',
- 'class' : 'cesium-animation-shuttleRingBack',
- cx : 100,
- cy : 100,
- r : 99
- });
- this._shuttleRingBackPanel = shuttleRingBackPanel;
- var shuttleRingSwooshG = svgFromObject({
- tagName : 'g',
- 'class' : 'cesium-animation-shuttleRingSwoosh',
- children : [{
- tagName : 'use',
- transform : 'translate(100,97) scale(-1,1)',
- 'xlink:href' : '#animation_pathSwooshFX'
- }, {
- tagName : 'use',
- transform : 'translate(100,97)',
- 'xlink:href' : '#animation_pathSwooshFX'
- }, {
- tagName : 'line',
- x1 : 100,
- y1 : 8,
- x2 : 100,
- y2 : 22
- }]
- });
- this._shuttleRingSwooshG = shuttleRingSwooshG;
- this._shuttleRingPointer = svgFromObject({
- tagName : 'use',
- 'class' : 'cesium-animation-shuttleRingPointer',
- 'xlink:href' : '#animation_pathPointer'
- });
- var knobG = svgFromObject({
- tagName : 'g',
- transform : 'translate(100,100)'
- });
- this._knobOuter = svgFromObject({
- tagName : 'circle',
- 'class' : 'cesium-animation-knobOuter',
- cx : 0,
- cy : 0,
- r : 71
- });
- var knobInnerAndShieldSize = 61;
- var knobInner = svgFromObject({
- tagName : 'circle',
- 'class' : 'cesium-animation-knobInner',
- cx : 0,
- cy : 0,
- r : knobInnerAndShieldSize
- });
- this._knobDate = svgText(0, -24, '');
- this._knobTime = svgText(0, -7, '');
- this._knobStatus = svgText(0, -41, '');
- // widget shield catches clicks on the knob itself (even while DOM elements underneath are changing).
- var knobShield = svgFromObject({
- tagName : 'circle',
- 'class' : 'cesium-animation-blank',
- cx : 0,
- cy : 0,
- r : knobInnerAndShieldSize
- });
- var shuttleRingBackG = document.createElementNS(svgNS, 'g');
- shuttleRingBackG.setAttribute('class', 'cesium-animation-shuttleRingG');
- container.appendChild(themeEle);
- topG.appendChild(shuttleRingBackG);
- topG.appendChild(knobG);
- topG.appendChild(buttonsG);
- shuttleRingBackG.appendChild(shuttleRingBackPanel);
- shuttleRingBackG.appendChild(shuttleRingSwooshG);
- shuttleRingBackG.appendChild(this._shuttleRingPointer);
- knobG.appendChild(this._knobOuter);
- knobG.appendChild(knobInner);
- knobG.appendChild(this._knobDate);
- knobG.appendChild(this._knobTime);
- knobG.appendChild(this._knobStatus);
- knobG.appendChild(knobShield);
- svg.appendChild(topG);
- container.appendChild(svg);
- var that = this;
- function mouseCallback(e) {
- setShuttleRingFromMouseOrTouch(that, e);
- }
- this._mouseCallback = mouseCallback;
- shuttleRingBackPanel.addEventListener('mousedown', mouseCallback, true);
- shuttleRingBackPanel.addEventListener('touchstart', mouseCallback, true);
- shuttleRingSwooshG.addEventListener('mousedown', mouseCallback, true);
- shuttleRingSwooshG.addEventListener('touchstart', mouseCallback, true);
- document.addEventListener('mousemove', mouseCallback, true);
- document.addEventListener('touchmove', mouseCallback, true);
- document.addEventListener('mouseup', mouseCallback, true);
- document.addEventListener('touchend', mouseCallback, true);
- document.addEventListener('touchcancel', mouseCallback, true);
- this._shuttleRingPointer.addEventListener('mousedown', mouseCallback, true);
- this._shuttleRingPointer.addEventListener('touchstart', mouseCallback, true);
- this._knobOuter.addEventListener('mousedown', mouseCallback, true);
- this._knobOuter.addEventListener('touchstart', mouseCallback, true);
- //TODO: Since the animation widget uses SVG and has no HTML backing,
- //we need to wire everything up manually. Knockout can supposedly
- //bind to SVG, so we we figure that out we can modify our SVG
- //to include the binding information directly.
- var timeNode = this._knobTime.childNodes[0];
- var dateNode = this._knobDate.childNodes[0];
- var statusNode = this._knobStatus.childNodes[0];
- var isPaused;
- this._subscriptions = [//
- subscribeAndEvaluate(viewModel.pauseViewModel, 'toggled', function(value) {
- if (isPaused !== value) {
- isPaused = value;
- if (isPaused) {
- that._shuttleRingPointer.setAttribute('class', 'cesium-animation-shuttleRingPausePointer');
- } else {
- that._shuttleRingPointer.setAttribute('class', 'cesium-animation-shuttleRingPointer');
- }
- }
- }),
- subscribeAndEvaluate(viewModel, 'shuttleRingAngle', function(value) {
- setShuttleRingPointer(that._shuttleRingPointer, that._knobOuter, value);
- }),
- subscribeAndEvaluate(viewModel, 'dateLabel', function(value) {
- if (dateNode.textContent !== value) {
- dateNode.textContent = value;
- }
- }),
- subscribeAndEvaluate(viewModel, 'timeLabel', function(value) {
- if (timeNode.textContent !== value) {
- timeNode.textContent = value;
- }
- }),
- subscribeAndEvaluate(viewModel, 'multiplierLabel', function(value) {
- if (statusNode.textContent !== value) {
- statusNode.textContent = value;
- }
- })];
- this.applyThemeChanges();
- this.resize();
- }
- defineProperties(Animation.prototype, {
- /**
- * Gets the parent container.
- *
- * @memberof Animation.prototype
- * @type {Element}
- * @readonly
- */
- container : {
- get : function() {
- return this._container;
- }
- },
- /**
- * Gets the view model.
- *
- * @memberof Animation.prototype
- * @type {AnimationViewModel}
- * @readonly
- */
- viewModel : {
- get : function() {
- return this._viewModel;
- }
- }
- });
- /**
- * @returns {Boolean} true if the object has been destroyed, false otherwise.
- */
- Animation.prototype.isDestroyed = function() {
- return false;
- };
- /**
- * Destroys the animation widget. Should be called if permanently
- * removing the widget from layout.
- */
- Animation.prototype.destroy = function() {
- if (defined(this._observer)) {
- this._observer.disconnect();
- this._observer = undefined;
- }
- var mouseCallback = this._mouseCallback;
- this._shuttleRingBackPanel.removeEventListener('mousedown', mouseCallback, true);
- this._shuttleRingBackPanel.removeEventListener('touchstart', mouseCallback, true);
- this._shuttleRingSwooshG.removeEventListener('mousedown', mouseCallback, true);
- this._shuttleRingSwooshG.removeEventListener('touchstart', mouseCallback, true);
- document.removeEventListener('mousemove', mouseCallback, true);
- document.removeEventListener('touchmove', mouseCallback, true);
- document.removeEventListener('mouseup', mouseCallback, true);
- document.removeEventListener('touchend', mouseCallback, true);
- document.removeEventListener('touchcancel', mouseCallback, true);
- this._shuttleRingPointer.removeEventListener('mousedown', mouseCallback, true);
- this._shuttleRingPointer.removeEventListener('touchstart', mouseCallback, true);
- this._knobOuter.removeEventListener('mousedown', mouseCallback, true);
- this._knobOuter.removeEventListener('touchstart', mouseCallback, true);
- this._container.removeChild(this._svgNode);
- this._container.removeChild(this._theme);
- this._realtimeSVG.destroy();
- this._playReverseSVG.destroy();
- this._playForwardSVG.destroy();
- this._pauseSVG.destroy();
- var subscriptions = this._subscriptions;
- for ( var i = 0, len = subscriptions.length; i < len; i++) {
- subscriptions[i].dispose();
- }
- return destroyObject(this);
- };
- /**
- * Resizes the widget to match the container size.
- * This function should be called whenever the container size is changed.
- */
- Animation.prototype.resize = function() {
- var parentWidth = this._container.clientWidth;
- var parentHeight = this._container.clientHeight;
- if (parentWidth === this._lastWidth && parentHeight === this._lastHeight) {
- return;
- }
- var svg = this._svgNode;
- //The width and height as the SVG was originally drawn.
- var baseWidth = 200;
- var baseHeight = 132;
- var width = parentWidth;
- var height = parentHeight;
- if (parentWidth === 0 && parentHeight === 0) {
- width = baseWidth;
- height = baseHeight;
- } else if (parentWidth === 0) {
- height = parentHeight;
- width = baseWidth * (parentHeight / baseHeight);
- } else if (parentHeight === 0) {
- width = parentWidth;
- height = baseHeight * (parentWidth / baseWidth);
- }
- var scaleX = width / baseWidth;
- var scaleY = height / baseHeight;
- svg.style.cssText = 'width: ' + width + 'px; height: ' + height + 'px; position: absolute; bottom: 0; left: 0; overflow: hidden;';
- svg.setAttribute('width', width);
- svg.setAttribute('height', height);
- svg.setAttribute('viewBox', '0 0 ' + width + ' ' + height);
- this._topG.setAttribute('transform', 'scale(' + scaleX + ',' + scaleY + ')');
- this._centerX = Math.max(1, 100.0 * scaleX);
- this._centerY = Math.max(1, 100.0 * scaleY);
- this._lastHeight = parentWidth;
- this._lastWidth = parentHeight;
- };
- /**
- * Updates the widget to reflect any modified CSS rules for theming.
- *
- * @example
- * //Switch to the cesium-lighter theme.
- * document.body.className = 'cesium-lighter';
- * animation.applyThemeChanges();
- */
- Animation.prototype.applyThemeChanges = function() {
- // Since we rely on computed styles for themeing, we can't actually
- // do anything if the container has not yet been added to the DOM.
- // Set up an observer to be notified when it is added and apply
- // the changes at that time.
- if (!document.body.contains(this._container)) {
- if (defined(this._observer)) {
- //Already listening.
- return;
- }
- var that = this;
- that._observer = new MutationObserver(function() {
- if (document.body.contains(that._container)) {
- that._observer.disconnect();
- that._observer = undefined;
- that.applyThemeChanges();
- }
- });
- that._observer.observe(document, {childList : true, subtree : true});
- return;
- }
- var buttonNormalBackColor = getElementColor(this._themeNormal);
- var buttonHoverBackColor = getElementColor(this._themeHover);
- var buttonToggledBackColor = getElementColor(this._themeSelect);
- var buttonDisabledBackColor = getElementColor(this._themeDisabled);
- var knobBackColor = getElementColor(this._themeKnob);
- var pointerColor = getElementColor(this._themePointer);
- var swooshColor = getElementColor(this._themeSwoosh);
- var swooshHoverColor = getElementColor(this._themeSwooshHover);
- var defsElement = svgFromObject({
- tagName : 'defs',
- children : [{
- id : 'animation_buttonNormal',
- tagName : 'linearGradient',
- x1 : '50%',
- y1 : '0%',
- x2 : '50%',
- y2 : '100%',
- children : [
- //add a 'stop-opacity' field to make translucent.
- {
- tagName : 'stop',
- offset : '0%',
- 'stop-color' : makeColorString(buttonNormalBackColor, gradientEnabledColor0)
- }, {
- tagName : 'stop',
- offset : '12%',
- 'stop-color' : makeColorString(buttonNormalBackColor, gradientEnabledColor1)
- }, {
- tagName : 'stop',
- offset : '46%',
- 'stop-color' : makeColorString(buttonNormalBackColor, gradientEnabledColor2)
- }, {
- tagName : 'stop',
- offset : '81%',
- 'stop-color' : makeColorString(buttonNormalBackColor, gradientEnabledColor3)
- }]
- }, {
- id : 'animation_buttonHovered',
- tagName : 'linearGradient',
- x1 : '50%',
- y1 : '0%',
- x2 : '50%',
- y2 : '100%',
- children : [{
- tagName : 'stop',
- offset : '0%',
- 'stop-color' : makeColorString(buttonHoverBackColor, gradientEnabledColor0)
- }, {
- tagName : 'stop',
- offset : '12%',
- 'stop-color' : makeColorString(buttonHoverBackColor, gradientEnabledColor1)
- }, {
- tagName : 'stop',
- offset : '46%',
- 'stop-color' : makeColorString(buttonHoverBackColor, gradientEnabledColor2)
- }, {
- tagName : 'stop',
- offset : '81%',
- 'stop-color' : makeColorString(buttonHoverBackColor, gradientEnabledColor3)
- }]
- }, {
- id : 'animation_buttonToggled',
- tagName : 'linearGradient',
- x1 : '50%',
- y1 : '0%',
- x2 : '50%',
- y2 : '100%',
- children : [{
- tagName : 'stop',
- offset : '0%',
- 'stop-color' : makeColorString(buttonToggledBackColor, gradientEnabledColor0)
- }, {
- tagName : 'stop',
- offset : '12%',
- 'stop-color' : makeColorString(buttonToggledBackColor, gradientEnabledColor1)
- }, {
- tagName : 'stop',
- offset : '46%',
- 'stop-color' : makeColorString(buttonToggledBackColor, gradientEnabledColor2)
- }, {
- tagName : 'stop',
- offset : '81%',
- 'stop-color' : makeColorString(buttonToggledBackColor, gradientEnabledColor3)
- }]
- }, {
- id : 'animation_buttonDisabled',
- tagName : 'linearGradient',
- x1 : '50%',
- y1 : '0%',
- x2 : '50%',
- y2 : '100%',
- children : [{
- tagName : 'stop',
- offset : '0%',
- 'stop-color' : makeColorString(buttonDisabledBackColor, gradientDisabledColor0)
- }, {
- tagName : 'stop',
- offset : '75%',
- 'stop-color' : makeColorString(buttonDisabledBackColor, gradientDisabledColor1)
- }]
- }, {
- id : 'animation_blurred',
- tagName : 'filter',
- width : '200%',
- height : '200%',
- x : '-50%',
- y : '-50%',
- children : [{
- tagName : 'feGaussianBlur',
- stdDeviation : 4,
- 'in' : 'SourceGraphic'
- }]
- }, {
- id : 'animation_shuttleRingSwooshGradient',
- tagName : 'linearGradient',
- x1 : '50%',
- y1 : '0%',
- x2 : '50%',
- y2 : '100%',
- children : [{
- tagName : 'stop',
- offset : '0%',
- 'stop-opacity' : 0.2,
- 'stop-color' : swooshColor.toCssColorString()
- }, {
- tagName : 'stop',
- offset : '85%',
- 'stop-opacity' : 0.85,
- 'stop-color' : swooshColor.toCssColorString()
- }, {
- tagName : 'stop',
- offset : '95%',
- 'stop-opacity' : 0.05,
- 'stop-color' : swooshColor.toCssColorString()
- }]
- }, {
- id : 'animation_shuttleRingSwooshHovered',
- tagName : 'linearGradient',
- x1 : '50%',
- y1 : '0%',
- x2 : '50%',
- y2 : '100%',
- children : [{
- tagName : 'stop',
- offset : '0%',
- 'stop-opacity' : 0.2,
- 'stop-color' : swooshHoverColor.toCssColorString()
- }, {
- tagName : 'stop',
- offset : '85%',
- 'stop-opacity' : 0.85,
- 'stop-color' : swooshHoverColor.toCssColorString()
- }, {
- tagName : 'stop',
- offset : '95%',
- 'stop-opacity' : 0.05,
- 'stop-color' : swooshHoverColor.toCssColorString()
- }]
- }, {
- id : 'animation_shuttleRingPointerGradient',
- tagName : 'linearGradient',
- x1 : '0%',
- y1 : '50%',
- x2 : '100%',
- y2 : '50%',
- children : [{
- tagName : 'stop',
- offset : '0%',
- 'stop-color' : pointerColor.toCssColorString()
- }, {
- tagName : 'stop',
- offset : '40%',
- 'stop-color' : pointerColor.toCssColorString()
- }, {
- tagName : 'stop',
- offset : '60%',
- 'stop-color' : makeColorString(pointerColor, gradientPointerColor)
- }, {
- tagName : 'stop',
- offset : '100%',
- 'stop-color' : makeColorString(pointerColor, gradientPointerColor)
- }]
- }, {
- id : 'animation_shuttleRingPointerPaused',
- tagName : 'linearGradient',
- x1 : '0%',
- y1 : '50%',
- x2 : '100%',
- y2 : '50%',
- children : [{
- tagName : 'stop',
- offset : '0%',
- 'stop-color' : '#CCC'
- }, {
- tagName : 'stop',
- offset : '40%',
- 'stop-color' : '#CCC'
- }, {
- tagName : 'stop',
- offset : '60%',
- 'stop-color' : '#555'
- }, {
- tagName : 'stop',
- offset : '100%',
- 'stop-color' : '#555'
- }]
- }, {
- id : 'animation_knobOuter',
- tagName : 'linearGradient',
- x1 : '20%',
- y1 : '0%',
- x2 : '90%',
- y2 : '100%',
- children : [{
- tagName : 'stop',
- offset : '5%',
- 'stop-color' : makeColorString(knobBackColor, gradientEnabledColor0)
- }, {
- tagName : 'stop',
- offset : '60%',
- 'stop-color' : makeColorString(knobBackColor, gradientKnobColor)
- }, {
- tagName : 'stop',
- offset : '85%',
- 'stop-color' : makeColorString(knobBackColor, gradientEnabledColor1)
- }]
- }, {
- id : 'animation_knobInner',
- tagName : 'linearGradient',
- x1 : '20%',
- y1 : '0%',
- x2 : '90%',
- y2 : '100%',
- children : [{
- tagName : 'stop',
- offset : '5%',
- 'stop-color' : makeColorString(knobBackColor, gradientKnobColor)
- }, {
- tagName : 'stop',
- offset : '60%',
- 'stop-color' : makeColorString(knobBackColor, gradientEnabledColor0)
- }, {
- tagName : 'stop',
- offset : '85%',
- 'stop-color' : makeColorString(knobBackColor, gradientEnabledColor3)
- }]
- }, {
- id : 'animation_pathReset',
- tagName : 'path',
- transform : 'translate(16,16) scale(0.85) translate(-16,-16)',
- d : 'M24.316,5.318,9.833,13.682,9.833,5.5,5.5,5.5,5.5,25.5,9.833,25.5,9.833,17.318,24.316,25.682z'
- }, {
- id : 'animation_pathPause',
- tagName : 'path',
- transform : 'translate(16,16) scale(0.85) translate(-16,-16)',
- d : 'M13,5.5,7.5,5.5,7.5,25.5,13,25.5zM24.5,5.5,19,5.5,19,25.5,24.5,25.5z'
- }, {
- id : 'animation_pathPlay',
- tagName : 'path',
- transform : 'translate(16,16) scale(0.85) translate(-16,-16)',
- d : 'M6.684,25.682L24.316,15.5L6.684,5.318V25.682z'
- }, {
- id : 'animation_pathPlayReverse',
- tagName : 'path',
- transform : 'translate(16,16) scale(-0.85,0.85) translate(-16,-16)',
- d : 'M6.684,25.682L24.316,15.5L6.684,5.318V25.682z'
- }, {
- id : 'animation_pathLoop',
- tagName : 'path',
- transform : 'translate(16,16) scale(0.85) translate(-16,-16)',
- d : 'M24.249,15.499c-0.009,4.832-3.918,8.741-8.75,8.75c-2.515,0-4.768-1.064-6.365-2.763l2.068-1.442l-7.901-3.703l0.744,8.694l2.193-1.529c2.244,2.594,5.562,4.242,9.26,4.242c6.767,0,12.249-5.482,12.249-12.249H24.249zM15.499,6.75c2.516,0,4.769,1.065,6.367,2.764l-2.068,1.443l7.901,3.701l-0.746-8.693l-2.192,1.529c-2.245-2.594-5.562-4.245-9.262-4.245C8.734,3.25,3.25,8.734,3.249,15.499H6.75C6.758,10.668,10.668,6.758,15.499,6.75z'
- }, {
- id : 'animation_pathClock',
- tagName : 'path',
- transform : 'translate(16,16) scale(0.85) translate(-16,-15.5)',
- d : 'M15.5,2.374C8.251,2.375,2.376,8.251,2.374,15.5C2.376,22.748,8.251,28.623,15.5,28.627c7.249-0.004,13.124-5.879,13.125-13.127C28.624,8.251,22.749,2.375,15.5,2.374zM15.5,25.623C9.909,25.615,5.385,21.09,5.375,15.5C5.385,9.909,9.909,5.384,15.5,5.374c5.59,0.01,10.115,4.535,10.124,10.125C25.615,21.09,21.091,25.615,15.5,25.623zM8.625,15.5c-0.001-0.552-0.448-0.999-1.001-1c-0.553,0-1,0.448-1,1c0,0.553,0.449,1,1,1C8.176,16.5,8.624,16.053,8.625,15.5zM8.179,18.572c-0.478,0.277-0.642,0.889-0.365,1.367c0.275,0.479,0.889,0.641,1.365,0.365c0.479-0.275,0.643-0.887,0.367-1.367C9.27,18.461,8.658,18.297,8.179,18.572zM9.18,10.696c-0.479-0.276-1.09-0.112-1.366,0.366s-0.111,1.09,0.365,1.366c0.479,0.276,1.09,0.113,1.367-0.366C9.821,11.584,9.657,10.973,9.18,10.696zM22.822,12.428c0.478-0.275,0.643-0.888,0.366-1.366c-0.275-0.478-0.89-0.642-1.366-0.366c-0.479,0.278-0.642,0.89-0.366,1.367C21.732,12.54,22.344,12.705,22.822,12.428zM12.062,21.455c-0.478-0.275-1.089-0.111-1.366,0.367c-0.275,0.479-0.111,1.09,0.366,1.365c0.478,0.277,1.091,0.111,1.365-0.365C12.704,22.344,12.54,21.732,12.062,21.455zM12.062,9.545c0.479-0.276,0.642-0.888,0.366-1.366c-0.276-0.478-0.888-0.642-1.366-0.366s-0.642,0.888-0.366,1.366C10.973,9.658,11.584,9.822,12.062,9.545zM22.823,18.572c-0.48-0.275-1.092-0.111-1.367,0.365c-0.275,0.479-0.112,1.092,0.367,1.367c0.477,0.275,1.089,0.113,1.365-0.365C23.464,19.461,23.3,18.848,22.823,18.572zM19.938,7.813c-0.477-0.276-1.091-0.111-1.365,0.366c-0.275,0.48-0.111,1.091,0.366,1.367s1.089,0.112,1.366-0.366C20.581,8.702,20.418,8.089,19.938,7.813zM23.378,14.5c-0.554,0.002-1.001,0.45-1.001,1c0.001,0.552,0.448,1,1.001,1c0.551,0,1-0.447,1-1C24.378,14.949,23.929,14.5,23.378,14.5zM15.501,6.624c-0.552,0-1,0.448-1,1l-0.466,7.343l-3.004,1.96c-0.478,0.277-0.642,0.889-0.365,1.365c0.275,0.479,0.889,0.643,1.365,0.367l3.305-1.676C15.39,16.99,15.444,17,15.501,17c0.828,0,1.5-0.671,1.5-1.5l-0.5-7.876C16.501,7.072,16.053,6.624,15.501,6.624zM15.501,22.377c-0.552,0-1,0.447-1,1s0.448,1,1,1s1-0.447,1-1S16.053,22.377,15.501,22.377zM18.939,21.455c-0.479,0.277-0.643,0.889-0.366,1.367c0.275,0.477,0.888,0.643,1.366,0.365c0.478-0.275,0.642-0.889,0.366-1.365C20.028,21.344,19.417,21.18,18.939,21.455z'
- }, {
- id : 'animation_pathWingButton',
- tagName : 'path',
- d : 'm 4.5,0.5 c -2.216,0 -4,1.784 -4,4 l 0,24 c 0,2.216 1.784,4 4,4 l 13.71875,0 C 22.478584,27.272785 27.273681,22.511272 32.5,18.25 l 0,-13.75 c 0,-2.216 -1.784,-4 -4,-4 l -24,0 z'
- }, {
- id : 'animation_pathPointer',
- tagName : 'path',
- d : 'M-15,-65,-15,-55,15,-55,15,-65,0,-95z'
- }, {
- id : 'animation_pathSwooshFX',
- tagName : 'path',
- d : 'm 85,0 c 0,16.617 -4.813944,35.356 -13.131081,48.4508 h 6.099803 c 8.317138,-13.0948 13.13322,-28.5955 13.13322,-45.2124 0,-46.94483 -38.402714,-85.00262 -85.7743869,-85.00262 -1.0218522,0 -2.0373001,0.0241 -3.0506131,0.0589 45.958443,1.59437 82.723058,35.77285 82.723058,81.70532 z'
- }]
- });
- if (!defined(this._defsElement)) {
- this._svgNode.appendChild(defsElement);
- } else {
- this._svgNode.replaceChild(defsElement, this._defsElement);
- }
- this._defsElement = defsElement;
- };
- export default Animation;
|