/* JWildfire - an image and animation processor written in Java Copyright (C) 1995-2011 Andreas Maschke This is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This software 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this software; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jwildfire.create.tina.variation; import static org.jwildfire.base.mathlib.MathLib.cos; import static org.jwildfire.base.mathlib.MathLib.sin; import org.jwildfire.create.tina.base.Layer; import org.jwildfire.create.tina.base.XForm; import org.jwildfire.create.tina.base.XYZPoint; public class KaleidoscopeFunc extends VariationFunc { private static final long serialVersionUID = 1L; private static final String PARAM_PULL = "pull"; private static final String PARAM_ROTATE = "rotate"; private static final String PARAM_LINE_UP = "line_up"; private static final String PARAM_X = "x"; private static final String PARAM_Y = "y"; private static final String[] paramNames = { PARAM_PULL, PARAM_ROTATE, PARAM_LINE_UP, PARAM_X, PARAM_Y }; private double pull = 0.0; private double rotate = 1.0; private double line_up = 1.0; private double x = 0.0; private double y = 0.0; @Override public void transform(FlameTransformationContext pContext, XForm pXForm, XYZPoint pAffineTP, XYZPoint pVarTP, double pAmount) { /* Kaleidoscope by Will Evans, http://eevans1.deviantart.com/art/kaleidoscope-plugin-122185469 */ pVarTP.x += ((_w * pAffineTP.x) * cos(45.0) - pAffineTP.y * sin(45.0) + _e) + _r; // the if function splits the plugin in two. if (pAffineTP.y > 0) { pVarTP.y += ((_w * pAffineTP.y) * cos(45.0) + pAffineTP.x * sin(45.0) + _q + _e) + _t; } else { pVarTP.y += (_w * pAffineTP.y) * cos(45.0) + pAffineTP.x * sin(45.0) - _q - _e; } if (pContext.isPreserveZCoordinate()) { pVarTP.z += pAmount * pAffineTP.z; } } @Override public String[] getParameterNames() { return paramNames; } @Override public Object[] getParameterValues() { return new Object[] { pull, rotate, line_up, x, y }; } @Override public void setParameter(String pName, double pValue) { if (PARAM_PULL.equalsIgnoreCase(pName)) pull = pValue; else if (PARAM_ROTATE.equalsIgnoreCase(pName)) rotate = pValue; else if (PARAM_LINE_UP.equalsIgnoreCase(pName)) line_up = pValue; else if (PARAM_X.equalsIgnoreCase(pName)) x = pValue; else if (PARAM_Y.equalsIgnoreCase(pName)) y = pValue; else throw new IllegalArgumentException(pName); } @Override public String getName() { return "kaleidoscope"; } double _q, _w, _e, _r, _t, _i; @Override public void init(FlameTransformationContext pContext, Layer pLayer, XForm pXForm, double pAmount) { _q = pull; // pulls apart the 2 sections of the plugin _w = rotate; // rotates both halves of the plugin _e = line_up; _r = x; // changes x co-ordinates _t = y; // changes y co-ordinates for 1 part of the plugin } }