/*
This file is part of JFLICKS.
JFLICKS 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, either version 3 of the License, or
(at your option) any later version.
JFLICKS 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with JFLICKS. If not, see <http://www.gnu.org/licenses/>.
*/
package org.jflicks.ui.view.fe;
import java.awt.Font;
import org.jdesktop.core.animation.timing.Evaluator;
/**
* An evaluator that can interpolate for the Font property.
*
* @author Doug Barnum
* @version 1.0
*/
public class FontEvaluator implements Evaluator<Font> {
private Font[] fonts;
/**
* Constructor with all required arguments.
*
* @param small The small font.
* @param large The large font.
* @param size The size of the small font.
* @param max The max size.
*/
public FontEvaluator(Font small, Font large, double size, double max) {
int isize = (int) size;
int imax = (int) max;
int count = imax - isize + 1;
fonts = new Font[count];
fonts[0] = small;
for (int i = 1; i < fonts.length - 1; i++) {
fonts[i] = small.deriveFont((float) (i + isize));
}
fonts[fonts.length - 1] = large;
}
/**
* We need to return the proper Font for this moment in time for the
* animation.
*
* @param f0 The smallest font.
* @param f1 The largest font.
* @param fraction The place in the animation.
* @return The determined Font.
*/
public Font evaluate(Font f0, Font f1, double fraction) {
Font result = null;
if ((f0 != null) && (f1 != null)) {
double v0 = f0.getSize();
double v1 = f1.getSize();
double v = v0 + (v1 - v0) * fraction;
int ivalue = (int) v;
ivalue -= fonts[0].getSize();
if (ivalue < 0) {
ivalue = 0;
} else if (ivalue >= fonts.length) {
ivalue = fonts.length - 1;
}
result = fonts[ivalue];
}
return (result);
}
public Class<Font> getEvaluatorClass() {
return (Font.class);
}
public Font[] getFonts() {
return (fonts);
}
}