//package maestro.lib.graphics;
//GraphCanvas.java

import java.awt.*;
import java.util.*;
import java.lang.*;
//import maestro.lib.graphics.*;
//import maestro.lib.math.*;

public class GraphCanvasQ extends Canvas{
    protected static final Color bgcolor = new Color(216,216,191);
    protected static final Color colorp = new Color(255,255,255);
    protected Image im;
    protected Graphics buf;
    protected int LeftMargin = 40;
    protected int TopSep = 40;
    protected int BottomSep = 40;
    protected int RightMargin = 40;
    protected int VPos=0;
    protected String XLabel, YLabel, TITLE;
    protected String X1, X2, X3;
    protected String Y1, Y2, Y3;
    protected int NumPoints;
    protected double x[];
    protected double y[];
    protected double ymin, ymax, currentNormalization, currentMIN, currentin;
    protected double xmin, xmax;
    protected int xx[];
    protected int yy[];
    protected double xRef;
    protected boolean Should_Plot_Zero_Line;
    protected boolean Should_Plot_Ref_Point;
    protected boolean IsYRangeMinSet, IsYRangeMaxSet;
    protected boolean IsXRangeMinSet, IsXRangeMaxSet;
    protected Font font1 = new Font("SanSerif",Font.PLAIN,11);
    protected Font font2 = new Font("Serif",Font.PLAIN,11);
    NewGuide_State state;
    
    public GraphCanvasQ(NewGuide_State state){
	super();
        this.state = state;
        
        font1 = new Font("SanSerif",Font.PLAIN,state.font11);
        font2 = new Font("Serif",Font.PLAIN,state.font11);
    
        LeftMargin = state.s40;
        TopSep = state.s40;
        BottomSep = state.s40;
        RightMargin = state.s40;
    
	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;
	
	xRef = 0.0;
	
	Should_Plot_Zero_Line = false;
	Should_Plot_Ref_Point = false;
	
	currentNormalization = 1.0;
	currentMIN = 1.0;
    }
     
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);
}

public void drawGraph(Graphics g){
	g.clearRect(0,0,getSize().width,getSize().height);
	g.setColor(Color.black);
	g.drawRect(0,0,getSize().width,getSize().height);
	g.setColor(Color.white);
	g.drawRect(1,1,getSize().width-3,getSize().height-3);
    	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;}
    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="- 0.5 Length";
    X2="0.5 Length";
    X3="|";
    Y1=""+MaestroA.rounder(ymin,3);
    
    if(ymax < 1.0e230){
	//Y2="| Imax | = "+MaestroA.rounder(ymax*currentNormalization,6);
	//Y2= ""+currentin;
	Y2="| Imax | = "+MaestroA.rounder(currentin,6);
    }
    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-state.s5,yy,getSize().width-RightMargin,yy);
    g.setColor(Color.white);
    g.drawString("0",LeftMargin-fm.stringWidth("0")-state.s13,yy+fm.getHeight()/3);
    g.setColor(colorp);
}

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;
    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);
    if(y[i]>0.0){
	myY = (int)MaestroA.mapper(y[i],(double)TopSep,(double)(getSize().height-BottomSep),ymax,ymin);
    }
    else{
	myY =getSize().height-BottomSep ;
    }
    Graphics2D g2d = (Graphics2D)g;
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    
    g.setColor(Color.yellow);
    g.drawLine(myX,myY,myX,getSize().height-BottomSep+5);
    
    g.setColor(Color.red);
    MaestroG.fillCircle(myX,myY,state.s5,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);
	g.setColor(Color.white);
	for(int i=0;i<NumPoints-1;i++){
		    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){
    FontMetrics fm = g.getFontMetrics();
    g.setFont(font1);
    
    g.setColor(Color.white);
    g.drawString(XLabel,getSize().width-RightMargin+3*fm.stringWidth(XLabel)-state.s5,getSize().height-BottomSep-state.s8);
    
    g.drawString(TITLE,(getSize().width-fm.stringWidth(TITLE))/2,TopSep/2);
    g.setColor(Color.yellow);
    MaestroG.subscripterS("I","max"," = "+currentin+" [ A ]",g,state.font12,state.s10,state.s20);
    g.drawString("_",state.s20,getSize().height-BottomSep-state.s2);
    g.drawString("+",state.s20,TopSep+state.s5);
    g.setFont(font1);
    
    g.setColor(Color.yellow);
    
    MaestroG.subscripterL("- 0.5 \u00B7 Length","","",g,state.font11,LeftMargin-state.s12,getSize().height-BottomSep+17*state.font11/10);
    MaestroG.subscripterL("0.5 \u00B7 Length","","",g,state.font11,getSize().width-RightMargin-fm.stringWidth(X2)+state.s12,getSize().height-BottomSep+17*state.font11/10);
    
    g.setFont(font1);
    g.drawString("0",LeftMargin+(getSize().width-RightMargin-LeftMargin)/2-state.s2,getSize().height-BottomSep+3*fm.getHeight()/2);
    
    g.drawLine(LeftMargin,getSize().height-BottomSep,LeftMargin,getSize().height-BottomSep+state.s6);
    g.drawLine(LeftMargin+(getSize().width-RightMargin-LeftMargin)/2,getSize().height-BottomSep,
               LeftMargin+(getSize().width-RightMargin-LeftMargin)/2,getSize().height-BottomSep+state.s6);
    g.drawLine(getSize().width-RightMargin,getSize().height-BottomSep,
               getSize().width-RightMargin,getSize().height-BottomSep+6);
    g.drawLine(LeftMargin-state.s6,getSize().height-BottomSep,LeftMargin,getSize().height-BottomSep);
    g.drawLine(LeftMargin-state.s6,TopSep,LeftMargin,TopSep);
    g.setColor(colorp);
}

protected void drawAxis(Graphics g){
    VPos = getSize().height-BottomSep;
    g.setColor(Color.lightGray);
    g.drawLine(LeftMargin+(getSize().width-RightMargin-LeftMargin)/2,getSize().height-BottomSep,LeftMargin+(getSize().width-RightMargin-LeftMargin)/2,TopSep-5);
    
    g.setColor(Color.yellow);
    //Vertical Axis
    g.drawLine(LeftMargin,TopSep-state.s1,LeftMargin,getSize().height-BottomSep);
    //Horizontal Axis
    g.drawLine(LeftMargin,VPos,getSize().width-RightMargin+state.s10,VPos);
    //MaestroG.drawArrow(getSize().width-RightMargin+state.s10,VPos,7,g);
    MaestroG.drawArrowScaled(getSize().width-RightMargin+state.s10,VPos,3,state.sfactor,g);
    g.drawLine(getSize().width-RightMargin,getSize().height-BottomSep,getSize().width-RightMargin,TopSep-state.s1);
    
}

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 final synchronized void setLabels(String TITLE, String YLabel, String XLabel){
    this.TITLE=TITLE;
    this.YLabel = YLabel;
    this.XLabel = XLabel;
}
 
public void plot(double[] xdata, double[] ydata, double currentNormalization, double currentMIN, double currentin){
    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];
    }
    this.currentMIN = currentMIN;
    this.currentNormalization = currentNormalization;
    this.currentin = currentin;
    repaint();
}

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;
}

public void update(Graphics g){
    paint(g);
}


}