Files
secondo/Javagui/viewer/hoese/algebras/DsplprecPoints.java
2026-01-23 17:03:45 +08:00

189 lines
5.3 KiB
Java

//This file is part of SECONDO.
//Copyright (C) 2004, University in Hagen, Department of Computer Science,
//Database Systems for New Applications.
//SECONDO 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 of the License, or
//(at your option) any later version.
//SECONDO 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 SECONDO; if not, write to the Free Software
//Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package viewer.hoese.algebras;
import java.awt.geom.*;
import java.awt.*;
import sj.lang.ListExpr;
import java.util.*;
import viewer.*;
import viewer.hoese.*;
import tools.Reporter;
/**
* The displayclass of the points datatype.
*/
public class DsplprecPoints extends DisplayGraph {
Point2D.Double[] points=null;
Rectangle2D.Double bounds=null;
protected boolean defined;
/**
* Scans the representation of the points datatype and
* an array containing the points.
* The representation is a list of points which are given just
* by the two coordinates describing the position.
* @param value: the list representing this points value
*/
public void ScanValue (ListExpr value) {
err = true;
defined = false;
points = null;
bounds = null;
if(isUndefined(value)){
err=false;
defined = false;
return;
}
defined = true;
if(value.listLength()!=2){
return;
}
if(value.first().atomType()!=ListExpr.INT_ATOM){
return;
}
int scale = value.first().intValue();
if(scale<=0){
return;
}
value = value.second();
Vector<Point2D.Double> pointsV = new Vector<Point2D.Double>(20, 20);
while (!value.isEmpty()) {
ListExpr v = value.first();
value = value.rest();
if(v.listLength()!=2){
return;
}
Double X = Dsplprecise.getDouble(v.first(),false);
Double Y = Dsplprecise.getDouble(v.second(),false);
if(X==null || Y==null){
if(X==null){
System.out.println("cannot extract coord from " + v.first());
}
if(Y==null){
System.out.println("cannot extract coord from " + v.second());
}
return;
}
double x = X.doubleValue()/scale;
double y = Y.doubleValue()/scale;
if(!ProjectionManager.project(x,y,aPoint)){
return;
}
pointsV.add(new Point2D.Double(aPoint.x, aPoint.y));
}
err = false;
computeBounds(pointsV);
}
protected void computeBounds(Vector<Point2D.Double> pointsV){
bounds = null;
if(!err){ // copy the vector into the array to avoid cast
// during painting this object
int size = pointsV.size();
points = new Point2D.Double[size];
for(int i=0;i<size;i++){
Point2D.Double p = (Point2D.Double) pointsV.get(i);
points[i] = p;
if (bounds == null){
bounds = new Rectangle2D.Double(p.getX(), p.getY(), 0, 0);
} else {
bounds = (Rectangle2D.Double)bounds.createUnion(new Rectangle2D.Double(p.getX(),
p.getY(), 0, 0));
}
}
}
}
public void init (String name, int nameWidth, int indent, ListExpr type, ListExpr value, QueryResult qr) {
AttrName = extendString(name, nameWidth, indent);
ScanValue(value);
if (err) {
Reporter.writeError("Error in ListExpr :parsing aborted");
qr.addEntry(new String( AttrName + ": error"));
defined = false;
return;
}
qr.addEntry(this);
}
/**
* @return The boundingbox of all the points
*/
public Rectangle2D.Double getBounds () {
return bounds;
}
public boolean isPointType(int num){
return true;
}
public int numberOfShapes(){
return points.length;
}
public Shape getRenderObject(int num, AffineTransform at){
double ps = Cat.getPointSize(renderAttribute,CurrentState.ActualTime);
double pixy = Math.abs(ps/at.getScaleY());
double pix = Math.abs(ps/at.getScaleX());
boolean isRect = Cat.getPointasRect();
Point2D.Double p = points[num];
if (isRect){
return (new Rectangle2D.Double(p.getX()- pix/2, p.getY() - pixy/2, pix, pixy));
} else {
return (new Ellipse2D.Double(p.getX()- pix/2, p.getY() - pixy/2, pix, pixy));
}
}
/**
* Tests if a given position is contained in any of the points.
* @param xpos The x-Position to test.
* @param ypos The y-Position to test.
* @param scalex The actual x-zoomfactor
* @param scaley The actual y-zoomfactor
* @return true if x-, ypos is contained in this points type
*/
public boolean contains (double xpos, double ypos, double scalex, double scaley) {
if(!defined){
return false;
}
double scale = Cat.getPointSize(renderAttribute,CurrentState.ActualTime)*0.7*scalex;
for(int i=0;i<points.length;i++){
if(points[i].distance(xpos, ypos) <= scale){
return true;
}
}
return false;
}
}