2013-05-01 08:46:16 +04:00
|
|
|
/*
|
2013-05-14 08:00:24 +04:00
|
|
|
* OpenSeadragon - Drawer
|
2013-05-01 08:46:16 +04:00
|
|
|
*
|
|
|
|
* Copyright (C) 2009 CodePlex Foundation
|
2013-05-14 07:32:09 +04:00
|
|
|
* Copyright (C) 2010-2013 OpenSeadragon contributors
|
2013-05-01 08:46:16 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met:
|
|
|
|
*
|
|
|
|
* - Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* - Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* - Neither the name of CodePlex Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2011-12-06 07:50:25 +04:00
|
|
|
(function( $ ){
|
2013-06-19 21:33:25 +04:00
|
|
|
|
2013-01-31 01:51:37 +04:00
|
|
|
var DEVICE_SCREEN = $.getWindowSize(),
|
2012-01-18 03:30:41 +04:00
|
|
|
BROWSER = $.Browser.vendor,
|
|
|
|
BROWSER_VERSION = $.Browser.version,
|
2012-01-12 03:22:13 +04:00
|
|
|
|
|
|
|
SUBPIXEL_RENDERING = (
|
2012-01-18 03:30:41 +04:00
|
|
|
( BROWSER == $.BROWSERS.FIREFOX ) ||
|
|
|
|
( BROWSER == $.BROWSERS.OPERA ) ||
|
|
|
|
( BROWSER == $.BROWSERS.SAFARI && BROWSER_VERSION >= 4 ) ||
|
2012-04-03 11:08:27 +04:00
|
|
|
( BROWSER == $.BROWSERS.CHROME && BROWSER_VERSION >= 2 ) ||
|
|
|
|
( BROWSER == $.BROWSERS.IE && BROWSER_VERSION >= 9 )
|
2013-11-02 00:02:28 +04:00
|
|
|
);
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-03-01 17:38:15 +04:00
|
|
|
|
2012-01-25 23:14:02 +04:00
|
|
|
/**
|
2013-11-16 10:19:53 +04:00
|
|
|
* @class Drawer
|
2014-07-18 03:24:28 +04:00
|
|
|
* @classdesc Handles rendering of tiles for an {@link OpenSeadragon.Viewer}.
|
2013-11-25 20:48:44 +04:00
|
|
|
* A new instance is created for each TileSource opened (see {@link OpenSeadragon.Viewer#drawer}).
|
|
|
|
*
|
2013-11-16 10:19:53 +04:00
|
|
|
* @memberof OpenSeadragon
|
2012-02-01 00:59:09 +04:00
|
|
|
* @param {OpenSeadragon.TileSource} source - Reference to Viewer tile source.
|
|
|
|
* @param {OpenSeadragon.Viewport} viewport - Reference to Viewer viewport.
|
2013-11-25 20:48:44 +04:00
|
|
|
* @param {Element} element - Parent element.
|
2012-01-25 23:14:02 +04:00
|
|
|
*/
|
2012-03-01 17:38:15 +04:00
|
|
|
$.Drawer = function( options ) {
|
2013-06-19 21:33:25 +04:00
|
|
|
|
|
|
|
//backward compatibility for positional args while prefering more
|
2012-03-01 17:38:15 +04:00
|
|
|
//idiomatic javascript options object as the only argument
|
2012-03-16 19:36:28 +04:00
|
|
|
var args = arguments,
|
|
|
|
i;
|
|
|
|
|
2012-03-01 17:38:15 +04:00
|
|
|
if( !$.isPlainObject( options ) ){
|
|
|
|
options = {
|
2013-11-25 20:48:44 +04:00
|
|
|
source: args[ 0 ], // Reference to Viewer tile source.
|
|
|
|
viewport: args[ 1 ], // Reference to Viewer viewport.
|
|
|
|
element: args[ 2 ] // Parent element.
|
2012-03-01 17:38:15 +04:00
|
|
|
};
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2014-08-01 02:54:20 +04:00
|
|
|
this._worldX = options.x || 0;
|
|
|
|
delete options.x;
|
|
|
|
this._worldY = options.y || 0;
|
|
|
|
delete options.y;
|
|
|
|
|
|
|
|
// Ratio of zoomable image height to width.
|
|
|
|
this.normHeight = options.source.dimensions.y / options.source.dimensions.x;
|
|
|
|
|
|
|
|
if ( options.width ) {
|
|
|
|
this._scale = options.width;
|
|
|
|
delete options.width;
|
|
|
|
|
|
|
|
if ( options.height ) {
|
|
|
|
$.console.error( "specifying both width and height to a drawer is not supported" );
|
|
|
|
delete options.height;
|
|
|
|
}
|
|
|
|
} else if ( options.height ) {
|
|
|
|
this._scale = options.height / this.normHeight;
|
|
|
|
delete options.height;
|
|
|
|
} else {
|
|
|
|
this._scale = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._worldWidth = this._scale;
|
|
|
|
this._worldHeight = this.normHeight * this._scale;
|
2012-03-01 17:38:15 +04:00
|
|
|
|
2014-08-01 02:54:20 +04:00
|
|
|
$.extend( true, this, {
|
2014-07-18 03:24:28 +04:00
|
|
|
|
2012-03-01 17:38:15 +04:00
|
|
|
//internal state properties
|
2013-05-16 10:49:29 +04:00
|
|
|
viewer: null,
|
2014-05-05 06:11:50 +04:00
|
|
|
imageLoader: new $.ImageLoader(),
|
2013-11-25 20:48:44 +04:00
|
|
|
tilesMatrix: {}, // A '3d' dictionary [level][x][y] --> Tile.
|
|
|
|
tilesLoaded: [], // An unordered list of Tiles with loaded images.
|
|
|
|
coverage: {}, // A '3d' dictionary [level][x][y] --> Boolean.
|
|
|
|
lastDrawn: [], // An unordered list of Tiles drawn last frame.
|
|
|
|
lastResetTime: 0, // Last time for which the drawer was reset.
|
|
|
|
midUpdate: false, // Is the drawer currently updating the viewport?
|
2014-08-01 02:54:20 +04:00
|
|
|
updateAgain: true, // Does the drawer need to update the viewport again?
|
2012-03-01 17:38:15 +04:00
|
|
|
|
2013-01-31 01:51:37 +04:00
|
|
|
|
2013-06-19 21:33:25 +04:00
|
|
|
//internal state / configurable settings
|
2014-01-31 00:38:37 +04:00
|
|
|
collectionOverlays: {}, // For collection mode. Here an overlay is actually a viewer.
|
2012-03-16 19:36:28 +04:00
|
|
|
|
2012-03-01 17:38:15 +04:00
|
|
|
//configurable settings
|
2013-12-09 18:26:36 +04:00
|
|
|
opacity: $.DEFAULT_SETTINGS.opacity,
|
2012-03-01 17:38:15 +04:00
|
|
|
maxImageCacheCount: $.DEFAULT_SETTINGS.maxImageCacheCount,
|
|
|
|
minZoomImageRatio: $.DEFAULT_SETTINGS.minZoomImageRatio,
|
|
|
|
wrapHorizontal: $.DEFAULT_SETTINGS.wrapHorizontal,
|
|
|
|
wrapVertical: $.DEFAULT_SETTINGS.wrapVertical,
|
|
|
|
immediateRender: $.DEFAULT_SETTINGS.immediateRender,
|
|
|
|
blendTime: $.DEFAULT_SETTINGS.blendTime,
|
|
|
|
alwaysBlend: $.DEFAULT_SETTINGS.alwaysBlend,
|
2013-01-24 08:00:11 +04:00
|
|
|
minPixelRatio: $.DEFAULT_SETTINGS.minPixelRatio,
|
2013-01-31 01:51:37 +04:00
|
|
|
debugMode: $.DEFAULT_SETTINGS.debugMode,
|
2014-03-20 21:30:46 +04:00
|
|
|
timeout: $.DEFAULT_SETTINGS.timeout,
|
|
|
|
crossOriginPolicy: $.DEFAULT_SETTINGS.crossOriginPolicy
|
2012-03-01 17:38:15 +04:00
|
|
|
|
|
|
|
}, options );
|
|
|
|
|
2013-11-02 00:02:28 +04:00
|
|
|
this.useCanvas = $.supportsCanvas && ( this.viewer ? this.viewer.useCanvas : true );
|
2013-11-25 20:48:44 +04:00
|
|
|
/**
|
|
|
|
* The parent element of this Drawer instance, passed in when the Drawer was created.
|
|
|
|
* The parent of {@link OpenSeadragon.Drawer#canvas}.
|
|
|
|
* @member {Element} container
|
|
|
|
* @memberof OpenSeadragon.Drawer#
|
|
|
|
*/
|
2012-03-01 17:38:15 +04:00
|
|
|
this.container = $.getElement( this.element );
|
2013-11-25 20:48:44 +04:00
|
|
|
/**
|
|
|
|
* A <canvas> element if the browser supports them, otherwise a <div> element.
|
|
|
|
* Child element of {@link OpenSeadragon.Drawer#container}.
|
|
|
|
* @member {Element} canvas
|
|
|
|
* @memberof OpenSeadragon.Drawer#
|
|
|
|
*/
|
2013-11-02 00:02:28 +04:00
|
|
|
this.canvas = $.makeNeutralElement( this.useCanvas ? "canvas" : "div" );
|
2013-11-25 20:48:44 +04:00
|
|
|
/**
|
|
|
|
* 2d drawing context for {@link OpenSeadragon.Drawer#canvas} if it's a <canvas> element, otherwise null.
|
|
|
|
* @member {Object} context
|
|
|
|
* @memberof OpenSeadragon.Drawer#
|
|
|
|
*/
|
2013-11-02 00:02:28 +04:00
|
|
|
this.context = this.useCanvas ? this.canvas.getContext( "2d" ) : null;
|
2014-07-22 22:13:22 +04:00
|
|
|
|
2013-11-25 20:48:44 +04:00
|
|
|
/**
|
|
|
|
* @member {Element} element
|
|
|
|
* @memberof OpenSeadragon.Drawer#
|
|
|
|
* @deprecated Alias for {@link OpenSeadragon.Drawer#container}.
|
|
|
|
*/
|
2012-03-01 17:38:15 +04:00
|
|
|
this.element = this.container;
|
|
|
|
|
2013-08-15 23:54:32 +04:00
|
|
|
// We force our container to ltr because our drawing math doesn't work in rtl.
|
|
|
|
// This issue only affects our canvas renderer, but we do it always for consistency.
|
|
|
|
// Note that this means overlays you want to be rtl need to be explicitly set to rtl.
|
|
|
|
this.container.dir = 'ltr';
|
2013-06-19 21:33:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
this.canvas.style.width = "100%";
|
|
|
|
this.canvas.style.height = "100%";
|
|
|
|
this.canvas.style.position = "absolute";
|
2013-12-09 18:26:36 +04:00
|
|
|
$.setElementOpacity( this.canvas, this.opacity, true );
|
2013-06-19 21:33:25 +04:00
|
|
|
|
2012-01-12 03:22:13 +04:00
|
|
|
// explicit left-align
|
|
|
|
this.container.style.textAlign = "left";
|
2012-02-01 00:59:09 +04:00
|
|
|
this.container.appendChild( this.canvas );
|
|
|
|
|
|
|
|
//this.profiler = new $.Profiler();
|
2011-12-06 07:50:25 +04:00
|
|
|
};
|
|
|
|
|
2013-11-16 10:19:53 +04:00
|
|
|
$.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 06:01:37 +04:00
|
|
|
/**
|
|
|
|
* Adds an html element as an overlay to the current viewport. Useful for
|
|
|
|
* highlighting words or areas of interest on an image or other zoomable
|
|
|
|
* interface.
|
|
|
|
* @method
|
2013-07-31 11:01:48 +04:00
|
|
|
* @param {Element|String|Object} element - A reference to an element or an id for
|
|
|
|
* the element which will overlayed. Or an Object specifying the configuration for the overlay
|
2013-06-19 21:33:25 +04:00
|
|
|
* @param {OpenSeadragon.Point|OpenSeadragon.Rect} location - The point or
|
2012-02-01 06:01:37 +04:00
|
|
|
* rectangle which will be overlayed.
|
2013-06-19 21:33:25 +04:00
|
|
|
* @param {OpenSeadragon.OverlayPlacement} placement - The position of the
|
|
|
|
* viewport which the location coordinates will be treated as relative
|
|
|
|
* to.
|
2014-03-01 17:32:38 +04:00
|
|
|
* @param {function} onDraw - If supplied the callback is called when the overlay
|
2013-07-31 11:01:48 +04:00
|
|
|
* needs to be drawn. It it the responsibility of the callback to do any drawing/positioning.
|
|
|
|
* It is passed position, size and element.
|
2013-11-22 00:19:07 +04:00
|
|
|
* @fires OpenSeadragon.Viewer.event:add-overlay
|
2014-03-01 17:32:38 +04:00
|
|
|
* @deprecated - use {@link OpenSeadragon.Viewer#addOverlay} instead.
|
2012-02-01 06:01:37 +04:00
|
|
|
*/
|
2013-07-31 11:01:48 +04:00
|
|
|
addOverlay: function( element, location, placement, onDraw ) {
|
2014-03-01 17:32:38 +04:00
|
|
|
$.console.error("drawer.addOverlay is deprecated. Use viewer.addOverlay instead.");
|
|
|
|
this.viewer.addOverlay( element, location, placement, onDraw );
|
2013-02-14 04:44:23 +04:00
|
|
|
return this;
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2012-02-01 06:01:37 +04:00
|
|
|
/**
|
2013-06-19 21:33:25 +04:00
|
|
|
* Updates the overlay represented by the reference to the element or
|
2012-02-01 06:01:37 +04:00
|
|
|
* element id moving it to the new location, relative to the new placement.
|
|
|
|
* @method
|
2013-06-19 21:33:25 +04:00
|
|
|
* @param {OpenSeadragon.Point|OpenSeadragon.Rect} location - The point or
|
2012-02-01 06:01:37 +04:00
|
|
|
* rectangle which will be overlayed.
|
2013-06-19 21:33:25 +04:00
|
|
|
* @param {OpenSeadragon.OverlayPlacement} placement - The position of the
|
|
|
|
* viewport which the location coordinates will be treated as relative
|
|
|
|
* to.
|
2013-02-14 04:44:23 +04:00
|
|
|
* @return {OpenSeadragon.Drawer} Chainable.
|
2013-11-22 00:19:07 +04:00
|
|
|
* @fires OpenSeadragon.Viewer.event:update-overlay
|
2014-03-01 17:32:38 +04:00
|
|
|
* @deprecated - use {@link OpenSeadragon.Viewer#updateOverlay} instead.
|
2012-02-01 06:01:37 +04:00
|
|
|
*/
|
2012-02-01 00:59:09 +04:00
|
|
|
updateOverlay: function( element, location, placement ) {
|
2014-03-01 17:32:38 +04:00
|
|
|
$.console.error("drawer.updateOverlay is deprecated. Use viewer.updateOverlay instead.");
|
|
|
|
this.viewer.updateOverlay( element, location, placement );
|
2013-02-14 04:44:23 +04:00
|
|
|
return this;
|
2012-02-01 00:59:09 +04:00
|
|
|
},
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 06:01:37 +04:00
|
|
|
/**
|
2013-06-19 21:33:25 +04:00
|
|
|
* Removes and overlay identified by the reference element or element id
|
2012-02-01 06:01:37 +04:00
|
|
|
* and schedules and update.
|
|
|
|
* @method
|
2013-06-19 21:33:25 +04:00
|
|
|
* @param {Element|String} element - A reference to the element or an
|
2012-02-01 06:01:37 +04:00
|
|
|
* element id which represent the ovelay content to be removed.
|
2013-02-14 04:44:23 +04:00
|
|
|
* @return {OpenSeadragon.Drawer} Chainable.
|
2013-11-22 00:19:07 +04:00
|
|
|
* @fires OpenSeadragon.Viewer.event:remove-overlay
|
2014-03-01 17:32:38 +04:00
|
|
|
* @deprecated - use {@link OpenSeadragon.Viewer#removeOverlay} instead.
|
2012-02-01 06:01:37 +04:00
|
|
|
*/
|
2012-02-01 00:59:09 +04:00
|
|
|
removeOverlay: function( element ) {
|
2014-03-01 17:32:38 +04:00
|
|
|
$.console.error("drawer.removeOverlay is deprecated. Use viewer.removeOverlay instead.");
|
2014-03-26 23:28:35 +04:00
|
|
|
this.viewer.removeOverlay( element );
|
2013-02-14 04:44:23 +04:00
|
|
|
return this;
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2012-02-01 06:01:37 +04:00
|
|
|
/**
|
|
|
|
* Removes all currently configured Overlays from this Drawer and schedules
|
|
|
|
* and update.
|
|
|
|
* @method
|
2013-02-14 04:44:23 +04:00
|
|
|
* @return {OpenSeadragon.Drawer} Chainable.
|
2013-11-22 00:19:07 +04:00
|
|
|
* @fires OpenSeadragon.Viewer.event:clear-overlay
|
2014-03-01 17:32:38 +04:00
|
|
|
* @deprecated - use {@link OpenSeadragon.Viewer#clearOverlays} instead.
|
2012-02-01 06:01:37 +04:00
|
|
|
*/
|
2012-02-01 00:59:09 +04:00
|
|
|
clearOverlays: function() {
|
2014-03-01 17:32:38 +04:00
|
|
|
$.console.error("drawer.clearOverlays is deprecated. Use viewer.clearOverlays instead.");
|
|
|
|
this.viewer.clearOverlays();
|
2013-02-14 04:44:23 +04:00
|
|
|
return this;
|
2012-02-01 00:59:09 +04:00
|
|
|
},
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2013-12-09 18:26:36 +04:00
|
|
|
/**
|
|
|
|
* Set the opacity of the drawer.
|
|
|
|
* @method
|
|
|
|
* @param {Number} opacity
|
|
|
|
* @return {OpenSeadragon.Drawer} Chainable.
|
|
|
|
*/
|
|
|
|
setOpacity: function( opacity ) {
|
|
|
|
this.opacity = opacity;
|
|
|
|
$.setElementOpacity( this.canvas, this.opacity, true );
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the opacity of the drawer.
|
|
|
|
* @method
|
|
|
|
* @returns {Number}
|
|
|
|
*/
|
|
|
|
getOpacity: function() {
|
|
|
|
return this.opacity;
|
|
|
|
},
|
2012-02-01 06:01:37 +04:00
|
|
|
/**
|
2013-06-19 21:33:25 +04:00
|
|
|
* Returns whether the Drawer is scheduled for an update at the
|
2012-02-01 06:01:37 +04:00
|
|
|
* soonest possible opportunity.
|
|
|
|
* @method
|
2013-06-19 21:33:25 +04:00
|
|
|
* @returns {Boolean} - Whether the Drawer is scheduled for an update at the
|
2012-02-01 06:01:37 +04:00
|
|
|
* soonest possible opportunity.
|
|
|
|
*/
|
2012-02-01 00:59:09 +04:00
|
|
|
needsUpdate: function() {
|
|
|
|
return this.updateAgain;
|
|
|
|
},
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 06:01:37 +04:00
|
|
|
/**
|
|
|
|
* Returns the total number of tiles that have been loaded by this Drawer.
|
|
|
|
* @method
|
2013-06-19 21:33:25 +04:00
|
|
|
* @returns {Number} - The total number of tiles that have been loaded by
|
2012-02-01 06:01:37 +04:00
|
|
|
* this Drawer.
|
|
|
|
*/
|
2012-02-01 00:59:09 +04:00
|
|
|
numTilesLoaded: function() {
|
|
|
|
return this.tilesLoaded.length;
|
|
|
|
},
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 06:01:37 +04:00
|
|
|
/**
|
2013-06-19 21:33:25 +04:00
|
|
|
* Clears all tiles and triggers an update on the next call to
|
2012-02-01 06:01:37 +04:00
|
|
|
* Drawer.prototype.update().
|
|
|
|
* @method
|
2013-02-14 04:44:23 +04:00
|
|
|
* @return {OpenSeadragon.Drawer} Chainable.
|
2012-02-01 06:01:37 +04:00
|
|
|
*/
|
2012-02-01 00:59:09 +04:00
|
|
|
reset: function() {
|
|
|
|
clearTiles( this );
|
2013-06-21 00:15:04 +04:00
|
|
|
this.lastResetTime = $.now();
|
2012-01-12 03:22:13 +04:00
|
|
|
this.updateAgain = true;
|
2013-02-14 04:44:23 +04:00
|
|
|
return this;
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2012-02-01 06:01:37 +04:00
|
|
|
/**
|
|
|
|
* Forces the Drawer to update.
|
|
|
|
* @method
|
2013-02-14 04:44:23 +04:00
|
|
|
* @return {OpenSeadragon.Drawer} Chainable.
|
2012-02-01 06:01:37 +04:00
|
|
|
*/
|
2012-02-01 00:59:09 +04:00
|
|
|
update: function() {
|
|
|
|
//this.profiler.beginUpdate();
|
|
|
|
this.midUpdate = true;
|
|
|
|
updateViewport( this );
|
|
|
|
this.midUpdate = false;
|
|
|
|
//this.profiler.endUpdate();
|
2013-02-14 04:44:23 +04:00
|
|
|
return this;
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2013-11-25 20:48:44 +04:00
|
|
|
/**
|
|
|
|
* Returns whether rotation is supported or not.
|
|
|
|
* @method
|
|
|
|
* @return {Boolean} True if rotation is supported.
|
|
|
|
*/
|
2013-08-16 21:32:21 +04:00
|
|
|
canRotate: function() {
|
2013-11-02 00:02:28 +04:00
|
|
|
return this.useCanvas;
|
2014-06-18 04:26:10 +04:00
|
|
|
},
|
2014-06-18 21:35:23 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroy the drawer (unload current loaded tiles)
|
|
|
|
* @method
|
|
|
|
* @return null
|
|
|
|
*/
|
|
|
|
destroy: function() {
|
|
|
|
//unload current loaded tiles (=empty TILE_CACHE)
|
|
|
|
for ( var i = 0; i < this.tilesLoaded.length; ++i ) {
|
|
|
|
this.tilesLoaded[i].unload();
|
|
|
|
}
|
|
|
|
|
|
|
|
//force unloading of current canvas (1x1 will be gc later, trick not necessarily needed)
|
|
|
|
this.canvas.width = 1;
|
|
|
|
this.canvas.height = 1;
|
|
|
|
}
|
2012-02-01 00:59:09 +04:00
|
|
|
};
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
* @inner
|
2013-06-26 20:15:37 +04:00
|
|
|
* Pretty much every other line in this needs to be documented so it's clear
|
2012-02-01 00:59:09 +04:00
|
|
|
* how each piece of this routine contributes to the drawing process. That's
|
|
|
|
* why there are so many TODO's inside this function.
|
|
|
|
*/
|
|
|
|
function updateViewport( drawer ) {
|
2013-06-19 21:33:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
drawer.updateAgain = false;
|
|
|
|
|
2013-02-14 04:44:23 +04:00
|
|
|
if( drawer.viewer ){
|
2013-11-16 10:19:53 +04:00
|
|
|
/**
|
2013-11-22 00:19:07 +04:00
|
|
|
* <em>- Needs documentation -</em>
|
|
|
|
*
|
2013-11-16 10:19:53 +04:00
|
|
|
* @event update-viewport
|
|
|
|
* @memberof OpenSeadragon.Viewer
|
|
|
|
* @type {object}
|
|
|
|
* @property {OpenSeadragon.Viewer} eventSource - A reference to the Viewer which raised the event.
|
2013-11-18 18:56:32 +04:00
|
|
|
* @property {?Object} userData - Arbitrary subscriber-defined object.
|
2013-11-16 10:19:53 +04:00
|
|
|
*/
|
2013-10-11 04:00:15 +04:00
|
|
|
drawer.viewer.raiseEvent( 'update-viewport', {} );
|
2013-02-14 04:44:23 +04:00
|
|
|
}
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
var tile,
|
|
|
|
level,
|
|
|
|
best = null,
|
|
|
|
haveDrawn = false,
|
2013-06-21 00:15:04 +04:00
|
|
|
currentTime = $.now(),
|
2012-02-01 00:59:09 +04:00
|
|
|
viewportSize = drawer.viewport.getContainerSize(),
|
|
|
|
viewportBounds = drawer.viewport.getBounds( true ),
|
|
|
|
viewportTL = viewportBounds.getTopLeft(),
|
|
|
|
viewportBR = viewportBounds.getBottomRight(),
|
2013-06-19 21:33:25 +04:00
|
|
|
zeroRatioC = drawer.viewport.deltaPixelsFromPoints(
|
|
|
|
drawer.source.getPixelRatio( 0 ),
|
2012-02-01 00:59:09 +04:00
|
|
|
true
|
2014-08-01 02:54:20 +04:00
|
|
|
).x * drawer._scale,
|
2012-02-01 00:59:09 +04:00
|
|
|
lowestLevel = Math.max(
|
2013-06-19 21:33:25 +04:00
|
|
|
drawer.source.minLevel,
|
|
|
|
Math.floor(
|
|
|
|
Math.log( drawer.minZoomImageRatio ) /
|
2012-02-01 00:59:09 +04:00
|
|
|
Math.log( 2 )
|
|
|
|
)
|
|
|
|
),
|
2013-02-09 21:21:51 +04:00
|
|
|
highestLevel = Math.min(
|
2012-09-07 16:55:19 +04:00
|
|
|
Math.abs(drawer.source.maxLevel),
|
2013-06-19 21:33:25 +04:00
|
|
|
Math.abs(Math.floor(
|
|
|
|
Math.log( zeroRatioC / drawer.minPixelRatio ) /
|
2012-02-01 00:59:09 +04:00
|
|
|
Math.log( 2 )
|
2012-09-07 16:55:19 +04:00
|
|
|
))
|
2012-02-23 16:18:28 +04:00
|
|
|
),
|
2013-08-14 01:39:22 +04:00
|
|
|
degrees = drawer.viewport.degrees,
|
2012-02-23 16:18:28 +04:00
|
|
|
renderPixelRatioC,
|
|
|
|
renderPixelRatioT,
|
|
|
|
zeroRatioT,
|
|
|
|
optimalRatio,
|
|
|
|
levelOpacity,
|
|
|
|
levelVisibility;
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2014-08-01 02:54:20 +04:00
|
|
|
viewportTL.x -= drawer._worldX;
|
|
|
|
viewportTL.y -= drawer._worldY;
|
|
|
|
viewportBR.x -= drawer._worldX;
|
|
|
|
viewportBR.y -= drawer._worldY;
|
2014-07-18 03:24:28 +04:00
|
|
|
|
2014-05-05 06:11:50 +04:00
|
|
|
// Reset tile's internal drawn state
|
2012-02-01 00:59:09 +04:00
|
|
|
while ( drawer.lastDrawn.length > 0 ) {
|
|
|
|
tile = drawer.lastDrawn.pop();
|
|
|
|
tile.beingDrawn = false;
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2014-05-05 06:11:50 +04:00
|
|
|
// Clear canvas
|
2012-02-01 00:59:09 +04:00
|
|
|
drawer.canvas.innerHTML = "";
|
2013-11-02 00:02:28 +04:00
|
|
|
if ( drawer.useCanvas ) {
|
2013-02-08 18:21:28 +04:00
|
|
|
if( drawer.canvas.width != viewportSize.x ||
|
|
|
|
drawer.canvas.height != viewportSize.y ){
|
|
|
|
drawer.canvas.width = viewportSize.x;
|
|
|
|
drawer.canvas.height = viewportSize.y;
|
2013-01-31 01:51:37 +04:00
|
|
|
}
|
2012-02-01 00:59:09 +04:00
|
|
|
drawer.context.clearRect( 0, 0, viewportSize.x, viewportSize.y );
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2013-08-14 01:39:22 +04:00
|
|
|
//Change bounds for rotation
|
|
|
|
if (degrees === 90 || degrees === 270) {
|
|
|
|
var rotatedBounds = viewportBounds.rotate( degrees );
|
|
|
|
viewportTL = rotatedBounds.getTopLeft();
|
|
|
|
viewportBR = rotatedBounds.getBottomRight();
|
|
|
|
}
|
|
|
|
|
|
|
|
//Don't draw if completely outside of the viewport
|
2013-06-19 21:33:25 +04:00
|
|
|
if ( !drawer.wrapHorizontal &&
|
2014-08-01 02:54:20 +04:00
|
|
|
( viewportBR.x < 0 || viewportTL.x > drawer._worldWidth ) ) {
|
2012-02-01 00:59:09 +04:00
|
|
|
return;
|
2013-06-19 21:33:25 +04:00
|
|
|
} else if
|
2012-03-01 17:38:15 +04:00
|
|
|
( !drawer.wrapVertical &&
|
2014-08-01 02:54:20 +04:00
|
|
|
( viewportBR.y < 0 || viewportTL.y > drawer._worldHeight ) ) {
|
2012-02-01 00:59:09 +04:00
|
|
|
return;
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2014-05-05 06:11:50 +04:00
|
|
|
// Calculate viewport rect / bounds
|
2012-03-01 17:38:15 +04:00
|
|
|
if ( !drawer.wrapHorizontal ) {
|
2012-02-01 00:59:09 +04:00
|
|
|
viewportTL.x = Math.max( viewportTL.x, 0 );
|
2014-08-01 02:54:20 +04:00
|
|
|
viewportBR.x = Math.min( viewportBR.x, drawer._worldWidth );
|
2012-02-01 00:59:09 +04:00
|
|
|
}
|
2012-03-01 17:38:15 +04:00
|
|
|
if ( !drawer.wrapVertical ) {
|
2012-02-01 00:59:09 +04:00
|
|
|
viewportTL.y = Math.max( viewportTL.y, 0 );
|
2014-08-01 02:54:20 +04:00
|
|
|
viewportBR.y = Math.min( viewportBR.y, drawer._worldHeight );
|
2012-02-01 00:59:09 +04:00
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2014-05-05 06:11:50 +04:00
|
|
|
// Calculations for the interval of levels to draw
|
|
|
|
// (above in initial var statement)
|
|
|
|
// can return invalid intervals; fix that here if necessary
|
2012-02-01 00:59:09 +04:00
|
|
|
lowestLevel = Math.min( lowestLevel, highestLevel );
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2014-05-05 06:11:50 +04:00
|
|
|
// Update any level that will be drawn
|
2013-06-25 22:26:09 +04:00
|
|
|
var drawLevel; // FIXME: drawLevel should have a more explanatory name
|
2012-02-01 00:59:09 +04:00
|
|
|
for ( level = highestLevel; level >= lowestLevel; level-- ) {
|
2013-06-25 22:26:09 +04:00
|
|
|
drawLevel = false;
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-23 16:18:28 +04:00
|
|
|
//Avoid calculations for draw if we have already drawn this
|
|
|
|
renderPixelRatioC = drawer.viewport.deltaPixelsFromPoints(
|
2013-06-19 21:33:25 +04:00
|
|
|
drawer.source.getPixelRatio( level ),
|
2012-02-23 16:18:28 +04:00
|
|
|
true
|
2014-08-01 02:54:20 +04:00
|
|
|
).x * drawer._scale;
|
2012-02-23 16:18:28 +04:00
|
|
|
|
2012-03-01 17:38:15 +04:00
|
|
|
if ( ( !haveDrawn && renderPixelRatioC >= drawer.minPixelRatio ) ||
|
2012-02-23 16:18:28 +04:00
|
|
|
( level == lowestLevel ) ) {
|
|
|
|
drawLevel = true;
|
|
|
|
haveDrawn = true;
|
|
|
|
} else if ( !haveDrawn ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-08-14 01:39:22 +04:00
|
|
|
//Perform calculations for draw if we haven't drawn this
|
2012-02-23 16:18:28 +04:00
|
|
|
renderPixelRatioT = drawer.viewport.deltaPixelsFromPoints(
|
2013-06-19 21:33:25 +04:00
|
|
|
drawer.source.getPixelRatio( level ),
|
2012-02-23 16:18:28 +04:00
|
|
|
false
|
2014-08-01 02:54:20 +04:00
|
|
|
).x * drawer._scale;
|
2012-02-23 16:18:28 +04:00
|
|
|
|
2013-06-19 21:33:25 +04:00
|
|
|
zeroRatioT = drawer.viewport.deltaPixelsFromPoints(
|
|
|
|
drawer.source.getPixelRatio(
|
2013-03-06 14:51:31 +04:00
|
|
|
Math.max(
|
|
|
|
drawer.source.getClosestLevel( drawer.viewport.containerSize ) - 1,
|
|
|
|
0
|
|
|
|
)
|
2013-06-19 21:33:25 +04:00
|
|
|
),
|
2012-02-23 16:18:28 +04:00
|
|
|
false
|
2014-08-01 02:54:20 +04:00
|
|
|
).x * drawer._scale;
|
2013-06-19 21:33:25 +04:00
|
|
|
|
|
|
|
optimalRatio = drawer.immediateRender ?
|
|
|
|
1 :
|
2012-02-23 16:18:28 +04:00
|
|
|
zeroRatioT;
|
|
|
|
|
|
|
|
levelOpacity = Math.min( 1, ( renderPixelRatioC - 0.5 ) / 0.5 );
|
2013-06-19 21:33:25 +04:00
|
|
|
|
|
|
|
levelVisibility = optimalRatio / Math.abs(
|
|
|
|
optimalRatio - renderPixelRatioT
|
2012-02-23 16:18:28 +04:00
|
|
|
);
|
|
|
|
|
2014-05-05 06:11:50 +04:00
|
|
|
// Update the level and keep track of 'best' tile to load
|
2012-02-01 00:59:09 +04:00
|
|
|
best = updateLevel(
|
2013-06-19 21:33:25 +04:00
|
|
|
drawer,
|
2012-02-23 16:18:28 +04:00
|
|
|
haveDrawn,
|
2013-06-25 22:26:09 +04:00
|
|
|
drawLevel,
|
2013-06-19 21:33:25 +04:00
|
|
|
level,
|
2012-02-23 16:18:28 +04:00
|
|
|
levelOpacity,
|
|
|
|
levelVisibility,
|
2013-06-19 21:33:25 +04:00
|
|
|
viewportTL,
|
|
|
|
viewportBR,
|
|
|
|
currentTime,
|
|
|
|
best
|
2012-02-01 00:59:09 +04:00
|
|
|
);
|
|
|
|
|
2014-05-05 06:11:50 +04:00
|
|
|
// Stop the loop if lower-res tiles would all be covered by
|
|
|
|
// already drawn tiles
|
2012-02-01 00:59:09 +04:00
|
|
|
if ( providesCoverage( drawer.coverage, level ) ) {
|
|
|
|
break;
|
2011-12-06 07:50:25 +04:00
|
|
|
}
|
2012-02-01 00:59:09 +04:00
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2014-05-05 06:11:50 +04:00
|
|
|
// Perform the actual drawing
|
2012-02-01 00:59:09 +04:00
|
|
|
drawTiles( drawer, drawer.lastDrawn );
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2014-05-05 06:11:50 +04:00
|
|
|
// Load the new 'best' tile
|
2012-02-01 00:59:09 +04:00
|
|
|
if ( best ) {
|
|
|
|
loadTile( drawer, best, currentTime );
|
|
|
|
// because we haven't finished drawing, so
|
2013-06-19 21:33:25 +04:00
|
|
|
drawer.updateAgain = true;
|
2012-02-01 00:59:09 +04:00
|
|
|
}
|
2013-02-14 04:44:23 +04:00
|
|
|
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
|
|
|
|
2013-06-25 22:26:09 +04:00
|
|
|
function updateLevel( drawer, haveDrawn, drawLevel, level, levelOpacity, levelVisibility, viewportTL, viewportBR, currentTime, best ){
|
2013-06-19 21:33:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
var x, y,
|
|
|
|
tileTL,
|
|
|
|
tileBR,
|
|
|
|
numberOfTiles,
|
2012-02-23 16:18:28 +04:00
|
|
|
viewportCenter = drawer.viewport.pixelFromPoint( drawer.viewport.getCenter() );
|
2012-02-01 00:59:09 +04:00
|
|
|
|
2012-01-19 05:15:54 +04:00
|
|
|
|
2013-02-14 04:44:23 +04:00
|
|
|
if( drawer.viewer ){
|
2013-11-16 10:19:53 +04:00
|
|
|
/**
|
2013-11-22 00:19:07 +04:00
|
|
|
* <em>- Needs documentation -</em>
|
|
|
|
*
|
2013-11-16 10:19:53 +04:00
|
|
|
* @event update-level
|
|
|
|
* @memberof OpenSeadragon.Viewer
|
|
|
|
* @type {object}
|
|
|
|
* @property {OpenSeadragon.Viewer} eventSource - A reference to the Viewer which raised the event.
|
|
|
|
* @property {Object} havedrawn
|
|
|
|
* @property {Object} level
|
|
|
|
* @property {Object} opacity
|
|
|
|
* @property {Object} visibility
|
|
|
|
* @property {Object} topleft
|
|
|
|
* @property {Object} bottomright
|
|
|
|
* @property {Object} currenttime
|
|
|
|
* @property {Object} best
|
2013-11-18 18:56:32 +04:00
|
|
|
* @property {?Object} userData - Arbitrary subscriber-defined object.
|
2013-11-16 10:19:53 +04:00
|
|
|
*/
|
2013-06-19 21:33:25 +04:00
|
|
|
drawer.viewer.raiseEvent( 'update-level', {
|
2013-02-14 04:44:23 +04:00
|
|
|
havedrawn: haveDrawn,
|
2013-06-19 21:33:25 +04:00
|
|
|
level: level,
|
2013-02-14 04:44:23 +04:00
|
|
|
opacity: levelOpacity,
|
2013-06-19 21:33:25 +04:00
|
|
|
visibility: levelVisibility,
|
|
|
|
topleft: viewportTL,
|
|
|
|
bottomright: viewportBR,
|
|
|
|
currenttime: currentTime,
|
2013-02-14 04:44:23 +04:00
|
|
|
best: best
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
//OK, a new drawing so do your calculations
|
2014-08-01 02:54:20 +04:00
|
|
|
tileTL = drawer.source.getTileAtPoint( level, viewportTL.divide( drawer._scale ));
|
|
|
|
tileBR = drawer.source.getTileAtPoint( level, viewportBR.divide( drawer._scale ));
|
2012-02-01 00:59:09 +04:00
|
|
|
numberOfTiles = drawer.source.getNumTiles( level );
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
resetCoverage( drawer.coverage, level );
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-03-01 17:38:15 +04:00
|
|
|
if ( !drawer.wrapHorizontal ) {
|
2012-02-01 00:59:09 +04:00
|
|
|
tileBR.x = Math.min( tileBR.x, numberOfTiles.x - 1 );
|
|
|
|
}
|
2012-03-01 17:38:15 +04:00
|
|
|
if ( !drawer.wrapVertical ) {
|
2012-02-01 00:59:09 +04:00
|
|
|
tileBR.y = Math.min( tileBR.y, numberOfTiles.y - 1 );
|
|
|
|
}
|
2012-01-19 05:15:54 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
for ( x = tileTL.x; x <= tileBR.x; x++ ) {
|
|
|
|
for ( y = tileTL.y; y <= tileBR.y; y++ ) {
|
|
|
|
|
2013-06-19 21:33:25 +04:00
|
|
|
best = updateTile(
|
2012-02-01 00:59:09 +04:00
|
|
|
drawer,
|
|
|
|
drawLevel,
|
|
|
|
haveDrawn,
|
|
|
|
x, y,
|
|
|
|
level,
|
|
|
|
levelOpacity,
|
|
|
|
levelVisibility,
|
|
|
|
viewportCenter,
|
|
|
|
numberOfTiles,
|
|
|
|
currentTime,
|
|
|
|
best
|
2012-01-24 07:48:45 +04:00
|
|
|
);
|
2012-01-19 05:15:54 +04:00
|
|
|
|
2012-01-19 06:52:22 +04:00
|
|
|
}
|
2012-02-01 00:59:09 +04:00
|
|
|
}
|
2013-02-14 04:44:23 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
return best;
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2012-01-19 05:15:54 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
function updateTile( drawer, drawLevel, haveDrawn, x, y, level, levelOpacity, levelVisibility, viewportCenter, numberOfTiles, currentTime, best){
|
2013-06-19 21:33:25 +04:00
|
|
|
|
|
|
|
var tile = getTile(
|
|
|
|
x, y,
|
|
|
|
level,
|
2012-02-01 00:59:09 +04:00
|
|
|
drawer.source,
|
|
|
|
drawer.tilesMatrix,
|
2013-06-19 21:33:25 +04:00
|
|
|
currentTime,
|
|
|
|
numberOfTiles,
|
2014-08-01 02:54:20 +04:00
|
|
|
drawer._worldWidth,
|
|
|
|
drawer._worldHeight
|
2012-02-01 00:59:09 +04:00
|
|
|
),
|
2013-06-19 01:55:19 +04:00
|
|
|
drawTile = drawLevel;
|
2012-02-01 00:59:09 +04:00
|
|
|
|
2013-02-14 04:44:23 +04:00
|
|
|
if( drawer.viewer ){
|
2013-11-16 10:19:53 +04:00
|
|
|
/**
|
2013-11-22 00:19:07 +04:00
|
|
|
* <em>- Needs documentation -</em>
|
|
|
|
*
|
2013-11-16 10:19:53 +04:00
|
|
|
* @event update-tile
|
|
|
|
* @memberof OpenSeadragon.Viewer
|
|
|
|
* @type {object}
|
|
|
|
* @property {OpenSeadragon.Viewer} eventSource - A reference to the Viewer which raised the event.
|
2013-11-22 00:19:07 +04:00
|
|
|
* @property {OpenSeadragon.Tile} tile
|
2013-11-18 18:56:32 +04:00
|
|
|
* @property {?Object} userData - Arbitrary subscriber-defined object.
|
2013-11-16 10:19:53 +04:00
|
|
|
*/
|
2013-06-19 21:33:25 +04:00
|
|
|
drawer.viewer.raiseEvent( 'update-tile', {
|
2013-02-14 04:44:23 +04:00
|
|
|
tile: tile
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
setCoverage( drawer.coverage, level, x, y, false );
|
|
|
|
|
|
|
|
if ( !tile.exists ) {
|
|
|
|
return best;
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
if ( haveDrawn && !drawTile ) {
|
|
|
|
if ( isCovered( drawer.coverage, level, x, y ) ) {
|
|
|
|
setCoverage( drawer.coverage, level, x, y, true );
|
|
|
|
} else {
|
|
|
|
drawTile = true;
|
2012-01-19 06:52:22 +04:00
|
|
|
}
|
2012-02-01 00:59:09 +04:00
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
if ( !drawTile ) {
|
|
|
|
return best;
|
|
|
|
}
|
2012-01-19 06:52:22 +04:00
|
|
|
|
2013-06-19 21:33:25 +04:00
|
|
|
positionTile(
|
|
|
|
tile,
|
2012-02-01 00:59:09 +04:00
|
|
|
drawer.source.tileOverlap,
|
|
|
|
drawer.viewport,
|
2013-06-19 21:33:25 +04:00
|
|
|
viewportCenter,
|
2014-07-18 03:24:28 +04:00
|
|
|
levelVisibility,
|
|
|
|
drawer
|
2012-02-01 00:59:09 +04:00
|
|
|
);
|
2012-01-19 06:52:22 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
if ( tile.loaded ) {
|
2013-05-29 22:18:25 +04:00
|
|
|
var needsUpdate = blendTile(
|
2012-02-01 00:59:09 +04:00
|
|
|
drawer,
|
2013-06-19 21:33:25 +04:00
|
|
|
tile,
|
2012-02-01 00:59:09 +04:00
|
|
|
x, y,
|
|
|
|
level,
|
2013-06-19 21:33:25 +04:00
|
|
|
levelOpacity,
|
|
|
|
currentTime
|
2012-01-19 06:52:22 +04:00
|
|
|
);
|
2013-05-29 22:18:25 +04:00
|
|
|
|
|
|
|
if ( needsUpdate ) {
|
|
|
|
drawer.updateAgain = true;
|
|
|
|
}
|
2012-03-20 11:38:27 +04:00
|
|
|
} else if ( tile.loading ) {
|
2013-06-19 21:33:25 +04:00
|
|
|
// the tile is already in the download queue
|
2012-03-20 23:00:25 +04:00
|
|
|
// thanks josh1093 for finally translating this typo
|
2012-02-01 00:59:09 +04:00
|
|
|
} else {
|
|
|
|
best = compareTiles( best, tile );
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
return best;
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2012-01-24 07:48:45 +04:00
|
|
|
|
2014-07-22 22:13:22 +04:00
|
|
|
function getTile( x, y, level, tileSource, tilesMatrix, time, numTiles, worldWidth, worldHeight ) {
|
2012-02-01 00:59:09 +04:00
|
|
|
var xMod,
|
|
|
|
yMod,
|
|
|
|
bounds,
|
|
|
|
exists,
|
|
|
|
url,
|
|
|
|
tile;
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
if ( !tilesMatrix[ level ] ) {
|
|
|
|
tilesMatrix[ level ] = {};
|
|
|
|
}
|
|
|
|
if ( !tilesMatrix[ level ][ x ] ) {
|
|
|
|
tilesMatrix[ level ][ x ] = {};
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
if ( !tilesMatrix[ level ][ x ][ y ] ) {
|
|
|
|
xMod = ( numTiles.x + ( x % numTiles.x ) ) % numTiles.x;
|
|
|
|
yMod = ( numTiles.y + ( y % numTiles.y ) ) % numTiles.y;
|
|
|
|
bounds = tileSource.getTileBounds( level, xMod, yMod );
|
|
|
|
exists = tileSource.tileExists( level, xMod, yMod );
|
|
|
|
url = tileSource.getTileUrl( level, xMod, yMod );
|
|
|
|
|
2014-07-22 22:13:22 +04:00
|
|
|
bounds.x += worldWidth * ( x - xMod ) / numTiles.x;
|
|
|
|
bounds.y += worldHeight * ( y - yMod ) / numTiles.y;
|
2012-02-01 00:59:09 +04:00
|
|
|
|
|
|
|
tilesMatrix[ level ][ x ][ y ] = new $.Tile(
|
2013-06-19 21:33:25 +04:00
|
|
|
level,
|
|
|
|
x,
|
|
|
|
y,
|
|
|
|
bounds,
|
|
|
|
exists,
|
2012-02-01 00:59:09 +04:00
|
|
|
url
|
|
|
|
);
|
|
|
|
}
|
2012-01-19 06:52:22 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
tile = tilesMatrix[ level ][ x ][ y ];
|
|
|
|
tile.lastTouchTime = time;
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
return tile;
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
function loadTile( drawer, tile, time ) {
|
2013-01-31 05:23:45 +04:00
|
|
|
if( drawer.viewport.collectionMode ){
|
|
|
|
drawer.midUpdate = false;
|
|
|
|
onTileLoad( drawer, tile, time );
|
|
|
|
} else {
|
2014-05-05 06:11:50 +04:00
|
|
|
tile.loading = true;
|
|
|
|
drawer.imageLoader.addJob({
|
|
|
|
src: tile.url,
|
2014-06-26 22:33:43 +04:00
|
|
|
crossOriginPolicy: drawer.crossOriginPolicy,
|
2014-05-05 06:11:50 +04:00
|
|
|
callback: function( image ){
|
2013-01-31 05:23:45 +04:00
|
|
|
onTileLoad( drawer, tile, time, image );
|
|
|
|
}
|
2014-05-05 06:11:50 +04:00
|
|
|
});
|
2013-01-31 05:23:45 +04:00
|
|
|
}
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
function onTileLoad( drawer, tile, time, image ) {
|
|
|
|
var insertionIndex,
|
|
|
|
cutoff,
|
|
|
|
worstTile,
|
|
|
|
worstTime,
|
|
|
|
worstLevel,
|
|
|
|
worstTileIndex,
|
|
|
|
prevTile,
|
|
|
|
prevTime,
|
|
|
|
prevLevel,
|
|
|
|
i;
|
|
|
|
|
|
|
|
tile.loading = false;
|
|
|
|
|
|
|
|
if ( drawer.midUpdate ) {
|
|
|
|
$.console.warn( "Tile load callback in middle of drawing routine." );
|
|
|
|
return;
|
2013-01-31 05:23:45 +04:00
|
|
|
} else if ( !image && !drawer.viewport.collectionMode ) {
|
2012-02-01 00:59:09 +04:00
|
|
|
$.console.log( "Tile %s failed to load: %s", tile, tile.url );
|
2013-02-08 18:21:28 +04:00
|
|
|
if( !drawer.debugMode ){
|
|
|
|
tile.exists = false;
|
|
|
|
return;
|
|
|
|
}
|
2012-02-01 00:59:09 +04:00
|
|
|
} else if ( time < drawer.lastResetTime ) {
|
|
|
|
$.console.log( "Ignoring tile %s loaded before reset: %s", tile, tile.url );
|
|
|
|
return;
|
|
|
|
}
|
2012-01-19 05:15:54 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
tile.loaded = true;
|
|
|
|
tile.image = image;
|
2012-01-19 05:15:54 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
insertionIndex = drawer.tilesLoaded.length;
|
2012-01-19 05:15:54 +04:00
|
|
|
|
2012-03-01 17:38:15 +04:00
|
|
|
if ( drawer.tilesLoaded.length >= drawer.maxImageCacheCount ) {
|
2014-07-28 22:53:06 +04:00
|
|
|
cutoff = Math.ceil( Math.log( drawer.source.getTileSize(tile.level) ) / Math.log( 2 ) );
|
2012-01-19 05:15:54 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
worstTile = null;
|
|
|
|
worstTileIndex = -1;
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
for ( i = drawer.tilesLoaded.length - 1; i >= 0; i-- ) {
|
|
|
|
prevTile = drawer.tilesLoaded[ i ];
|
2012-01-19 05:15:54 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
if ( prevTile.level <= drawer.cutoff || prevTile.beingDrawn ) {
|
|
|
|
continue;
|
|
|
|
} else if ( !worstTile ) {
|
|
|
|
worstTile = prevTile;
|
|
|
|
worstTileIndex = i;
|
|
|
|
continue;
|
|
|
|
}
|
2012-01-19 05:15:54 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
prevTime = prevTile.lastTouchTime;
|
|
|
|
worstTime = worstTile.lastTouchTime;
|
|
|
|
prevLevel = prevTile.level;
|
|
|
|
worstLevel = worstTile.level;
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2013-06-19 21:33:25 +04:00
|
|
|
if ( prevTime < worstTime ||
|
2012-02-01 00:59:09 +04:00
|
|
|
( prevTime == worstTime && prevLevel > worstLevel ) ) {
|
|
|
|
worstTile = prevTile;
|
|
|
|
worstTileIndex = i;
|
2011-12-06 07:50:25 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
if ( worstTile && worstTileIndex >= 0 ) {
|
|
|
|
worstTile.unload();
|
|
|
|
insertionIndex = worstTileIndex;
|
2011-12-06 07:50:25 +04:00
|
|
|
}
|
2012-02-01 00:59:09 +04:00
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
drawer.tilesLoaded[ insertionIndex ] = tile;
|
|
|
|
drawer.updateAgain = true;
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
|
|
|
|
2014-07-18 03:24:28 +04:00
|
|
|
function positionTile( tile, overlap, viewport, viewportCenter, levelVisibility, drawer ){
|
|
|
|
var boundsTL = tile.bounds.getTopLeft();
|
|
|
|
|
2014-08-01 02:54:20 +04:00
|
|
|
boundsTL.x *= drawer._scale;
|
|
|
|
boundsTL.y *= drawer._scale;
|
|
|
|
boundsTL.x += drawer._worldX;
|
|
|
|
boundsTL.y += drawer._worldY;
|
2014-07-18 03:24:28 +04:00
|
|
|
|
2014-07-22 22:13:22 +04:00
|
|
|
var boundsSize = tile.bounds.getSize();
|
|
|
|
|
2014-08-01 02:54:20 +04:00
|
|
|
boundsSize.x *= drawer._scale;
|
|
|
|
boundsSize.y *= drawer._scale;
|
2014-07-22 22:13:22 +04:00
|
|
|
|
|
|
|
var positionC = viewport.pixelFromPoint( boundsTL, true ),
|
2012-02-01 00:59:09 +04:00
|
|
|
positionT = viewport.pixelFromPoint( boundsTL, false ),
|
|
|
|
sizeC = viewport.deltaPixelsFromPoints( boundsSize, true ),
|
|
|
|
sizeT = viewport.deltaPixelsFromPoints( boundsSize, false ),
|
|
|
|
tileCenter = positionT.plus( sizeT.divide( 2 ) ),
|
|
|
|
tileDistance = viewportCenter.distanceTo( tileCenter );
|
2012-01-19 05:15:54 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
if ( !overlap ) {
|
|
|
|
sizeC = sizeC.plus( new $.Point( 1, 1 ) );
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
tile.position = positionC;
|
|
|
|
tile.size = sizeC;
|
|
|
|
tile.distance = tileDistance;
|
|
|
|
tile.visibility = levelVisibility;
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-01-19 05:15:54 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
function blendTile( drawer, tile, x, y, level, levelOpacity, currentTime ){
|
2012-03-01 17:38:15 +04:00
|
|
|
var blendTimeMillis = 1000 * drawer.blendTime,
|
2012-02-01 00:59:09 +04:00
|
|
|
deltaTime,
|
|
|
|
opacity;
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
if ( !tile.blendStart ) {
|
|
|
|
tile.blendStart = currentTime;
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
deltaTime = currentTime - tile.blendStart;
|
2013-03-06 14:51:31 +04:00
|
|
|
opacity = blendTimeMillis ? Math.min( 1, deltaTime / ( blendTimeMillis ) ) : 1;
|
2013-06-19 21:33:25 +04:00
|
|
|
|
2012-03-01 17:38:15 +04:00
|
|
|
if ( drawer.alwaysBlend ) {
|
2012-02-01 00:59:09 +04:00
|
|
|
opacity *= levelOpacity;
|
|
|
|
}
|
2012-01-19 05:15:54 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
tile.opacity = opacity;
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
drawer.lastDrawn.push( tile );
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
if ( opacity == 1 ) {
|
|
|
|
setCoverage( drawer.coverage, level, x, y, true );
|
|
|
|
} else if ( deltaTime < blendTimeMillis ) {
|
|
|
|
return true;
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
return false;
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
function clearTiles( drawer ) {
|
|
|
|
drawer.tilesMatrix = {};
|
|
|
|
drawer.tilesLoaded = [];
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
* @inner
|
|
|
|
* Returns true if the given tile provides coverage to lower-level tiles of
|
|
|
|
* lower resolution representing the same content. If neither x nor y is
|
|
|
|
* given, returns true if the entire visible level provides coverage.
|
2013-06-19 21:33:25 +04:00
|
|
|
*
|
2012-02-01 00:59:09 +04:00
|
|
|
* Note that out-of-bounds tiles provide coverage in this sense, since
|
|
|
|
* there's no content that they would need to cover. Tiles at non-existent
|
|
|
|
* levels that are within the image bounds, however, do not.
|
|
|
|
*/
|
|
|
|
function providesCoverage( coverage, level, x, y ) {
|
|
|
|
var rows,
|
|
|
|
cols,
|
|
|
|
i, j;
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
if ( !coverage[ level ] ) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
if ( x === undefined || y === undefined ) {
|
|
|
|
rows = coverage[ level ];
|
|
|
|
for ( i in rows ) {
|
|
|
|
if ( rows.hasOwnProperty( i ) ) {
|
|
|
|
cols = rows[ i ];
|
|
|
|
for ( j in cols ) {
|
|
|
|
if ( cols.hasOwnProperty( j ) && !cols[ j ] ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-12-28 03:17:24 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
return true;
|
|
|
|
}
|
2011-12-28 03:17:24 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
return (
|
|
|
|
coverage[ level ][ x] === undefined ||
|
|
|
|
coverage[ level ][ x ][ y ] === undefined ||
|
|
|
|
coverage[ level ][ x ][ y ] === true
|
|
|
|
);
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-28 03:17:24 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
* @inner
|
|
|
|
* Returns true if the given tile is completely covered by higher-level
|
|
|
|
* tiles of higher resolution representing the same content. If neither x
|
|
|
|
* nor y is given, returns true if the entire visible level is covered.
|
|
|
|
*/
|
|
|
|
function isCovered( coverage, level, x, y ) {
|
|
|
|
if ( x === undefined || y === undefined ) {
|
|
|
|
return providesCoverage( coverage, level + 1 );
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
providesCoverage( coverage, level + 1, 2 * x, 2 * y ) &&
|
|
|
|
providesCoverage( coverage, level + 1, 2 * x, 2 * y + 1 ) &&
|
|
|
|
providesCoverage( coverage, level + 1, 2 * x + 1, 2 * y ) &&
|
|
|
|
providesCoverage( coverage, level + 1, 2 * x + 1, 2 * y + 1 )
|
|
|
|
);
|
|
|
|
}
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-28 03:17:24 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
* @inner
|
|
|
|
* Sets whether the given tile provides coverage or not.
|
|
|
|
*/
|
|
|
|
function setCoverage( coverage, level, x, y, covers ) {
|
|
|
|
if ( !coverage[ level ] ) {
|
|
|
|
$.console.warn(
|
2013-06-19 21:33:25 +04:00
|
|
|
"Setting coverage for a tile before its level's coverage has been reset: %s",
|
2012-02-01 00:59:09 +04:00
|
|
|
level
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
2011-12-28 03:17:24 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
if ( !coverage[ level ][ x ] ) {
|
|
|
|
coverage[ level ][ x ] = {};
|
|
|
|
}
|
2011-12-28 03:17:24 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
coverage[ level ][ x ][ y ] = covers;
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-28 03:17:24 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
* @inner
|
|
|
|
* Resets coverage information for the given level. This should be called
|
|
|
|
* after every draw routine. Note that at the beginning of the next draw
|
2013-06-19 21:33:25 +04:00
|
|
|
* routine, coverage for every visible tile should be explicitly set.
|
2012-02-01 00:59:09 +04:00
|
|
|
*/
|
|
|
|
function resetCoverage( coverage, level ) {
|
|
|
|
coverage[ level ] = {};
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2012-02-01 00:59:09 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
* @inner
|
2013-06-19 21:33:25 +04:00
|
|
|
* Determines whether the 'last best' tile for the area is better than the
|
2012-02-01 00:59:09 +04:00
|
|
|
* tile in question.
|
|
|
|
*/
|
|
|
|
function compareTiles( previousBest, tile ) {
|
|
|
|
if ( !previousBest ) {
|
|
|
|
return tile;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( tile.visibility > previousBest.visibility ) {
|
|
|
|
return tile;
|
|
|
|
} else if ( tile.visibility == previousBest.visibility ) {
|
|
|
|
if ( tile.distance < previousBest.distance ) {
|
|
|
|
return tile;
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
}
|
2012-02-01 00:59:09 +04:00
|
|
|
|
|
|
|
return previousBest;
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
function drawTiles( drawer, lastDrawn ){
|
2013-06-19 21:33:25 +04:00
|
|
|
var i,
|
2013-01-24 08:00:11 +04:00
|
|
|
tile,
|
|
|
|
tileKey,
|
|
|
|
viewer,
|
|
|
|
viewport,
|
|
|
|
position,
|
|
|
|
tileSource,
|
|
|
|
collectionTileSource;
|
2012-02-01 00:59:09 +04:00
|
|
|
|
2014-02-28 01:39:18 +04:00
|
|
|
// We need a callback to give image manipulation a chance to happen
|
|
|
|
var drawingHandler = function(args) {
|
|
|
|
if (drawer.viewer) {
|
|
|
|
/**
|
|
|
|
* This event is fired just before the tile is drawn giving the application a chance to alter the image.
|
|
|
|
*
|
2014-03-04 21:38:10 +04:00
|
|
|
* NOTE: This event is only fired when the drawer is using a <canvas>.
|
|
|
|
*
|
2014-02-28 01:39:18 +04:00
|
|
|
* @event tile-drawing
|
|
|
|
* @memberof OpenSeadragon.Viewer
|
|
|
|
* @type {object}
|
|
|
|
* @property {OpenSeadragon.Viewer} eventSource - A reference to the Viewer which raised the event.
|
|
|
|
* @property {OpenSeadragon.Tile} tile
|
|
|
|
* @property {?Object} userData - 'context', 'tile' and 'rendered'.
|
|
|
|
*/
|
|
|
|
drawer.viewer.raiseEvent('tile-drawing', args);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
for ( i = lastDrawn.length - 1; i >= 0; i-- ) {
|
|
|
|
tile = lastDrawn[ i ];
|
2013-06-19 21:33:25 +04:00
|
|
|
|
2013-01-24 08:00:11 +04:00
|
|
|
//We dont actually 'draw' a collection tile, rather its used to house
|
|
|
|
//an overlay which does the drawing in its own viewport
|
|
|
|
if( drawer.viewport.collectionMode ){
|
2013-06-19 21:33:25 +04:00
|
|
|
|
2013-01-24 08:00:11 +04:00
|
|
|
tileKey = tile.x + '/' + tile.y;
|
|
|
|
viewport = drawer.viewport;
|
|
|
|
collectionTileSource = viewport.collectionTileSource;
|
2013-06-19 21:33:25 +04:00
|
|
|
|
2013-01-24 08:00:11 +04:00
|
|
|
if( !drawer.collectionOverlays[ tileKey ] ){
|
2013-06-19 21:33:25 +04:00
|
|
|
|
|
|
|
position = collectionTileSource.layout == 'horizontal' ?
|
2013-01-31 21:30:13 +04:00
|
|
|
tile.y + ( tile.x * collectionTileSource.rows ) :
|
2013-06-19 01:58:04 +04:00
|
|
|
tile.x + ( tile.y * collectionTileSource.rows );
|
2013-06-19 21:33:25 +04:00
|
|
|
|
2013-06-19 01:58:04 +04:00
|
|
|
if (position < collectionTileSource.tileSources.length) {
|
|
|
|
tileSource = collectionTileSource.tileSources[ position ];
|
|
|
|
} else {
|
|
|
|
tileSource = null;
|
|
|
|
}
|
2013-01-31 21:30:13 +04:00
|
|
|
|
|
|
|
//$.console.log("Rendering collection tile %s | %s | %s", tile.y, tile.y, position);
|
2013-01-24 08:00:11 +04:00
|
|
|
if( tileSource ){
|
|
|
|
drawer.collectionOverlays[ tileKey ] = viewer = new $.Viewer({
|
2013-10-13 02:30:05 +04:00
|
|
|
hash: viewport.viewer.hash + "-" + tileKey,
|
2013-03-06 14:51:31 +04:00
|
|
|
element: $.makeNeutralElement( "div" ),
|
|
|
|
mouseNavEnabled: false,
|
|
|
|
showNavigator: false,
|
|
|
|
showSequenceControl: false,
|
|
|
|
showNavigationControl: false,
|
2013-01-24 08:00:11 +04:00
|
|
|
tileSources: [
|
|
|
|
tileSource
|
|
|
|
]
|
|
|
|
});
|
2013-06-19 21:33:25 +04:00
|
|
|
|
2013-02-13 07:40:08 +04:00
|
|
|
//TODO: IE seems to barf on this, not sure if its just the border
|
2013-06-19 21:33:25 +04:00
|
|
|
// but we probably need to clear this up with a better
|
2013-02-13 07:40:08 +04:00
|
|
|
// test of support for various css features
|
|
|
|
if( SUBPIXEL_RENDERING ){
|
|
|
|
viewer.element.style.border = '1px solid rgba(255,255,255,0.38)';
|
2013-06-19 21:33:25 +04:00
|
|
|
viewer.element.style['-webkit-box-reflect'] =
|
2013-02-13 07:40:08 +04:00
|
|
|
'below 0px -webkit-gradient('+
|
|
|
|
'linear,left '+
|
|
|
|
'top,left '+
|
|
|
|
'bottom,from(transparent),color-stop(62%,transparent),to(rgba(255,255,255,0.62))'+
|
|
|
|
')';
|
2013-06-19 21:33:25 +04:00
|
|
|
}
|
2013-01-24 08:00:11 +04:00
|
|
|
|
2014-03-15 19:40:51 +04:00
|
|
|
drawer.viewer.addOverlay(
|
2013-01-24 08:00:11 +04:00
|
|
|
viewer.element,
|
|
|
|
tile.bounds
|
2013-06-19 21:33:25 +04:00
|
|
|
);
|
2013-01-24 08:00:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
}else{
|
|
|
|
viewer = drawer.collectionOverlays[ tileKey ];
|
|
|
|
if( viewer.viewport ){
|
|
|
|
viewer.viewport.resize( tile.size, true );
|
|
|
|
viewer.viewport.goHome( true );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
} else {
|
2013-01-24 08:00:11 +04:00
|
|
|
|
2013-11-02 00:02:28 +04:00
|
|
|
if ( drawer.useCanvas ) {
|
2013-08-14 01:39:22 +04:00
|
|
|
// TODO do this in a more performant way
|
|
|
|
// specifically, don't save,rotate,restore every time we draw a tile
|
2013-08-16 02:15:20 +04:00
|
|
|
if( drawer.viewport.degrees !== 0 ) {
|
|
|
|
offsetForRotation( tile, drawer.canvas, drawer.context, drawer.viewport.degrees );
|
2014-02-28 01:39:18 +04:00
|
|
|
tile.drawCanvas( drawer.context, drawingHandler );
|
2013-08-16 02:15:20 +04:00
|
|
|
restoreRotationChanges( tile, drawer.canvas, drawer.context );
|
|
|
|
} else {
|
2014-02-28 01:39:18 +04:00
|
|
|
tile.drawCanvas( drawer.context, drawingHandler );
|
2013-08-16 02:15:20 +04:00
|
|
|
}
|
2013-01-24 08:00:11 +04:00
|
|
|
} else {
|
|
|
|
tile.drawHTML( drawer.canvas );
|
|
|
|
}
|
|
|
|
|
2013-02-02 00:18:53 +04:00
|
|
|
|
2013-01-24 08:00:11 +04:00
|
|
|
tile.beingDrawn = true;
|
2012-02-01 00:59:09 +04:00
|
|
|
}
|
2013-02-02 00:18:53 +04:00
|
|
|
|
|
|
|
if( drawer.debugMode ){
|
|
|
|
try{
|
|
|
|
drawDebugInfo( drawer, tile, lastDrawn.length, i );
|
|
|
|
}catch(e){
|
|
|
|
$.console.error(e);
|
|
|
|
}
|
|
|
|
}
|
2013-02-14 04:44:23 +04:00
|
|
|
|
|
|
|
if( drawer.viewer ){
|
2013-11-16 10:19:53 +04:00
|
|
|
/**
|
2013-11-22 00:19:07 +04:00
|
|
|
* <em>- Needs documentation -</em>
|
|
|
|
*
|
2013-11-16 10:19:53 +04:00
|
|
|
* @event tile-drawn
|
|
|
|
* @memberof OpenSeadragon.Viewer
|
|
|
|
* @type {object}
|
|
|
|
* @property {OpenSeadragon.Viewer} eventSource - A reference to the Viewer which raised the event.
|
2013-11-22 00:19:07 +04:00
|
|
|
* @property {OpenSeadragon.Tile} tile
|
2013-11-18 18:56:32 +04:00
|
|
|
* @property {?Object} userData - Arbitrary subscriber-defined object.
|
2013-11-16 10:19:53 +04:00
|
|
|
*/
|
2013-06-19 21:33:25 +04:00
|
|
|
drawer.viewer.raiseEvent( 'tile-drawn', {
|
2013-02-14 04:44:23 +04:00
|
|
|
tile: tile
|
|
|
|
});
|
|
|
|
}
|
2013-01-24 08:00:11 +04:00
|
|
|
}
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2012-02-01 00:59:09 +04:00
|
|
|
|
2013-08-14 01:39:22 +04:00
|
|
|
function offsetForRotation( tile, canvas, context, degrees ){
|
|
|
|
var cx = canvas.width / 2,
|
|
|
|
cy = canvas.height / 2,
|
|
|
|
px = tile.position.x - cx,
|
|
|
|
py = tile.position.y - cy;
|
|
|
|
|
|
|
|
context.save();
|
|
|
|
|
|
|
|
context.translate(cx, cy);
|
|
|
|
context.rotate( Math.PI / 180 * degrees);
|
|
|
|
tile.position.x = px;
|
|
|
|
tile.position.y = py;
|
|
|
|
}
|
|
|
|
|
|
|
|
function restoreRotationChanges( tile, canvas, context ){
|
|
|
|
var cx = canvas.width / 2,
|
|
|
|
cy = canvas.height / 2,
|
|
|
|
px = tile.position.x + cx,
|
|
|
|
py = tile.position.y + cy;
|
|
|
|
|
|
|
|
tile.position.x = px;
|
|
|
|
tile.position.y = py;
|
|
|
|
|
|
|
|
context.restore();
|
|
|
|
}
|
|
|
|
|
2013-01-24 08:00:11 +04:00
|
|
|
|
|
|
|
function drawDebugInfo( drawer, tile, count, i ){
|
|
|
|
|
2013-11-02 00:02:28 +04:00
|
|
|
if ( drawer.useCanvas ) {
|
2013-03-01 17:14:35 +04:00
|
|
|
drawer.context.save();
|
2013-01-24 08:00:11 +04:00
|
|
|
drawer.context.lineWidth = 2;
|
2013-02-02 00:18:53 +04:00
|
|
|
drawer.context.font = 'small-caps bold 13px ariel';
|
2013-01-24 08:00:11 +04:00
|
|
|
drawer.context.strokeStyle = drawer.debugGridColor;
|
|
|
|
drawer.context.fillStyle = drawer.debugGridColor;
|
2013-06-19 21:33:25 +04:00
|
|
|
drawer.context.strokeRect(
|
|
|
|
tile.position.x,
|
|
|
|
tile.position.y,
|
|
|
|
tile.size.x,
|
|
|
|
tile.size.y
|
2013-01-24 08:00:11 +04:00
|
|
|
);
|
2013-02-13 07:40:08 +04:00
|
|
|
if( tile.x === 0 && tile.y === 0 ){
|
2013-01-24 08:00:11 +04:00
|
|
|
drawer.context.fillText(
|
|
|
|
"Zoom: " + drawer.viewport.getZoom(),
|
2013-06-19 21:33:25 +04:00
|
|
|
tile.position.x,
|
2013-01-24 08:00:11 +04:00
|
|
|
tile.position.y - 30
|
|
|
|
);
|
|
|
|
drawer.context.fillText(
|
2013-06-19 21:33:25 +04:00
|
|
|
"Pan: " + drawer.viewport.getBounds().toString(),
|
|
|
|
tile.position.x,
|
2013-01-24 08:00:11 +04:00
|
|
|
tile.position.y - 20
|
|
|
|
);
|
|
|
|
}
|
|
|
|
drawer.context.fillText(
|
|
|
|
"Level: " + tile.level,
|
2013-06-19 21:33:25 +04:00
|
|
|
tile.position.x + 10,
|
2013-01-24 08:00:11 +04:00
|
|
|
tile.position.y + 20
|
|
|
|
);
|
|
|
|
drawer.context.fillText(
|
|
|
|
"Column: " + tile.x,
|
2013-06-19 21:33:25 +04:00
|
|
|
tile.position.x + 10,
|
2013-01-24 08:00:11 +04:00
|
|
|
tile.position.y + 30
|
|
|
|
);
|
|
|
|
drawer.context.fillText(
|
|
|
|
"Row: " + tile.y,
|
2013-06-19 21:33:25 +04:00
|
|
|
tile.position.x + 10,
|
2013-01-24 08:00:11 +04:00
|
|
|
tile.position.y + 40
|
|
|
|
);
|
|
|
|
drawer.context.fillText(
|
|
|
|
"Order: " + i + " of " + count,
|
2013-06-19 21:33:25 +04:00
|
|
|
tile.position.x + 10,
|
2013-01-24 08:00:11 +04:00
|
|
|
tile.position.y + 50
|
|
|
|
);
|
|
|
|
drawer.context.fillText(
|
|
|
|
"Size: " + tile.size.toString(),
|
2013-06-19 21:33:25 +04:00
|
|
|
tile.position.x + 10,
|
2013-01-24 08:00:11 +04:00
|
|
|
tile.position.y + 60
|
|
|
|
);
|
|
|
|
drawer.context.fillText(
|
|
|
|
"Position: " + tile.position.toString(),
|
2013-06-19 21:33:25 +04:00
|
|
|
tile.position.x + 10,
|
2013-01-24 08:00:11 +04:00
|
|
|
tile.position.y + 70
|
|
|
|
);
|
2013-03-01 17:14:35 +04:00
|
|
|
drawer.context.restore();
|
2012-02-01 00:59:09 +04:00
|
|
|
}
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2012-01-12 03:32:17 +04:00
|
|
|
|
2013-01-24 08:00:11 +04:00
|
|
|
|
2011-12-06 07:50:25 +04:00
|
|
|
}( OpenSeadragon ));
|