ParametricCalculableTimer.java
/*
* ..::jDrawingLib::..
*
* Copyright (C) Federico Vera 2012 - 2023 <[email protected]>
*
* 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, either version 3 of the License, or any later
* version.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.dkt.graphics.extras.formula;
import com.dkt.graphics.elements.GCircle;
import com.dkt.graphics.elements.GMultiPoint;
import com.dkt.graphics.elements.GPath;
import com.dkt.graphics.elements.GPointArray;
import com.dkt.graphics.elements.Graphic;
import com.dkt.graphics.elements.GraphicE;
import com.dkt.graphics.utils.PThread;
import com.dkt.graphics.utils.TicToc;
import java.awt.Graphics2D;
/**
*
* @author Federico Vera {@literal<[email protected]>}
*/
public class ParametricCalculableTimer extends AbstractTimer<ParametricCalculable> {
private final Graphic graphic = new Graphic();
public ParametricCalculableTimer(ParametricCalculable calculable) {
super(calculable);
}
@Override
protected PThread getThread(
ParametricCalculable calculable,
int threadNumber,
int threadsTotal,
boolean drawPen)
{
return new CalculatorThread(
calculable,
threadNumber,
threadsTotal,
drawPen
);
}
private class CalculatorThread extends PThread {
private final ParametricCalculable calculable;
private final GMultiPoint points;
private final boolean drawPen;
private final GCircle pen;
private final double sx, sy, end, step;
private int lx = Integer.MAX_VALUE;
private int ly = Integer.MAX_VALUE;
private double t;
public CalculatorThread (
ParametricCalculable calculable,
int threadNumber,
int threadsTotal,
boolean drawPen)
{
setPriority(Thread.MIN_PRIORITY);
setName(String.format("%s: %d/%d",
calculable.getName(),
threadNumber + 1,
threadsTotal)
);
this.calculable = calculable;
this.drawPen = drawPen;
final double start = calculable.startPoint();
final double endpt = calculable.endPoint ();
if (threadsTotal != 1){
double interval = endpt - start;
interval /= threadsTotal;
t = start + interval * threadNumber;
end = start + interval * (threadNumber + 1);
} else {
t = start;
end = endpt;
}
sx = calculable.scaleX();
sy = calculable.scaleY();
step = calculable.step();
final int size = (int)((end - t) / step) + 100;
if (drawAsPath()) {
points = new GPath(size);
} else {
points = new GPointArray(size);
}
points.setPaint(getPaint());
graphic.add(points);
if (drawPen){
pen = new GCircle(0, 0, 2);
pen.setFill(true);
graphic.add(pen);
} else {
pen = null;
}
}
@Override
public void run() {
TicToc tt = new TicToc();
tt.tic();
while(!interrupted() & t < end){
checkPause();
final int x = (int)(calculable.x(t) * sx);
final int y = (int)(calculable.y(t) * sy);
if (lx != x | ly != y){
if (drawPen){
pen.move(x, y);
}
points.append(x, y);
lx = x;
ly = y;
}
t += step;
}
tt.toc();
if (drawPen){
graphic.remove(pen);
}
removeThread(this);
System.out.format("%s ended in %s%n", getName(), tt);
}
}
@Override
public void traslate(int x, int y) {
graphic.traslate(x, y);
}
@Override
public void draw(Graphics2D g) {
graphic.draw(g);
}
@Override
public GraphicE clone() {
throw new UnsupportedOperationException();
}
}