// Copyright 2002, FreeHEP. package org.freehep.graphicsio.emf.gdi; import java.awt.Point; import java.awt.Rectangle; import java.io.IOException; import org.freehep.graphicsio.emf.EMFInputStream; import org.freehep.graphicsio.emf.EMFOutputStream; import org.freehep.graphicsio.emf.EMFTag; /** * PolyPolygon16 TAG. * * @author Mark Donszelmann * @version $Id: PolyPolygon16.java,v 1.4 2009-08-17 21:44:44 murkle Exp $ */ public class PolyPolygon16 extends EMFTag { private Rectangle bounds; private int numberOfPolys; private int[] numberOfPoints; private Point[][] points; public PolyPolygon16() { super(91, 1); } public PolyPolygon16(Rectangle bounds, int numberOfPolys, int[] numberOfPoints, Point[][] points) { this(); this.bounds = bounds; this.numberOfPolys = numberOfPolys; this.numberOfPoints = numberOfPoints; this.points = points; } @Override public EMFTag read(int tagID, EMFInputStream emf, int len) throws IOException { Rectangle bounds = emf.readRECTL(); int np = emf.readDWORD(); /* int totalNumberOfPoints = */ emf.readDWORD(); int[] pc = new int[np]; Point[][] points = new Point[np][]; for (int i = 0; i < np; i++) { pc[i] = emf.readDWORD(); points[i] = new Point[pc[i]]; } for (int i = 0; i < np; i++) { points[i] = emf.readPOINTS(pc[i]); } PolyPolygon16 tag = new PolyPolygon16(bounds, np, pc, points); return tag; } @Override public void write(int tagID, EMFOutputStream emf) throws IOException { emf.writeRECTL(bounds); emf.writeDWORD(numberOfPolys); int c = 0; for (int i = 0; i < numberOfPolys; i++) { c += numberOfPoints[i]; } emf.writeDWORD(c); for (int i = 0; i < numberOfPolys; i++) { emf.writeDWORD(numberOfPoints[i]); } for (int i = 0; i < numberOfPolys; i++) { emf.writePOINTS(numberOfPoints[i], points[i]); } } @Override public String toString() { return super.toString() + "\n" + " bounds: " + bounds + "\n" + " #polys: " + numberOfPolys; } }