2011-11-23 11:07:29 -08:00
|
|
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Android code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2009-2010
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Patrick Walton <pcwalton@mozilla.com>
|
|
|
|
* Chris Lord <chrislord.net@gmail.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
package org.mozilla.gecko.gfx;
|
|
|
|
|
|
|
|
import android.graphics.Point;
|
2011-11-23 11:07:47 -08:00
|
|
|
import android.graphics.PointF;
|
2011-11-23 11:07:29 -08:00
|
|
|
import android.graphics.Rect;
|
2011-11-23 11:07:47 -08:00
|
|
|
import android.graphics.RectF;
|
2012-01-06 16:42:48 -08:00
|
|
|
import android.util.DisplayMetrics;
|
2011-12-07 10:44:36 -08:00
|
|
|
import org.mozilla.gecko.FloatUtils;
|
2012-01-06 16:42:48 -08:00
|
|
|
import org.mozilla.gecko.GeckoApp;
|
2011-11-23 11:07:47 -08:00
|
|
|
import org.mozilla.gecko.gfx.FloatSize;
|
2011-12-15 15:45:52 -08:00
|
|
|
import org.mozilla.gecko.gfx.IntSize;
|
2011-11-23 11:07:29 -08:00
|
|
|
import org.mozilla.gecko.gfx.LayerController;
|
2011-11-23 11:07:47 -08:00
|
|
|
import org.mozilla.gecko.gfx.RectUtils;
|
2011-11-23 11:07:29 -08:00
|
|
|
import org.json.JSONException;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ViewportMetrics manages state and contains some utility functions related to
|
|
|
|
* the page viewport for the Gecko layer client to use.
|
|
|
|
*/
|
|
|
|
public class ViewportMetrics {
|
2011-12-09 19:58:10 -08:00
|
|
|
private static final String LOGTAG = "GeckoViewportMetrics";
|
|
|
|
|
2011-11-23 11:07:47 -08:00
|
|
|
private FloatSize mPageSize;
|
2012-04-12 13:00:56 -07:00
|
|
|
private FloatSize mCssPageSize;
|
2011-11-23 11:07:47 -08:00
|
|
|
private RectF mViewportRect;
|
|
|
|
private float mZoomFactor;
|
2011-11-23 11:07:29 -08:00
|
|
|
|
|
|
|
public ViewportMetrics() {
|
2012-01-06 16:42:48 -08:00
|
|
|
DisplayMetrics metrics = new DisplayMetrics();
|
|
|
|
GeckoApp.mAppContext.getWindowManager().getDefaultDisplay().getMetrics(metrics);
|
|
|
|
|
|
|
|
mPageSize = new FloatSize(metrics.widthPixels, metrics.heightPixels);
|
2012-04-12 13:00:56 -07:00
|
|
|
mCssPageSize = new FloatSize(metrics.widthPixels, metrics.heightPixels);
|
2012-01-06 16:42:48 -08:00
|
|
|
mViewportRect = new RectF(0, 0, metrics.widthPixels, metrics.heightPixels);
|
2011-11-23 11:07:47 -08:00
|
|
|
mZoomFactor = 1.0f;
|
2011-11-23 11:07:29 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
public ViewportMetrics(ViewportMetrics viewport) {
|
2011-11-23 11:07:47 -08:00
|
|
|
mPageSize = new FloatSize(viewport.getPageSize());
|
2012-04-12 13:00:56 -07:00
|
|
|
mCssPageSize = new FloatSize(viewport.getCssPageSize());
|
2011-11-23 11:07:47 -08:00
|
|
|
mViewportRect = new RectF(viewport.getViewport());
|
|
|
|
mZoomFactor = viewport.getZoomFactor();
|
2011-11-23 11:07:29 -08:00
|
|
|
}
|
|
|
|
|
2012-03-02 11:31:27 -08:00
|
|
|
public ViewportMetrics(ImmutableViewportMetrics viewport) {
|
|
|
|
mPageSize = new FloatSize(viewport.pageSizeWidth, viewport.pageSizeHeight);
|
2012-04-12 13:00:56 -07:00
|
|
|
mCssPageSize = new FloatSize(viewport.cssPageSizeWidth, viewport.cssPageSizeHeight);
|
2012-03-02 11:31:27 -08:00
|
|
|
mViewportRect = new RectF(viewport.viewportRectLeft,
|
|
|
|
viewport.viewportRectTop,
|
|
|
|
viewport.viewportRectRight,
|
|
|
|
viewport.viewportRectBottom);
|
|
|
|
mZoomFactor = viewport.zoomFactor;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-23 11:07:29 -08:00
|
|
|
public ViewportMetrics(JSONObject json) throws JSONException {
|
2011-11-23 11:07:47 -08:00
|
|
|
float x = (float)json.getDouble("x");
|
|
|
|
float y = (float)json.getDouble("y");
|
|
|
|
float width = (float)json.getDouble("width");
|
|
|
|
float height = (float)json.getDouble("height");
|
|
|
|
float pageWidth = (float)json.getDouble("pageWidth");
|
|
|
|
float pageHeight = (float)json.getDouble("pageHeight");
|
2012-04-12 13:00:56 -07:00
|
|
|
float cssPageWidth = (float)json.getDouble("cssPageWidth");
|
|
|
|
float cssPageHeight = (float)json.getDouble("cssPageHeight");
|
2011-11-23 11:07:47 -08:00
|
|
|
float zoom = (float)json.getDouble("zoom");
|
|
|
|
|
|
|
|
mPageSize = new FloatSize(pageWidth, pageHeight);
|
2012-04-12 13:00:56 -07:00
|
|
|
mCssPageSize = new FloatSize(cssPageWidth, cssPageHeight);
|
2011-11-23 11:07:47 -08:00
|
|
|
mViewportRect = new RectF(x, y, x + width, y + height);
|
|
|
|
mZoomFactor = zoom;
|
2011-11-23 11:07:29 -08:00
|
|
|
}
|
|
|
|
|
2011-11-23 11:07:47 -08:00
|
|
|
public PointF getOrigin() {
|
|
|
|
return new PointF(mViewportRect.left, mViewportRect.top);
|
2011-11-23 11:07:29 -08:00
|
|
|
}
|
|
|
|
|
2011-11-23 11:07:47 -08:00
|
|
|
public FloatSize getSize() {
|
|
|
|
return new FloatSize(mViewportRect.width(), mViewportRect.height());
|
2011-11-23 11:07:29 -08:00
|
|
|
}
|
|
|
|
|
2011-11-23 11:07:47 -08:00
|
|
|
public RectF getViewport() {
|
2011-11-23 11:07:29 -08:00
|
|
|
return mViewportRect;
|
|
|
|
}
|
|
|
|
|
2012-04-14 10:18:10 -07:00
|
|
|
public RectF getCssViewport() {
|
|
|
|
return RectUtils.scale(mViewportRect, 1/mZoomFactor);
|
|
|
|
}
|
|
|
|
|
2011-11-23 11:07:29 -08:00
|
|
|
/** Returns the viewport rectangle, clamped within the page-size. */
|
2011-11-23 11:07:47 -08:00
|
|
|
public RectF getClampedViewport() {
|
|
|
|
RectF clampedViewport = new RectF(mViewportRect);
|
2011-11-23 11:07:29 -08:00
|
|
|
|
|
|
|
// While the viewport size ought to never exceed the page size, we
|
|
|
|
// do the clamping in this order to make sure that the origin is
|
|
|
|
// never negative.
|
|
|
|
if (clampedViewport.right > mPageSize.width)
|
|
|
|
clampedViewport.offset(mPageSize.width - clampedViewport.right, 0);
|
|
|
|
if (clampedViewport.left < 0)
|
|
|
|
clampedViewport.offset(-clampedViewport.left, 0);
|
|
|
|
|
|
|
|
if (clampedViewport.bottom > mPageSize.height)
|
|
|
|
clampedViewport.offset(0, mPageSize.height - clampedViewport.bottom);
|
|
|
|
if (clampedViewport.top < 0)
|
|
|
|
clampedViewport.offset(0, -clampedViewport.top);
|
|
|
|
|
|
|
|
return clampedViewport;
|
|
|
|
}
|
|
|
|
|
2011-11-23 11:07:47 -08:00
|
|
|
public FloatSize getPageSize() {
|
2011-11-23 11:07:29 -08:00
|
|
|
return mPageSize;
|
|
|
|
}
|
|
|
|
|
2012-04-12 13:00:56 -07:00
|
|
|
public FloatSize getCssPageSize() {
|
|
|
|
return mCssPageSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-23 11:07:47 -08:00
|
|
|
public float getZoomFactor() {
|
|
|
|
return mZoomFactor;
|
|
|
|
}
|
|
|
|
|
2012-04-12 13:00:56 -07:00
|
|
|
public void setPageSize(FloatSize pageSize, FloatSize cssPageSize) {
|
2011-11-23 11:07:29 -08:00
|
|
|
mPageSize = pageSize;
|
2012-04-12 13:00:56 -07:00
|
|
|
mCssPageSize = cssPageSize;
|
2011-11-23 11:07:29 -08:00
|
|
|
}
|
|
|
|
|
2011-11-23 11:07:47 -08:00
|
|
|
public void setViewport(RectF viewport) {
|
2011-11-23 11:07:29 -08:00
|
|
|
mViewportRect = viewport;
|
|
|
|
}
|
|
|
|
|
2011-11-23 11:07:47 -08:00
|
|
|
public void setOrigin(PointF origin) {
|
2011-11-23 11:07:29 -08:00
|
|
|
mViewportRect.set(origin.x, origin.y,
|
|
|
|
origin.x + mViewportRect.width(),
|
|
|
|
origin.y + mViewportRect.height());
|
|
|
|
}
|
|
|
|
|
2011-11-23 11:07:47 -08:00
|
|
|
public void setSize(FloatSize size) {
|
2011-11-23 11:07:29 -08:00
|
|
|
mViewportRect.right = mViewportRect.left + size.width;
|
|
|
|
mViewportRect.bottom = mViewportRect.top + size.height;
|
|
|
|
}
|
|
|
|
|
2011-11-23 11:07:47 -08:00
|
|
|
public void setZoomFactor(float zoomFactor) {
|
|
|
|
mZoomFactor = zoomFactor;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This will set the zoom factor and re-scale page-size and viewport offset
|
|
|
|
* accordingly. The given focus will remain at the same point on the screen
|
|
|
|
* after scaling.
|
|
|
|
*/
|
|
|
|
public void scaleTo(float newZoomFactor, PointF focus) {
|
2012-04-12 13:00:56 -07:00
|
|
|
// mCssPageSize is invariant, since we're setting the scale factor
|
|
|
|
// here. The page size is based on the CSS page size.
|
|
|
|
mPageSize = mCssPageSize.scale(newZoomFactor);
|
2011-11-23 11:07:47 -08:00
|
|
|
|
2012-04-12 13:00:56 -07:00
|
|
|
float scaleFactor = newZoomFactor / mZoomFactor;
|
2011-11-23 11:07:47 -08:00
|
|
|
PointF origin = getOrigin();
|
2012-04-12 13:00:56 -07:00
|
|
|
|
2011-11-23 11:07:47 -08:00
|
|
|
origin.offset(focus.x, focus.y);
|
|
|
|
origin = PointUtils.scale(origin, scaleFactor);
|
|
|
|
origin.offset(-focus.x, -focus.y);
|
2012-04-12 13:00:56 -07:00
|
|
|
|
2011-11-23 11:07:47 -08:00
|
|
|
setOrigin(origin);
|
|
|
|
|
|
|
|
mZoomFactor = newZoomFactor;
|
2011-11-23 11:07:29 -08:00
|
|
|
}
|
|
|
|
|
2011-12-07 10:44:36 -08:00
|
|
|
/*
|
|
|
|
* Returns the viewport metrics that represent a linear transition between `from` and `to` at
|
|
|
|
* time `t`, which is on the scale [0, 1). This function interpolates the viewport rect, the
|
|
|
|
* page size, the offset, and the zoom factor.
|
|
|
|
*/
|
|
|
|
public ViewportMetrics interpolate(ViewportMetrics to, float t) {
|
|
|
|
ViewportMetrics result = new ViewportMetrics();
|
|
|
|
result.mPageSize = mPageSize.interpolate(to.mPageSize, t);
|
2012-04-12 13:00:56 -07:00
|
|
|
result.mCssPageSize = mCssPageSize.interpolate(to.mCssPageSize, t);
|
2011-12-07 10:44:36 -08:00
|
|
|
result.mZoomFactor = FloatUtils.interpolate(mZoomFactor, to.mZoomFactor, t);
|
|
|
|
result.mViewportRect = RectUtils.interpolate(mViewportRect, to.mViewportRect, t);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-12-16 14:01:02 -08:00
|
|
|
public boolean fuzzyEquals(ViewportMetrics other) {
|
|
|
|
return mPageSize.fuzzyEquals(other.mPageSize)
|
2012-04-12 13:00:56 -07:00
|
|
|
&& mCssPageSize.fuzzyEquals(other.mCssPageSize)
|
2011-12-16 14:01:02 -08:00
|
|
|
&& RectUtils.fuzzyEquals(mViewportRect, other.mViewportRect)
|
|
|
|
&& FloatUtils.fuzzyEquals(mZoomFactor, other.mZoomFactor);
|
|
|
|
}
|
|
|
|
|
2011-11-23 11:07:29 -08:00
|
|
|
public String toJSON() {
|
2012-01-20 21:14:03 -08:00
|
|
|
// Round off height and width. Since the height and width are the size of the screen, it
|
|
|
|
// makes no sense to send non-integer coordinates to Gecko.
|
|
|
|
int height = Math.round(mViewportRect.height());
|
|
|
|
int width = Math.round(mViewportRect.width());
|
|
|
|
|
2012-01-20 06:30:27 -08:00
|
|
|
StringBuffer sb = new StringBuffer(256);
|
|
|
|
sb.append("{ \"x\" : ").append(mViewportRect.left)
|
|
|
|
.append(", \"y\" : ").append(mViewportRect.top)
|
2012-01-20 21:14:03 -08:00
|
|
|
.append(", \"width\" : ").append(width)
|
|
|
|
.append(", \"height\" : ").append(height)
|
2012-01-20 06:30:27 -08:00
|
|
|
.append(", \"pageWidth\" : ").append(mPageSize.width)
|
|
|
|
.append(", \"pageHeight\" : ").append(mPageSize.height)
|
2012-04-12 13:00:56 -07:00
|
|
|
.append(", \"cssPageWidth\" : ").append(mCssPageSize.width)
|
|
|
|
.append(", \"cssPageHeight\" : ").append(mCssPageSize.height)
|
2012-01-20 06:30:27 -08:00
|
|
|
.append(", \"zoom\" : ").append(mZoomFactor)
|
|
|
|
.append(" }");
|
|
|
|
return sb.toString();
|
2011-11-23 11:07:29 -08:00
|
|
|
}
|
2011-12-19 19:28:48 -08:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
StringBuffer buff = new StringBuffer(128);
|
|
|
|
buff.append("v=").append(mViewportRect.toString())
|
|
|
|
.append(" p=").append(mPageSize.toString())
|
2012-04-12 13:00:56 -07:00
|
|
|
.append(" c=").append(mCssPageSize.toString())
|
2012-02-20 13:51:37 -08:00
|
|
|
.append(" z=").append(mZoomFactor);
|
2011-12-19 19:28:48 -08:00
|
|
|
return buff.toString();
|
|
|
|
}
|
2011-11-23 11:07:29 -08:00
|
|
|
}
|
|
|
|
|