//package maestro.lib.graphics;
//GraphCanvas.java NOT USED HERE

import java.awt.*;
import java.util.*;
import java.lang.*;
//import maestro.lib.graphics.*;
//import maestro.lib.math.*;
import java.awt.image.BufferedImage;
import java.io.IOException;
import javax.imageio.ImageIO;

public class GraphCanvasNeg extends Canvas{
    protected static final Color bgcolor = new Color(216,216,191);
    
    protected Image im;
    protected Graphics buf;
    protected final int LeftMargin = 40;
    protected final int TopSep = 40;
    protected final int BottomSep = 40;
    protected final int RightMargin = 40;
    protected int VPos=0;
    protected String XLabel, YLabel, ZLabel, TITLE;
    protected String X1, X2, X3;
    protected String Y1, Y2, Y3;
    protected int NumPoints, xpoint;
    protected double x[];
    protected double y[];
    protected double ymin, ymax;
    protected double xmin, xmax;
    protected int xx[];
    protected int yy[];
    protected double xRef, wire_radius;
    protected boolean Should_Plot_Zero_Line;
    protected boolean Should_Plot_Ref_Point;
    protected boolean IsDirectivity;
    protected boolean IsYRangeMinSet, IsYRangeMaxSet;
    protected boolean IsXRangeMinSet, IsXRangeMaxSet;
    protected boolean IsWZero;

    protected static final Font font1 = new Font("SanSerif",Font.PLAIN,11);
    protected static final Font font2 = new Font("SanSerif",Font.PLAIN,12);
    protected static final Font font3 = new Font("SanSerif",Font.PLAIN,13);
    
    private BufferedImage infinity;
    
    public GraphCanvasNeg(){
	super();

	getImages();
	setBackground(bgcolor);
	XLabel="x-axis";
	YLabel="y-axis";
	TITLE ="Unknown Title";
	Y1 = " ";
	Y2 = " ";
	Y3 = " ";
	X1 = " ";
	X2 = " ";
	X3 = " ";
	NumPoints = 1001;
	x = new double[NumPoints];
	y = new double[NumPoints];
	xx = new int[NumPoints];
	yy = new int[NumPoints];
	for(int i=0;i<NumPoints;i++){
	    x[i]=i;
	    y[i]=0.0;
	}
	IsYRangeMinSet=false;
	IsYRangeMaxSet=false;
	IsXRangeMinSet=false;
	IsXRangeMaxSet=false;
	IsWZero = false;
	wire_radius = 1.0e-5;
	xRef = 0.0;
	xpoint = 0;
	Should_Plot_Zero_Line = false;
	Should_Plot_Ref_Point = false;
	IsDirectivity = true;
    }


    private void getImages() {
        // read in the infinity image, because CHEERPJ does not render this
	//  symbol in any font!  (java to javascript converter)
        try {
            infinity = ImageIO.read(getClass().getResource("infinity.png"));
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
     
public void paint(Graphics g){
    if(im == null){
	im = createImage(getSize().width,getSize().height);
	buf = im.getGraphics();
	drawGraph(buf);
    }
    drawGraph(buf);
    g.drawImage(im,0,0,null);
}

//Addition to reduce flicker new routine
public void update(Graphics g){		// added to avoid clearing
	paint(g);
}

public void drawGraph(Graphics g){
	
	g.clearRect(0,0,getSize().width,getSize().height);
    	drawAxis(g);
	if(Should_Plot_Zero_Line){plotZeroLine(g);}
	//g.draw3DRect(0,0,getSize().width-1,getSize().height-1,false);
	drawTitle(g);
        plotPoints(g);
	plotRefPoint(g);
	
}

protected void ignition(){
    int height=getSize().height;
    int width=getSize().width;
    if(!IsYRangeMinSet){ymin = MaestroA.getMin(y);}
    if(!IsYRangeMaxSet){ymax = MaestroA.getMax(y);}
    if(!IsXRangeMaxSet){xmax = x[x.length-1];}
    if(!IsXRangeMinSet){xmin = x[0];}
    if(IsYRangeMinSet || IsYRangeMaxSet){
	MaestroA.confiner(y,ymax,ymin);
    }
    if(IsXRangeMinSet || IsXRangeMaxSet){
	MaestroA.confiner(x,xmax,xmin);
    }
    
    if(ymin==ymax){ymax=2*ymin+1;}
    
    xpoint = (int)MaestroA.mapper(10.0*wire_radius,(double)(width-RightMargin),(double)(LeftMargin),xmax,xmin);
    
    for(int i=0;i<xx.length;i++){
	xx[i]= (int)MaestroA.mapper(x[i],(double)(width-RightMargin),(double)(LeftMargin),xmax,xmin);
	yy[i]= (int)MaestroA.mapper(y[i],(double)TopSep,(double)(height-BottomSep),ymax,ymin);
    } 
    
    X1=""+MaestroA.rounder(x[0],3);
    X2=""+MaestroA.rounder(x[x.length-1],3);
    X3="|";
    Y1=""+MaestroA.rounder(ymin,3);
    if(ymax < 1.0e230){
	Y2=""+MaestroA.rounder(ymax,3);
    }
    else{
	Y2="\u221e";
    }
    Y3="_";
    
}

protected void plotZeroLine(Graphics g){
    if(ymin*ymax>0){return;}
    FontMetrics fm = g.getFontMetrics();
    g.setFont(font1);
    int yy;
    yy = (int)MaestroA.mapper(0.0,(double)TopSep,(double)(getSize().height-BottomSep),ymax,ymin);
    g.setColor(Color.red);
    g.drawLine(LeftMargin,yy,getSize().width-RightMargin,yy);
    g.setColor(Color.yellow);
    //g.drawString("0",LeftMargin-fm.stringWidth("0")-5,yy+fm.getHeight()/3);
    g.drawString("0",getSize().width-RightMargin+5,yy+fm.getHeight()/3);
}

public synchronized void plotZeroLine(boolean Should_Plot_Zero_Line){
    this.Should_Plot_Zero_Line = Should_Plot_Zero_Line;
}

protected void plotRefPoint(Graphics g){
    int myX=0, myY=0, i;
    int yy;
    yy = (int)MaestroA.mapper(0.0,(double)TopSep,(double)(getSize().height-BottomSep),ymax,ymin);
    i = (int)((NumPoints-1)*(xRef-x[0])/(x[x.length-1]-x[0]));
    if(i<0) {i = 0;}
    if(i>=NumPoints){i=NumPoints-1;}
    myX = (int)MaestroA.mapper(xRef,(double)(getSize().width-RightMargin),(double)(LeftMargin),xmax,xmin);
    {
	myY = (int)MaestroA.mapper(y[i],(double)TopSep,(double)(getSize().height-BottomSep),ymax,ymin);
	g.setColor(Color.white);
	g.drawLine(myX,myY,myX,yy);
    }
    
    Graphics2D g2d = (Graphics2D)g;
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    
    g.setColor(Color.red);
    MaestroG.fillCircle(myX,myY,5,g);
    g.setColor(Color.white);
    
    MaestroG.drawCircle(myX,myY,5,g);
    
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_OFF);
    
}

public synchronized void plotRefPoint(boolean Should_Plot_Ref_Point){
    this.Should_Plot_Ref_Point = Should_Plot_Ref_Point;
}

protected void plotPoints(Graphics g){
    ignition();
    Graphics2D g2d = (Graphics2D)g;
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    
    //g.drawPolyline(xx,yy,xx.length);
    for(int i=1;i<NumPoints-1;i++){
	//if(xx[i] < xpoint){g.setColor(Color.black);}
	//else
	     {g.setColor(Color.green);} 
    
	    g.drawLine(xx[i],yy[i],xx[i+1],yy[i+1]);
    }
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_OFF);
    
}

protected void drawTitle(Graphics g){
    
    g.setFont(font2);
    FontMetrics fm = g.getFontMetrics();
    g.setColor(Color.white);
    
    int ylevel = getSize().height-15;
    int xlevel = (getSize().width-fm.stringWidth(XLabel))/2-10;
    int xshift = xlevel+3+ fm.stringWidth("Dipole Length    ");
    g.drawString(XLabel,xlevel,ylevel);
    
    g.drawString("[",xshift,ylevel);
    g.drawString("]",xshift+15,ylevel);
    g.setFont(new Font("Serif",Font.PLAIN,14));
    g.drawString("\u03bb",xshift+4,ylevel);
    
    g.setFont(font3);
    
    g.drawString(YLabel,LeftMargin-33,getSize().height/2);
    g.drawString(ZLabel,LeftMargin-26,getSize().height/2+4);
    g.setColor(Color.white);
    g.drawString(TITLE,(getSize().width-fm.stringWidth(TITLE))/2,TopSep/2);
    
    g.setFont(font1);
    g.setColor(Color.yellow);
    
    g.drawString(X1,LeftMargin-6,ylevel);
    g.drawString(X2,getSize().width-RightMargin-fm.stringWidth(X2)+15,ylevel);
    
    //g.drawString(X3,LeftMargin,getSize().height-BottomSep+5);
    g.drawString(X3,LeftMargin+(getSize().width-RightMargin-LeftMargin)/2,getSize().height-BottomSep+5);
    g.drawString(X3,getSize().width-RightMargin,getSize().height-BottomSep+5);
    
    g.drawString(Y1,5,getSize().height-BottomSep+12);
    // Y2 may contain '\u221e' (infinity) which CHEERPJ doesn't render
    //g.drawString(Y2,5,TopSep-4);
    if (!Y2.contains(String.valueOf('\u221e'))) {
	g.drawString(Y2,5,TopSep-4);
    } else {
	g.drawImage(infinity,5,TopSep-4-infinity.getHeight(),this);
    }

    //g.drawString(Y2,Math.max(4,LeftMargin-fm.stringWidth(Y2))-7,TopSep+4);
    g.drawString(Y3,LeftMargin-6,getSize().height-BottomSep-1);
    g.drawString(Y3,LeftMargin-6,TopSep-1);
    
    if(!IsDirectivity){
	g.setColor(Color.white);
	g.drawString("[",LeftMargin-23,getSize().height/2-30);
	g.drawString("]",LeftMargin-9,getSize().height/2-30);
	g.setFont(new Font("Serif",Font.PLAIN,12));
	g.drawString("\u03a9",LeftMargin-20,getSize().height/2-30);
	g.setFont(new Font("SanSerif",Font.PLAIN,11));
	
	g.setColor(Color.green);
	g.drawLine(getSize().width - 60,15,getSize().width - 45,15);
	MaestroG.subscripter("X","rad","",g,12,getSize().width - 40, 20);
	
	g.setColor(Color.black);
    }
}

protected void drawAxis(Graphics g){
    VPos = getSize().height-BottomSep;
    g.setColor(Color.white);
    //Vertical Axis
    g.drawLine(LeftMargin,TopSep-1,LeftMargin,getSize().height-BottomSep);
    //g.drawLine(LeftMargin,TopSep/2,LeftMargin,getSize().height-BottomSep);
    //MaestroG.drawArrow(LeftMargin,TopSep/2,1,g);
    //Horizontal Axis
    g.drawLine(LeftMargin,VPos,getSize().width-RightMargin+10,VPos);
    MaestroG.drawArrow(getSize().width-RightMargin+10,VPos,7,g);
}

public final synchronized void setXLabel(String XLabel){
    this.XLabel=XLabel;
}

public final synchronized void setYLabel(String YLabel){
    this.YLabel=YLabel;
} 

public final synchronized void setTitle(String TITLE){
    this.TITLE = TITLE;
}

public void setWZero(boolean IsWZero){
    this.IsWZero = IsWZero;
}

public final synchronized void setLabels(String TITLE, String YLabel, String XLabel, String ZLabel){
    this.TITLE=TITLE;
    this.YLabel = YLabel;
    this.XLabel = XLabel;
    this.ZLabel = ZLabel;
}
 
public void plot(double[] xdata, double[] ydata, boolean IsDirectivity){
    this.IsDirectivity = IsDirectivity;
    if(NumPoints != xdata.length){
	NumPoints = xdata.length;
	x = new double[NumPoints];
	y = new double[NumPoints];
	xx = new int[NumPoints];
	yy = new int[NumPoints];
    }
    for(int i = 0; i < NumPoints; i++){
	x[i] = xdata[i];
	y[i] = ydata[i];
    }
    repaint();
}

public void setWireRadius(double wire_radius){
    this.wire_radius=wire_radius;
}

public void setYRange(double ymax, double ymin){
    IsYRangeMaxSet=true;
    IsYRangeMinSet=true;
    this.ymax=ymax;
    this.ymin=ymin;
}

public void setYRangeMin(double ymin){
    IsYRangeMinSet=true;
    this.ymin=ymin;
}

public void setYRangeMax(double ymax){
    IsYRangeMaxSet=true;
    this.ymax=ymax;
}

public void setAuto(){
    IsYRangeMaxSet=false;
    IsYRangeMinSet=false;
    IsXRangeMaxSet=false;
    IsXRangeMinSet=false;
}

public synchronized void setRefPoint(double xRef){
    this.xRef = xRef;
}


}
