/hg/gfx-test: Added new class containing static methods (functio...
ptisnovs at icedtea.classpath.org
ptisnovs at icedtea.classpath.org
Fri Sep 23 09:20:36 PDT 2011
changeset 6cd725fbe450 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=6cd725fbe450
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Fri Sep 23 18:22:29 2011 +0200
Added new class containing static methods (functions) which will be
used by test suites containing various CAG operations.
diffstat:
ChangeLog | 7 +
Makefile | 1 +
src/org/gfxtest/framework/CommonCAGOperations.java | 605 +++++++
src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java | 757 +++++++++-
4 files changed, 1361 insertions(+), 9 deletions(-)
diffs (truncated from 1408 to 500 lines):
diff -r bc3c1c37b226 -r 6cd725fbe450 ChangeLog
--- a/ChangeLog Thu Sep 22 17:59:04 2011 +0200
+++ b/ChangeLog Fri Sep 23 18:22:29 2011 +0200
@@ -1,3 +1,10 @@
+2011-09-23 Pavel Tisnovsky <ptisnovs at redhat.com>
+
+ * Makefile: added new class to compile
+ * src/org/gfxtest/framework/CommonCAGOperations.java:
+ Added new class containing static methods (functions) which will be
+ used by test suites containing various CAG operations.
+
2011-09-22 Pavel Tisnovsky <ptisnovs at redhat.com>
* src/org/gfxtest/testsuites/CAGOperationsCircleRectangleOps.java:
diff -r bc3c1c37b226 -r 6cd725fbe450 Makefile
--- a/Makefile Thu Sep 22 17:59:04 2011 +0200
+++ b/Makefile Fri Sep 23 18:22:29 2011 +0200
@@ -75,6 +75,7 @@
$(CLASSES)/$(FRAMEWORK_DIR)/annotations/Transformations.class \
$(CLASSES)/$(FRAMEWORK_DIR)/annotations/Transformation.class \
$(CLASSES)/$(FRAMEWORK_DIR)/annotations/Zoom.class \
+ $(CLASSES)/$(FRAMEWORK_DIR)/CommonCAGOperations.class \
$(CLASSES)/$(FRAMEWORK_DIR)/CommonRenderingStyles.class \
$(CLASSES)/$(FRAMEWORK_DIR)/CommonShapesRenderer.class \
$(CLASSES)/$(FRAMEWORK_DIR)/EntityRenderingStyle.class \
diff -r bc3c1c37b226 -r 6cd725fbe450 src/org/gfxtest/framework/CommonCAGOperations.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/org/gfxtest/framework/CommonCAGOperations.java Fri Sep 23 18:22:29 2011 +0200
@@ -0,0 +1,605 @@
+/*
+ Java gfx-test framework
+
+ Copyright (C) 2010, 2011 Red Hat
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+IcedTea is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package org.gfxtest.framework;
+
+import java.awt.geom.Area;
+import java.awt.geom.Ellipse2D;
+import java.awt.geom.Rectangle2D;
+
+/**
+ * This class contains static methods used by various CAG operations tests.
+ * (CAG = Constructive Area Geometry)
+ *
+ * @author Pavel Tisnovsky
+ */
+public class CommonCAGOperations
+{
+
+ /**
+ * Compute radius of circle from the position of its center point in an
+ * image size (width and height).
+ *
+ * @param xc
+ * x-coordinate of the center of the test image.
+ * @param y
+ * y-coordinate of the center of the test image.
+ * @return radius of circle
+ */
+ private static int computeRadiusForOverlappingCircle(int xc, int yc)
+ {
+ return ((xc > yc ? yc : xc) << 1) / 3;
+ }
+
+ /**
+ * Compute size of the rectangle from the position of center point in an
+ * image.
+ *
+ * @param xc
+ * x-coordinate of the center of the test image.
+ * @param y
+ * y-coordinate of the center of the test image.
+ * @return size of the rectangle
+ */
+ private static int computeSizeForOverlappingRectangle(int xc, int yc)
+ {
+ return (xc > yc ? yc : xc) >> 1;
+ }
+
+ /**
+ * Compute size of the rectangle or circle from the position of center point
+ * in an image.
+ *
+ * @param xc
+ * x-coordinate of the center of the test image.
+ * @param y
+ * y-coordinate of the center of the test image.
+ * @return size of the circle or rectangle
+ */
+ private static int computeSizeOfCircleOrRectangle(int xc, int yc)
+ {
+ return (xc > yc ? yc : xc) >> 1;
+ }
+
+ /**
+ * Create circular area i.e. area consisting of just one circle.
+ *
+ * @param xc
+ * the X coordinate of the center of circle
+ * @param yc
+ * the Y coordinate of the center of circle
+ * @param radius
+ * radius of circle
+ * @return newly created area containing one circle
+ */
+ private static Area createCircularArea(int xc, int yc, int radius)
+ {
+ Ellipse2D circle = new Ellipse2D.Double(xc - radius, yc - radius, radius << 1, radius << 1);
+ return new Area(circle);
+ }
+
+ /**
+ * Create rectangular area i.e. area consisting of just one rectangle.
+ *
+ * @param xc
+ * the X coordinate of the center of rectangle
+ * @param yc
+ * the Y coordinate of the center of rectangle
+ * @param size
+ * of rectangle
+ * @return newly created area containing one rectangle
+ */
+ private static Area createRectangularArea(int xc, int yc, int size)
+ {
+ Rectangle2D rectangle = new Rectangle2D.Double(xc - size, yc - size, size << 1, size << 1);
+ return new Area(rectangle);
+ }
+
+ /**
+ * Create area composed of only one circle. This circle is placed on the
+ * left side of the image.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one circle
+ */
+ private static Area createFirstOverlappingCircularArea(TestImage image)
+ {
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
+ int radius = computeRadiusForOverlappingCircle(xc, yc);
+ // move circle to the left side of image
+ int x1 = xc - 3 * (radius >> 2);
+ return createCircularArea(x1, yc, radius);
+ }
+
+ /**
+ * Create area composed of only one circle. This circle is placed on the
+ * right side of the image.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one circle
+ */
+ private static Area createSecondOverlappingCircularArea(TestImage image)
+ {
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
+ int radius = computeRadiusForOverlappingCircle(xc, yc);
+ // move circle to the right side of image
+ int x2 = xc + 3 * (radius >> 2);
+ return createCircularArea(x2, yc, radius);
+ }
+
+ /**
+ * Create area composed of only one rectangle. This rectangle is placed on
+ * the upper left side of the image.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one rectangle
+ */
+ private static Area createFirstOverlappingRectangularArea(TestImage image)
+ {
+ // compute center of the image
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
+ // compute size of the rectangle
+ int size = computeSizeForOverlappingRectangle(xc, yc);
+ int x = xc - 3 * (size >> 2);
+ // it's better to align rectangle sides with the grid
+ x = x + (x % image.getGrid());
+ int y = yc - (size >> 1);
+ return createRectangularArea(x, y, size);
+ }
+
+ /**
+ * Create area composed of only one rectangle. This rectangle is placed on
+ * the lower right side of the image.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one rectangle
+ */
+ private static Area createSecondOverlappingRectangularArea(TestImage image)
+ {
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
+ // compute size of the rectangle
+ int size = computeSizeForOverlappingRectangle(xc, yc);
+ int x = xc + 3 * (size >> 2);
+ // it's better to align rectangle sides with the grid
+ x = x - (x % image.getGrid());
+ int y = yc + (size >> 1);
+ return createRectangularArea(x, y, size);
+ }
+
+ /**
+ * Create area composed of only one rectangle. This rectangle is placed on
+ * the center of the image.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one rectangle
+ */
+ private static Area createCenteredRectangularArea(TestImage image)
+ {
+ // compute center of the image
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
+ // compute size of the rectangle
+ int size = 3 * computeSizeOfCircleOrRectangle(xc, yc) / 2 - 10;
+ // it's better to align rectangle sides with the grid
+ return createRectangularArea(xc, yc, size);
+ }
+
+ /**
+ * Create area composed of only one circle. This circle is placed on
+ * the center of the image and its radius is bigger than the length
+ * of rectangle side(s).
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one circle
+ */
+ private static Area createBiggerCenteredCircularArea(TestImage image)
+ {
+ // compute center of the image
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
+ // compute size of the circle
+ int size = computeSizeOfCircleOrRectangle(xc, yc) * 5 / 3;
+ return createCircularArea(xc, yc, size);
+ }
+
+ /**
+ * Create area composed of only one circle. This circle is placed on
+ * the center of the image and its radius is smaller than the length
+ * of rectangle side(s).
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area containing one circle
+ */
+ private static Area createSmallerCenteredCircularArea(TestImage image)
+ {
+ // compute center of the image
+ int xc = image.getCenterX();
+ int yc = image.getCenterY();
+ // compute size of the circle
+ int size = computeSizeOfCircleOrRectangle(xc, yc);
+ return createCircularArea(xc, yc, size);
+ }
+
+ /**
+ * Create new area composed from two overlapping circles using union
+ * operator.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return new area composed of two circles
+ */
+ public static Area createAreaFromTwoOverlappingCirclesUsingUnionOperator(TestImage image)
+ {
+ Area circle1Area = createFirstOverlappingCircularArea(image);
+ Area circle2Area = createSecondOverlappingCircularArea(image);
+ Area area = new Area();
+ area.add(circle1Area);
+ area.add(circle2Area);
+ return area;
+ }
+
+ /**
+ * Create new area composed from two overlapping circles using subtract
+ * operator.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return new area composed of two circles
+ */
+ public static Area createAreaFromTwoOverlappingCirclesUsingSubtractOperator(TestImage image)
+ {
+ Area circle1Area = createFirstOverlappingCircularArea(image);
+ Area circle2Area = createSecondOverlappingCircularArea(image);
+ Area area = new Area();
+ area.add(circle1Area);
+ area.subtract(circle2Area);
+ return area;
+ }
+
+ /**
+ * Create new area composed from two overlapping circles using subtract
+ * operator.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return new area composed of two circles
+ */
+ public static Area createAreaFromTwoOverlappingCirclesUsingInverseSubtractOperator(TestImage image)
+ {
+ Area circle1Area = createFirstOverlappingCircularArea(image);
+ Area circle2Area = createSecondOverlappingCircularArea(image);
+ Area area = new Area();
+ area.add(circle2Area);
+ area.subtract(circle1Area);
+ return area;
+ }
+
+ /**
+ * Create new area composed from two overlapping circles using intersect
+ * operator.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return new area composed of two circles
+ */
+ public static Area createAreaFromTwoOverlappingCirclesUsingIntersectOperator(TestImage image)
+ {
+ Area circle1Area = createFirstOverlappingCircularArea(image);
+ Area circle2Area = createSecondOverlappingCircularArea(image);
+ Area area = new Area();
+ area.add(circle1Area);
+ area.intersect(circle2Area);
+ return area;
+ }
+
+ /**
+ * Create new area composed from two overlapping circles using XOR operator.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return new area composed of two circles
+ */
+ public static Area createAreaFromTwoOverlappingCirclesUsingXorOperator(TestImage image)
+ {
+ Area circle1Area = createFirstOverlappingCircularArea(image);
+ Area circle2Area = createSecondOverlappingCircularArea(image);
+ Area area = new Area();
+ area.add(circle1Area);
+ area.exclusiveOr(circle2Area);
+ return area;
+ }
+
+ /**
+ * Create new area composed from two rectangles using union operator.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return new area composed of two rectangles
+ */
+ public static Area createAreaFromTwoOverlappingRectanglesUsingUnionOperator(TestImage image)
+ {
+ Area rectangle1Area = createFirstOverlappingRectangularArea(image);
+ Area rectangle2Area = createSecondOverlappingRectangularArea(image);
+ Area area = new Area();
+ area.add(rectangle1Area);
+ area.add(rectangle2Area);
+ return area;
+ }
+
+ /**
+ * Create new area composed from two rectangles using subtract operator.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return new area composed of two rectangles
+ */
+ public static Area createAreaFromTwoOverlappingRectanglesUsingSubtractOperator(TestImage image)
+ {
+ Area rectangle1Area = createFirstOverlappingRectangularArea(image);
+ Area rectangle2Area = createSecondOverlappingRectangularArea(image);
+ Area area = new Area();
+ area.add(rectangle1Area);
+ area.subtract(rectangle2Area);
+ return area;
+ }
+
+ /**
+ * Create new area composed from two rectangles using subtract operator.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return new area composed of two rectangles
+ */
+ public static Area createAreaFromTwoOverlappingRectanglesUsingInverseSubtractOperator(TestImage image)
+ {
+ Area rectangle1Area = createFirstOverlappingRectangularArea(image);
+ Area rectangle2Area = createSecondOverlappingRectangularArea(image);
+ Area area = new Area();
+ area.add(rectangle2Area);
+ area.subtract(rectangle1Area);
+ return area;
+ }
+
+ /**
+ * Create new area composed from two rectangles using intersect operator.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return new area composed of two rectangles
+ */
+ public static Area createAreaFromTwoOverlappingRectanglesUsingIntersectOperator(TestImage image)
+ {
+ Area rectangle1Area = createFirstOverlappingRectangularArea(image);
+ Area rectangle2Area = createSecondOverlappingRectangularArea(image);
+ Area area = new Area();
+ area.add(rectangle1Area);
+ area.intersect(rectangle2Area);
+ return area;
+ }
+
+ /**
+ * Create new area composed from two rectangles using XOR operator.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return new area composed of two rectangles
+ */
+ public static Area createAreaFromTwoOverlappingRectanglesUsingXorOperator(TestImage image)
+ {
+ Area rectangle1Area = createFirstOverlappingRectangularArea(image);
+ Area rectangle2Area = createSecondOverlappingRectangularArea(image);
+ Area area = new Area();
+ area.add(rectangle2Area);
+ area.exclusiveOr(rectangle1Area);
+ return area;
+ }
+
+ /**
+ * Create new area constructed from bigger circle and rectangle using union
+ * operation.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area
+ */
+ public static Area createAreaFromBiggerCircleAndRectangleUsingUnionOperator(TestImage image)
+ {
+ Area area = new Area();
+ area.add(createBiggerCenteredCircularArea(image));
+ area.add(createCenteredRectangularArea(image));
+ return area;
+ }
+
+ /**
+ * Create new area constructed from bigger circle and rectangle using intersect
+ * operation.
+ *
+ * @param image
+ * image to which area is to be drawn
+ * @return newly created area
+ */
+ public static Area createAreaFromBiggerCircleAndRectangleUsingIntersectOperator(TestImage image)
+ {
+ Area area = new Area();
More information about the distro-pkg-dev
mailing list