/* GeoGebra - Dynamic Mathematics for Everyone http://www.geogebra.org This file is part of GeoGebra. This program 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. */ /* * AlgoDependentNumber.java * * Created on 30. August 2001, 21:37 */ package org.geogebra.common.kernel.advanced; import org.geogebra.common.kernel.Construction; import org.geogebra.common.kernel.algos.AlgoElement; import org.geogebra.common.kernel.commands.Commands; import org.geogebra.common.kernel.geos.GeoElement; import org.geogebra.common.kernel.geos.GeoNumeric; /** * Returns the construction step of a GeoElement * * @author Markus */ public class AlgoStepObject extends AlgoElement { private GeoElement inputGeo; // input private GeoNumeric num; // output // private Construction cons; /** * @param cons * construction * @param label * output label * @param inputGeo * geo */ public AlgoStepObject(Construction cons, String label, GeoElement inputGeo) { super(cons); // this.cons=cons; this.inputGeo = inputGeo; num = new GeoNumeric(cons); setInputOutput(); // for AlgoElement compute(); num.setLabel(label); } @Override public Commands getClassName() { return Commands.ConstructionStep; } // for AlgoElement @Override protected void setInputOutput() { input = new GeoElement[1]; input[0] = inputGeo; super.setOutputLength(1); super.setOutput(0, num); setDependencies(); // done by AlgoElement } /** * @return construction step of the geo */ public GeoNumeric getResult() { return num; } @Override final public boolean wantsConstructionProtocolUpdate() { return true; } // calc the current value of the arithmetic tree @Override public final void compute() { double step = inputGeo.getConstructionIndex(); num.setValue(step + 1); } }