
2007-05-31 Matthias Klose <doko@ubuntu.com> * javax/management/NotificationBroadcasterSupport.java (getNotificationInfo): Add cast. * native/jni/qt-peer/Makefile.am (AM_CXXFLAGS): Add libstdc++ include directories. * native/jni/qt-peer/Makefile.in: Regenerate. libjava/ChangeLog: 2007-06-03 Matthias Klose <doko@ubuntu.com> * java/io/natFileWin32.cc (setFilePermissions): New (stub only). _access: Handle EXEC query, stub only. 2007-06-03 Matthias Klose <doko@ubuntu.com> Merged from classpath: * gnu/java/nio/SelectorProviderImpl.java: Whitespace merge. * java/lang/System.java(inheritedChannel): New. * java/lang/Character.java: Remove stray`;'. * java/net/MulticastSocket.java: Merged. * java/text/DateFormatSymbols.java(getInstance): New, comment updates. * java/text/Collator.java(getInstance): Merged. * java/util/Calendar.java: New attributes ALL_STYLES, SHORT, LONG. getDisplayName, getDisplayNames: New. * java/util/logging/Logger.java: Merged. * Regenerate .class and .h files. 2007-06-03 Matthias Klose <doko@ubuntu.com> * java/io/File.java: Merge with classpath-0.95, new method setFilePermissions, new attribute EXEC. * java/io/natFilePosix.cc (setFilePermissions): New. _access: Handle EXEC query. * classpath/lib/java/io/File.class, java/io/File.h: Regenerate. 2007-06-03 Matthias Klose <doko@ubuntu.com> Imported GNU Classpath 0.95. * classpath/Makefile.in, classpath/native/jni/midi-dssi/Makefile.in, classpath/native/jni/classpath/Makefile.in, classpath/native/jni/Makefile.in, classpath/native/jni/gconf-peer/Makefile.in, classpath/native/jni/java-io/Makefile.in, classpath/native/jni/native-lib/Makefile.in, classpath/native/jni/java-util/Makefile.in, classpath/native/jni/midi-alsa/Makefile.in, classpath/native/jni/java-lang/Makefile.in, classpath/native/jni/java-nio/Makefile.in, classpath/native/jni/java-net/Makefile.in, classpath/native/jni/xmlj/Makefile.in, classpath/native/jni/qt-peer/Makefile.in, classpath/native/jni/gtk-peer/Makefile.in, classpath/native/Makefile.in, classpath/native/jawt/Makefile.in, classpath/native/fdlibm/Makefile.in, classpath/native/plugin/Makefile.in, classpath/resource/Makefile.in, classpath/scripts/Makefile.in, classpath/tools/Makefile.in, classpath/doc/Makefile.in, classpath/doc/api/Makefile.in, classpath/lib/Makefile.in, classpath/external/Makefile.in, classpath/external/jsr166/Makefile.in, classpath/external/sax/Makefile.in, classpath/external/w3c_dom/Makefile.in, classpath/external/relaxngDatatype/Makefile.in, classpath/include/Makefile.in, classpath/examples/Makefile.in: Regenerate. * classpath/config.guess, classpath/config.sub, classpath/ltmain.sh : Update. * classpath/configure, classpath/depcomp, classpath/missing, classpath/aclocal.m4, classpath/install-sh: Regenerate. * gnu/classpath/Configuration.java (CLASSPATH_VERSION): Now 0.95. * sources.am: Regenerate. * Makefile.in: Regenerate. * Update the .class files and generated CNI header files, add new .class and generated CNI header files. * Remove generated files for removed java source files: classpath/gnu/java/net/BASE64.java, classpath/gnu/java/security/util/Base64.java, classpath/gnu/java/awt/peer/gtk/GThreadMutex.java, classpath/gnu/java/awt/peer/gtk/GThreadNativeMethodRunner.java, classpath/gnu/java/awt/font/autofit/Scaler.java, classpath/gnu/classpath/jdwp/util/Value.java, classpath/gnu/javax/net/ssl/Base64.java. * Remove empty directories. * Makefile.am(nat_source_files): Add natVMOperatingSystemMXBeanImpl.cc. * java/lang/Class.java(setAccessible): Merge from classpath. * java/util/Locale.java: Remove. * gnu/java/lang/management/VMOperatingSystemMXBeanImpl.java, gnu/java/lang/management/natVMOperatingSystemMXBeanImpl.cc: New. * gcj/javaprims.h: Update class declarations. * scripts/classes.pl: Update usage. * HACKING: Mention to build all peers. From-SVN: r125302
404 lines
11 KiB
Java
404 lines
11 KiB
Java
/* ScanlineConverter.java -- Rasterizes Shapes
|
|
Copyright (C) 2006 Free Software Foundation, Inc.
|
|
|
|
This file is part of GNU Classpath.
|
|
|
|
GNU Classpath 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.
|
|
|
|
GNU Classpath 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 GNU Classpath; 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 gnu.java.awt.java2d;
|
|
|
|
import gnu.java.math.Fixed;
|
|
|
|
import java.awt.Shape;
|
|
import java.awt.geom.AffineTransform;
|
|
import java.awt.geom.PathIterator;
|
|
|
|
/**
|
|
* Rasterizes {@link Shape} objects on an AbstractGraphics2D.
|
|
*/
|
|
final class ScanlineConverter
|
|
{
|
|
|
|
/**
|
|
* The number of digits to use for fixed point arithmetics.
|
|
*/
|
|
private static int FIXED_DIGITS = 6;
|
|
|
|
/**
|
|
* The fixed value for the number 1.
|
|
*/
|
|
private static int ONE = Fixed.fixedValue(FIXED_DIGITS, 1);
|
|
|
|
/**
|
|
* The actual number of scanlines.
|
|
*/
|
|
private int numScanlines;
|
|
|
|
/**
|
|
* The number of scanlines. This can contain more elements than we have
|
|
* scanlines. The real number of scanlines is stored in
|
|
* {@link #numScanlines}. This can also contain null values for empty
|
|
* scanlines.
|
|
*/
|
|
private Scanline[] scanlines;
|
|
|
|
/**
|
|
* The upper bounds which correspond to the index 0 in the scanline array.
|
|
*
|
|
* This is a fixed point value.
|
|
*/
|
|
private int upperBounds;
|
|
|
|
/**
|
|
* The resolution of the scanline converter.
|
|
*
|
|
* This is a fixed point value.
|
|
*/
|
|
private int resolution;
|
|
|
|
/**
|
|
* One half step according to the resolution. This is stored to avoid
|
|
* unnecessary operations during rendering.
|
|
*/
|
|
private int halfStep;
|
|
|
|
/**
|
|
* This is used in {@link #addShape(PathIterator, boolean)} to
|
|
* receive the coordinates of the path.
|
|
*/
|
|
private float[] coords;
|
|
|
|
/**
|
|
* The active edges.
|
|
*/
|
|
private ActiveEdges activeEdges;
|
|
|
|
private PolyEdge edgePool;
|
|
private PolyEdge edgePoolLast;
|
|
|
|
private int minY;
|
|
private int maxY;
|
|
|
|
/**
|
|
* Create a new ScanlineConverter.
|
|
*/
|
|
ScanlineConverter()
|
|
{
|
|
scanlines = new Scanline[10];
|
|
coords = new float[6];
|
|
activeEdges = new ActiveEdges();
|
|
edgePool = new PolyEdge();
|
|
edgePoolLast = edgePool;
|
|
}
|
|
|
|
/**
|
|
* Renders the specified shape using the specified clip and transform.
|
|
*
|
|
* @param shape the shape to render
|
|
* @param clip the clip
|
|
* @param trans the transform
|
|
*/
|
|
void renderShape(AbstractGraphics2D g, Shape shape, Shape clip,
|
|
AffineTransform trans, int res)
|
|
{
|
|
// Prepare resolution and upper bounds.
|
|
clear();
|
|
setResolution(res);
|
|
|
|
boolean haveClip = clip != null;
|
|
|
|
// Add shapes.
|
|
PathIterator path = shape.getPathIterator(trans, resolution);
|
|
addShape(path, false);
|
|
if (haveClip)
|
|
{
|
|
path= clip.getPathIterator(trans, resolution);
|
|
addShape(path, true);
|
|
}
|
|
|
|
setUpperBounds(minY);
|
|
|
|
PolyEdge edge = edgePool;
|
|
while (edge != edgePoolLast)
|
|
{
|
|
addEdge(edge);
|
|
edge = edge.poolNext;
|
|
}
|
|
|
|
int y = upperBounds;
|
|
int lastIndex = scanlineIndex(y - resolution);
|
|
int index;
|
|
activeEdges.clear();
|
|
// The render loop...
|
|
Scanline scanline = null;
|
|
while (y <= maxY)
|
|
{
|
|
// First we put together our list of active edges.
|
|
index = scanlineIndex(y);
|
|
// If we go outside the scanline array we still need to render the
|
|
// remaining edges until they end.
|
|
scanline = index < scanlines.length ? scanlines[index] : null;
|
|
if (scanline != null)
|
|
{
|
|
edge = scanline.getEdges();
|
|
while (edge != null)
|
|
{
|
|
activeEdges.add(edge);
|
|
edge = edge.scanlineNext;
|
|
}
|
|
}
|
|
|
|
// Then we intersect all active edges with the current scanline
|
|
// and sort them according to their intersection points.
|
|
activeEdges.intersectSortAndPack(FIXED_DIGITS, y + halfStep);
|
|
|
|
// Ok, now we can perform the actual scanlining.
|
|
boolean push = lastIndex != index;
|
|
doScanline(g, y, push, haveClip);
|
|
|
|
// Remove obsolete active edges.
|
|
//activeEdges.remove(y + halfStep);
|
|
|
|
// Go on with the next line...
|
|
y += resolution;
|
|
lastIndex = index;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Clears all scanlines.
|
|
*/
|
|
private void clear()
|
|
{
|
|
// Reset edge pool.
|
|
edgePoolLast = edgePool;
|
|
|
|
// Reset scanlines.
|
|
for (int i = scanlines.length - 1; i >= 0 ; i--)
|
|
{
|
|
Scanline sl = scanlines[i];
|
|
if (sl != null)
|
|
sl.clear();
|
|
}
|
|
|
|
// Reset bounds.
|
|
minY = Integer.MAX_VALUE;
|
|
maxY = Integer.MIN_VALUE;
|
|
}
|
|
|
|
/**
|
|
* Performs the scanlining on the current set of active edges.
|
|
*/
|
|
private void doScanline(AbstractGraphics2D g, int y, boolean push,
|
|
boolean haveClip)
|
|
{
|
|
// We begin outside the clip and outside the shape. We only draw when
|
|
// we are inside the clip AND inside the shape.
|
|
boolean inClip = ! haveClip;
|
|
boolean inShape = false;
|
|
PolyEdge lastEdge = null;
|
|
int numEdges = activeEdges.getNumActiveEdges();
|
|
for (int i = 0; i < numEdges; i++)
|
|
{
|
|
PolyEdge edge = activeEdges.getActiveEdge(i);
|
|
if (inClip && inShape)
|
|
{
|
|
assert lastEdge != null;
|
|
int x0 = lastEdge.xIntersection;
|
|
int x1 = edge.xIntersection;
|
|
assert x0 <= x1;
|
|
if (push)
|
|
{
|
|
if (resolution == ONE)
|
|
{
|
|
// Non-AA rendering.
|
|
g.fillScanline(Fixed.intValue(FIXED_DIGITS, x0),
|
|
Fixed.intValue(FIXED_DIGITS, x1 - resolution),
|
|
Fixed.intValue(FIXED_DIGITS, y));
|
|
}
|
|
else
|
|
{
|
|
// AA rendering.
|
|
// FIXME: Implement.
|
|
System.err.println("Implement AA rendering.");
|
|
}
|
|
}
|
|
}
|
|
if (edge.isClip)
|
|
inClip = ! inClip;
|
|
else
|
|
inShape = ! inShape;
|
|
|
|
lastEdge = edge;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Sets the resolution. A value of 0 rasterizes the shape normally without
|
|
* anti-aliasing. Greater values renders with a resolution of 2 ^ res.
|
|
*
|
|
* @param res the resolution
|
|
*/
|
|
private void setResolution(int res)
|
|
{
|
|
int one = Fixed.fixedValue(FIXED_DIGITS, 1);
|
|
resolution = one / (1 << res);
|
|
halfStep = resolution / 2;
|
|
}
|
|
|
|
/**
|
|
* Sets the vertical bounds of that shape that is beeing rendered.
|
|
*
|
|
* @param y0 the upper bounds
|
|
*/
|
|
private void setUpperBounds(int y0)
|
|
{
|
|
upperBounds = fit(y0);
|
|
}
|
|
|
|
/**
|
|
* Add a shape to the scanline converter.
|
|
*
|
|
* @param path
|
|
* @param clip
|
|
*/
|
|
private void addShape(PathIterator path, boolean clip)
|
|
{
|
|
int startX = 0;
|
|
int startY = 0;
|
|
int lastX = 0;
|
|
int lastY = 0;
|
|
while (! path.isDone())
|
|
{
|
|
int type = path.currentSegment(coords);
|
|
switch (type)
|
|
{
|
|
case PathIterator.SEG_MOVETO:
|
|
startX = lastX = Fixed.fixedValue(FIXED_DIGITS, coords[0]);
|
|
startY = lastY = Fixed.fixedValue(FIXED_DIGITS, coords[1]);
|
|
minY = Math.min(startY, minY);
|
|
maxY = Math.max(startY, maxY);
|
|
break;
|
|
case PathIterator.SEG_LINETO:
|
|
int x = Fixed.fixedValue(FIXED_DIGITS, coords[0]);
|
|
int y = Fixed.fixedValue(FIXED_DIGITS, coords[1]);
|
|
edgePoolAdd(lastX, lastY, x, y, clip);
|
|
lastX = x;
|
|
lastY = y;
|
|
minY = Math.min(lastY, minY);
|
|
maxY = Math.max(lastY, maxY);
|
|
break;
|
|
case PathIterator.SEG_CLOSE:
|
|
edgePoolAdd(lastX, lastY, startX, startY, clip);
|
|
lastX = startX;
|
|
lastY = startY;
|
|
break;
|
|
case PathIterator.SEG_CUBICTO:
|
|
case PathIterator.SEG_QUADTO:
|
|
default:
|
|
assert false;
|
|
}
|
|
path.next();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Adds an edge into the scanline array.
|
|
*/
|
|
private void addEdge(PolyEdge edge)
|
|
{
|
|
// Determine index.
|
|
int upper = Math.min(edge.y0, edge.y1);
|
|
// Fit to raster.
|
|
int index = scanlineIndex(upper);
|
|
// Grow array when necessary.
|
|
if (index >= scanlines.length)
|
|
{
|
|
int oldSize = scanlines.length;
|
|
int newSize = Math.max(oldSize + oldSize / 2 + 1, index + 10);
|
|
Scanline[] newScanlines = new Scanline[newSize];
|
|
System.arraycopy(scanlines, 0, newScanlines, 0, oldSize);
|
|
scanlines = newScanlines;
|
|
}
|
|
|
|
// Add edge.
|
|
if (scanlines[index] == null)
|
|
{
|
|
scanlines[index] = new Scanline();
|
|
}
|
|
scanlines[index].addEdge(edge);
|
|
}
|
|
|
|
/**
|
|
* Fits an Y coordinate to the grid.
|
|
*
|
|
* @param y the Y coordinate to fit
|
|
*
|
|
* @return the fitted Y coordinate
|
|
*/
|
|
private int fit(int y)
|
|
{
|
|
int val1 = Fixed.div(FIXED_DIGITS, y, resolution);
|
|
int rounded = Fixed.round(FIXED_DIGITS, val1);
|
|
return Fixed.div(FIXED_DIGITS, rounded, resolution);
|
|
}
|
|
|
|
/**
|
|
* Calculates the scanline index for the specified y coordinate.
|
|
*
|
|
* @param y the y coordinate as fixed point value
|
|
*
|
|
* @return the scanline index
|
|
*/
|
|
private int scanlineIndex(int y)
|
|
{
|
|
int fitted = fit(y);
|
|
// Cleverly skip the fixed point conversions here.
|
|
return (fitted - upperBounds)/ resolution;
|
|
}
|
|
|
|
private void edgePoolAdd(int x0, int y0, int x1, int y1, boolean clip)
|
|
{
|
|
// Don't need no horizontal edges.
|
|
if (y0 != y1)
|
|
{
|
|
edgePoolLast.init(FIXED_DIGITS, x0, y0, x1, y1, clip);
|
|
if (edgePoolLast.poolNext == null)
|
|
{
|
|
edgePoolLast.poolNext = new PolyEdge();
|
|
}
|
|
edgePoolLast = edgePoolLast.poolNext;
|
|
}
|
|
}
|
|
}
|