/* jm.evers 10/2009
This is just a copy of Parametric.java ; added a param "showAll"
<param name="showAll" value="0/no"> will show the graph and no input controls
Any other values will revert to Parametric.java behaviour.
The evalues used to generate the parametric figure are however
still easy to be read by pupils looking at the page source...
example:
<html>
<body>
<applet archive="./jcm.jar" code="SilentParametric.class" width="640" height="360">
<param name="showAll" value="no"><!-- yes will give user inputs -->
<param name="FrameTitle" value="Parametric Curves">
<param name="UseGrid" value="yes">
<param name="Limits" value="-1.5,1.5,-1.5,1.5">
<param name="UseMouseZoom" value="no">
<param name="UsePanner" value="no">
<param name="UseFunctionInput" value="no">
<param name="UseParamInputs" value="no">
<param name="UseRestoreButton" value="yes">
<param name="UseEqualizeButton" value="yes">
<param name="SetLimitsButton" value="yes">
<param name="UseZoomButtons" value="yes">
<param name="LoopStyle" value="2"><!-- 0,1,2 0=once,1=restart,2=back and forth-->
<param name="File" value="http://localhost/test.data">
<!--
or define functions through params:
<param name="Function" value="sin(1/2*t)">
<param name="Function2" value="sin(2*t)">
-->
<param name="FunctionLabel" value="x(t)">
<param name="FunctionLabel2" value="y(t)">
<param name="TracerIntervals" value="150">
<param name="ParameterMin" value="0">
<param name="ParameterMax" value="2*pi/(1/2)">
<param name="PanelBackground" value="255 235 245">
<param name="UseComputeButton" value="no">
<param name="TwoLimitsColumns" value="no">
<param name="UseLimitsPanel" value="no">
<param namr="Insets" value="no">
<param name="BackgroundColor" value="255 235 245">
</applet>
</body>
</html>
*/
/*************************************************************************
* *
* This source code file, and compiled classes derived from it, can *
* be used and distributed without restriction, including for commercial *
* use. (Attribution is not required but is appreciated.) *
* *
* David J. Eck *
* Department of Mathematics and Computer Science *
* Hobart and William Smith Colleges *
* Geneva, New York 14456, USA *
* Email: eck@hws.edu WWW: http://math.hws.edu/eck/ *
* *
*************************************************************************/
// The ParametricCurve applet is a configurable applet that displays a parametric
// curve defined by two functions of a parameter t. There can be a "Tracer" button
// on the applet. When the user clicks this button, a crosshair is moved along
// the curve from beginning to end.
import java.awt.*;
import java.applet.Applet;
import java.util.StringTokenizer;
import java.util.Hashtable;
import edu.hws.jcm.draw.*;
import edu.hws.jcm.data.*;
import edu.hws.jcm.functions.*;
import edu.hws.jcm.awt.*;
import java.net.*;
import java.io.*;
public class SilentParametric extends GenericGraphApplet {
// Declare some private variables that are created in one method in
// this class and used in a second method.
private Function xFunc,yFunc; // The functions that are graphed.
private ParametricCurve graph; // The graph of the function.
private Animator tracer; // for tracing the curve by moving a crosshair along it
private Crosshair crosshair; // Crosshair used for tracing the graph
private VariableInput tMin,tMax; // for inputting limits on t
private VariableInput tIntervals; // for inutting the number of intervals into which the t-range is divided
private ExpressionInput functionInput2; // for inputting yFunc; xFunc is input in functionInput
public String tMinString=
"-2";
protected void setUpParameterDefaults() {
parameterDefaults.put("TwoLimitsColumns", "yes");
parameterDefaults.put("Variable","t");
parameterDefaults.put("XName","x"); // we need this so that xmin and xmax boxes are labeled correctly;
// without it, the name would come from the variable name, t, instead of x
parameterDefaults.put("FunctionLabel", " " + getParameter("XName") + "(" + getParameter("Variable") + ") = ");
parameterDefaults.put("FunctionLabel2", " " + getParameter("YName","y") + "(" + getParameter("Variable") + ") = ");
}
protected void setUpCanvas() { // Override this to add more stuff to the canvas.
super.setUpCanvas(); // Do the common setup: Add the axes and
// When setUpCanvas is called, the function inputs already exist, if they are
// to be used, since they are created in setUpBopttomPanel(), which is called
// before setUpCanvas(). If functionInput exists, add a graph of the functions
// from functionInput and functionInput2 to the canvas. If not, create a graph
// of the functions specified by the parameters named "Function" and "Function2".
if (functionInput != null) {
xFunc = functionInput.getFunction(xVar);
yFunc = functionInput2.getFunction(xVar);
}
else {
String xFuncDef =
" cos(" + xVar.
getName() +
") + cos(3*" + xVar.
getName() +
")";
String yFuncDef =
" sin(4*" + xVar.
getName() +
") - sin(2*" + xVar.
getName() +
")";
String file = getParameter
("File");
// jm.evers begin
if(file != null){
//System.out.println("fetching data from "+file);
try{ newdata = load(file);
// scheme: function1,function2,min,max
if(t.
countTokens() !=
4) {System.
out.
println("scheme is: function1,function2,min,max");}
else {
xFuncDef = t.nextToken();
yFuncDef = t.nextToken();
tMinString = t.nextToken();
tMaxString = t.nextToken();
}
} catch(Exception e
){System.
out.
println("Could not read data from "+file
);}
}
else
{
xFuncDef = getParameter("Function", xFuncDef);
yFuncDef = getParameter("Function2", yFuncDef);
}
// jm.evers end
Function f = new SimpleFunction( parser.parse(xFuncDef), xVar );
xFunc = new WrapperFunction(f);
f = new SimpleFunction( parser.parse(yFuncDef), xVar );
yFunc = new WrapperFunction(f);
}
graph = new ParametricCurve(xFunc,yFunc);
Color color = getColorParam
("CurveColor");
if (color != null)
graph.setColor(color);
// if inputs are desired to control the parameter on the curve, set them up here
if ("no".equalsIgnoreCase(getParameter("UseParamInputs","yes"))) {
tMin = new VariableInput(xVar.getName() + "Start",tMinString);
tMax = new VariableInput(xVar.getName() + "End",tMaxString);
tIntervals = new VariableInput("Intervals", getParameter("Intervals","500"));
tIntervals.setInputStyle(VariableInput.INTEGER);
tIntervals.setMin(1);
tIntervals.setMax(5000);
tMin.setOnUserAction(mainController);
tMax.setOnUserAction(mainController);
tIntervals.setOnUserAction(mainController);
graph.setTMin(tMin);
graph.setTMax(tMax);
graph.setIntervals(tIntervals);
// jm.evers begin
String s = getParameter
("showAll");
boolean showAll=true;
if(s.equalsIgnoreCase("no") || s.equalsIgnoreCase("0")){showAll=false;}
// jm.evers end
if(showAll){
if (limitsPanel != null) {
// componets will be added to limitsPanel in setUpLimitsPanel()
mainController.add(tMin); // This is not done automatically, since they are in a limits panel
mainController.add(tMax);
mainController.add(tIntervals);
}
else {
JCMPanel ap = new JCMPanel(9,0);
ap.
setBackground(getColorParam
("PanelBackground",
Color.
lightGray));
ap.
add(new Label(tMin.
getName()));
ap.add(tMin);
ap.
add(new Label(tMax.
getName()));
ap.add(tMax);
ap.
add(new Label(tIntervals.
getName()));
ap.add(tIntervals);
}
}
}
else {
try {
graph.
setTMin( new Constant
((new Double(tMinString
)).
doubleValue()) );
graph.
setTMax( new Constant
((new Double(tMaxString
)).
doubleValue()) );
graph.
setIntervals( new Constant
((new Double(getParameter
("Intervals",
"500"))).
doubleValue()) );
}
}
}
// If the applet is configured to have a tracer button, create it and add the crosshair to the canvas
if (! "no".equalsIgnoreCase( getParameter("UseTracer","yes") ) ) {
tracer = new Animator();
String loopstyle=getParameter
("LoopStyle");
if(loopstyle != null){
if(loopstyle.equals("0")){tracer.setLoopStyle(0);}
else
if(loopstyle.equals("1")){tracer.setLoopStyle(1);}
else
if(loopstyle.equals("2")){tracer.setLoopStyle(2);}
else
tracer.setLoopStyle(2);
}
tracer.setMin(graph.getTMin());
tracer.setMax(graph.getTMax());
tracer.setUndefinedWhenNotRunning(true);
tracer.setStartButtonName("Trace Curve!");
double[] d = getNumericParam("TracerIntervals");
int ints;
if (d == null || d.length != 1)
ints = 100;
else
ints =
(int)Math.
round(d
[0]);
if (ints <= 0)
tracer.setIntervals(graph.getIntervals());
else
tracer.setIntervals(ints);
Variable v = tracer.getValueAsVariable();
crosshair = new Crosshair( new ValueMath(xFunc,v), new ValueMath(yFunc,v) );
crosshair.setLineWidth(3);
crosshair.
setColor(getColorParam
("CrosshairColor",
Color.
gray));
canvas.add(crosshair);
if (inputPanel != null) {
}
else if (limitsPanel == null) {
p.add(tracer);
}
// if inputPanel is null but limitsPanel is not null, the tracer will be
// added to the limit control panel in setUpLimitsPanel()
}
canvas.add(graph); // Finally, add the graph to the canvas.
} // end setUpCanvas()
protected void setUpLimitsPanel() {
super.setUpLimitsPanel();
if (limitsPanel != null && tMin != null) { // add parameter inputs to limits panel
limitsPanel.addComponentPair(tMin,tMax);
limitsPanel.addComponent(tIntervals);
}
if (inputPanel == null && tracer != null && limitsPanel != null) {
limitsPanel.addComponent(tracer);
}
}
protected void setUpBottomPanel() { // override this to make a panel containing inputs for two functions
if ( ! "no".equalsIgnoreCase(getParameter("UseFunctionInput", "yes")) ) {
inputPanel = new JCMPanel();
inputPanel.
setBackground( getColorParam
("PanelBackground",
Color.
lightGray) );
Panel in =
new JCMPanel
(2,
1);
if ( ! "no".equalsIgnoreCase(getParameter("UseComputeButton", "yes")) ) {
String cname = getParameter
("ComputeButtonName",
"New Functions");
computeButton =
new Button(cname
);
computeButton.addActionListener(this);
}
String varName = getParameter
("Variable");
String def = getParameter
("Function");
if (def == null)
def = "cos(" + varName + ") + cos(3*" + varName + ")";
functionInput = new ExpressionInput(def,parser);
String label = getParameter
("FunctionLabel");
if ("none".equalsIgnoreCase(label))
in.add(functionInput);
else {
Panel p =
new JCMPanel
();
in.add(p);
}
def = getParameter("Function2");
if (def == null)
def = "sin(4*" + varName + ") - sin(2*" + varName + ")";
functionInput2 = new ExpressionInput(def,parser);
label = getParameter("FunctionLabel2");
if ("none".equalsIgnoreCase(label))
in.add(functionInput2);
else {
Panel p =
new JCMPanel
();
in.add(p);
}
functionInput.setOnUserAction(mainController);
functionInput2.setOnUserAction(mainController);
}
}
protected void setUpMainPanel() { // Override to set up controller for tracer, if there is one
super.setUpMainPanel(); // Do the common setup
if ( tracer == null ) {
return; // If the applet is not configured to use a trace button, there is nothing to do.
}
Controller traceController = new Controller(); // A controler that will only recompute the crosshair position
traceController.add(tracer);
traceController.add(crosshair);
tracer.setOnChange(traceController);
} // end setUpMainPanel()
protected void doLoadExample
(String example
) {
// This method is called when the user loads an example from the
// example menu (if there is one). It overrides an empty method
// in GenericGraphApplet.
// For the Parametric applet, the example string should contain
// two expression that defines the curve to be graphed, separated
// by a semicolon. This can optionally
// be followed by another semicolon and a list of four to seven numbers.
// The first four numbers give the x- and y-limits to be used for the
// example. If they are not present, then -5,5,-5,5 is used. The
// next three numbers specify the minimum value for the parameter, the
// maximum value, and the number of intervals into which the range of
// parameter values is divided.
if (tracer != null)
tracer.stop();
int pos = example.indexOf(";");
if (pos == -1)
return; // illegal example -- must have two functions
String example2 = example.
substring(pos+
1);
example = example.substring(0,pos);
pos = example2.indexOf(";");
double[] limits = { -5,5,-5,5 }; // x- and y-limits to use
if (pos > 0) {
// Get limits from example2 text.
String nums = example2.
substring(pos+
1);
example2 = example2.substring(0,pos);
if (toks.countTokens() >= 4) {
for (int i = 0; i < 4; i++) {
try {
limits[i] = d.doubleValue();
}
}
}
}
if (toks.hasMoreTokens()) {
try {
double d =
(new Double(toks.
nextToken())).
doubleValue();
if (tMin == null) {
graph.setTMin(new Constant(d));
if (tracer != null)
tracer.setMin(d);
}
else
tMin.setVal(d);
}
}
}
if (toks.hasMoreTokens()) {
try {
double d =
(new Double(toks.
nextToken())).
doubleValue();
if (tMax == null) {
graph.setTMax(new Constant(d));
if (tracer != null)
tracer.setMax(d);
}
else
tMax.setVal(d);
}
}
}
if (toks.hasMoreTokens()) {
try {
int d =
(int)Math.
round((new Double(toks.
nextToken())).
doubleValue());
if (tIntervals == null) {
if (tracer != null && tracer.getIntervals() == graph.getIntervals())
tracer.setIntervals(d);
graph.setIntervals(new Constant(d));
}
else
tIntervals.setVal(d);
}
}
}
}
// Set up the example data and recompute everything.
if (functionInput != null) {
// If there is a function input box, put the example text in it.
functionInput.setText(example);
functionInput2.setText(example2);
}
else {
// If there is no user input, set the function in the graph directly.
try {
Function f = new SimpleFunction( parser.parse(example), xVar );
((WrapperFunction)xFunc).setFunction(f);
Function g = new SimpleFunction( parser.parse(example2), xVar );
((WrapperFunction)yFunc).setFunction(g);
}
catch (ParseError e) {
// There should't be parse error's in the Web-page
// author's examples! If there are, the function
// just won't change.
}
}
CoordinateRect coords = canvas.getCoordinateRect(0);
coords.setLimits(limits);
coords.setRestoreBuffer();
mainController.compute();
} // end doLoadExample()
public void stop() { // stop animator when applet is stopped
if (tracer != null)
tracer.stop();
super.stop();
}
// jm.evers; handy functions, not invented here :(
int bufSize = 1024 * 2;
byte [] buf = new byte[bufSize];
int n;
while ((n = in.read(buf)) > 0){
bout.write(buf, 0, n);
}
try { in.
close(); } catch (Exception ignored
) { }
return bout.toByteArray();
}
byte[] bytes = loadURL
(new URL("file:" + fname
));
}
try {
return new String(loadURL
(url
));}
catch (Exception e
) { return loadFile
(fileOrURL
);}
}
}
// end class Parametric