/*
* Copyright (C) 2013-2015 F(X)yz,
* Sean Phillips, Jason Pollastrini and Jose Pereda
* All rights reserved.
*
* 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
* (at your option) 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 org.fxyz.shapes.composites;
import java.util.ArrayList;
import javafx.scene.AmbientLight;
import javafx.scene.DepthTest;
import javafx.scene.Group;
import javafx.scene.Node;
import javafx.scene.paint.Color;
import javafx.scene.paint.PhongMaterial;
import javafx.scene.shape.Box;
import javafx.scene.shape.CullFace;
import javafx.scene.shape.Cylinder;
import javafx.scene.shape.DrawMode;
/**
*
* @author Sean
*/
public class Histogram extends Group {
private ArrayList<Double> xAxisData = new ArrayList<>();
private ArrayList<Double> yAxisData = new ArrayList<>();
private ArrayList<Double> zAxisData = new ArrayList<>();
public Group histogramDataGroup = new Group();
public AmbientLight selfLight = new AmbientLight(Color.WHITE);
public double nodeRadius = 1;
private double axesSize = 1000;
private boolean normalized = false;
public boolean selfLightEnabled = true;
public enum NodeType {
CYLINDER, CUBE
};
private NodeType defaultNodeType = NodeType.CUBE;
public Histogram(boolean selfLit) {
selfLightEnabled = selfLit;
init();
}
public Histogram(double axesSize, double nodeRadius, boolean selfLit) {
selfLightEnabled = selfLit;
this.axesSize = axesSize;
this.nodeRadius = nodeRadius;
init();
}
private void init() {
getChildren().add(histogramDataGroup);
if (selfLightEnabled) {
getChildren().add(selfLight);
}
setDepthTest(DepthTest.ENABLE);
}
public void setHeightData(float[][] arrayY, int barSize, int spacing,
Color color, boolean ambient, boolean fill) {
histogramDataGroup.getChildren().clear();
PhongMaterial phong = new PhongMaterial();
phong.setSpecularColor(color);
phong.setDiffuseColor(color);
float min = arrayY[0][0], max = arrayY[0][0];
// Find min and max's for color gradient
for (int x = 0; x < arrayY.length; x++) {
for (int z = 0; z < arrayY[0].length; z++) {
if (arrayY[x][z] < min) {
min = arrayY[x][z];
}
if (arrayY[x][z] > max) {
max = arrayY[x][z];
}
}
}
float range = max - min; //
// Generate Bars
for (int x = 0; x < arrayY.length; x++) {
for (int z = 0; z < arrayY[0].length; z++) {
double ySize = arrayY[x][z];
if (ySize < 0) {
ySize *= -1;
}
Node bar = createDefaultNode(barSize, ySize);
bar.setTranslateX(x * spacing);
bar.setTranslateY(-arrayY[x][z]);
bar.setTranslateZ(z * spacing);
//Apply normalized color scale
double normalizedColor = (arrayY[x][z] - min) / range;
if (arrayY[x][z] < range / 2) //if it is in the lower half of the range
{
phong = new PhongMaterial(new Color(0.25, 0, normalizedColor, 1));
} else //if it is in the upper half of the range
{
phong = new PhongMaterial(new Color(normalizedColor, 0, 0.25, 1));
}
switch (getDefaultNodeType()) {
case CYLINDER: {
((Cylinder) bar).setMaterial(phong);
((Cylinder) bar).setCullFace(CullFace.BACK);
if (fill) {
((Cylinder) bar).setDrawMode(DrawMode.FILL);
} else {
((Cylinder) bar).setDrawMode(DrawMode.LINE); //show lines only by default
}
break;
}
case CUBE:
default: {
((Box) bar).setMaterial(phong);
((Box) bar).setCullFace(CullFace.BACK);
if (fill) {
((Box) bar).setDrawMode(DrawMode.FILL);
} else {
((Box) bar).setDrawMode(DrawMode.LINE); //show lines only by default
}
}
}
if (ambient) {
AmbientLight light = new AmbientLight(color);
light.getScope().add(bar);
histogramDataGroup.getChildren().add(light);
}
histogramDataGroup.getChildren().add(bar);
}
}
}
private Node createDefaultNode(double barWidth, double barHeight) {
switch (defaultNodeType) {
case CYLINDER:
return new Cylinder(barWidth / 2, barHeight);
case CUBE:
return new Box(barWidth, barHeight, barWidth);
default:
return new Box(barWidth, barHeight, barWidth);
}
}
/**
* @return the defaultNodeType
*/
public Histogram.NodeType getDefaultNodeType() {
return defaultNodeType;
}
/**
* @param defaultNodeType the defaultNodeType to set
*/
public void setDefaultNodeType(Histogram.NodeType defaultNodeType) {
this.defaultNodeType = defaultNodeType;
}
}