/* * 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.tests; import java.util.concurrent.atomic.AtomicInteger; import java.util.function.Function; import javafx.animation.AnimationTimer; import javafx.animation.KeyFrame; import javafx.animation.KeyValue; import javafx.animation.Timeline; import javafx.application.Application; import javafx.scene.Group; import javafx.scene.PerspectiveCamera; import javafx.scene.Scene; import javafx.scene.SceneAntialiasing; import javafx.scene.input.KeyCode; import javafx.scene.input.MouseEvent; import javafx.scene.shape.CullFace; import javafx.scene.transform.Rotate; import javafx.stage.Stage; import javafx.util.Duration; import org.fxyz.cameras.CameraTransformer; import org.fxyz.geometry.Point3D; import org.fxyz.shapes.primitives.IcosahedronMesh; /** * * @author jpereda */ public class IcosahedronTest extends Application { private PerspectiveCamera camera; private final double sceneWidth = 600; private final double sceneHeight = 600; private final CameraTransformer cameraTransform = new CameraTransformer(); private double mousePosX; private double mousePosY; private double mouseOldX; private double mouseOldY; private double mouseDeltaX; private double mouseDeltaY; private IcosahedronMesh ico; private Rotate rotateY; private Function<Point3D, Number> dens = p-> p.x*p.y*p.z; // (float)(3d*Math.pow(Math.sin(p.phi),2)*Math.pow(Math.abs(Math.cos(p.theta)),0.1)+ // Math.pow(Math.cos(p.phi),2)*Math.pow(Math.abs(Math.sin(p.theta)),0.1)); // private Density dens = p->p.x*p.y*p.z; private long lastEffect; @Override public void start(Stage primaryStage) throws Exception { Group sceneRoot = new Group(); Scene scene = new Scene(sceneRoot, sceneWidth, sceneHeight, true, SceneAntialiasing.BALANCED); // scene.setFill(Color.BLACK); camera = new PerspectiveCamera(true); //setup camera transform for rotational support cameraTransform.setTranslate(0, 0, 0); cameraTransform.getChildren().add(camera); camera.setNearClip(0.001); camera.setFarClip(10000.0); camera.setTranslateZ(-10); cameraTransform.ry.setAngle(-45.0); cameraTransform.rx.setAngle(-10.0); //add a Point Light for better viewing of the grid coordinate system // PointLight light = new PointLight(Color.WHITE); // cameraTransform.getChildren().add(light); // light.setTranslateX(camera.getTranslateX()); // light.setTranslateY(camera.getTranslateY()); // light.setTranslateZ(camera.getTranslateZ()); scene.setCamera(camera); rotateY = new Rotate(0, 0, 0, 0, Rotate.Y_AXIS); Group group = new Group(); group.getChildren().add(cameraTransform); ico = new IcosahedronMesh(5,1f); // ico.setDrawMode(DrawMode.LINE); ico.setCullFace(CullFace.NONE); // NONE // ico.setTextureModeNone(Color.ROYALBLUE); // IMAGE // ico.setTextureModeImage(getClass().getResource("res/0ZKMx.png").toExternalForm()); // PATTERN // ico.setTextureModePattern(2d); // DENSITY ico.setTextureModeVertices3D(1530,dens); // FACES // ico.setTextureModeFaces(256); ico.getTransforms().addAll(new Rotate(30,Rotate.X_AXIS),rotateY); group.getChildren().add(ico); sceneRoot.getChildren().addAll(group); //First person shooter keyboard movement scene.setOnKeyPressed(event -> { double change = 10.0; //Add shift modifier to simulate "Running Speed" if(event.isShiftDown()) { change = 50.0; } //What key did the user press? KeyCode keycode = event.getCode(); //Step 2c: Add Zoom controls if(keycode == KeyCode.W) { camera.setTranslateZ(camera.getTranslateZ() + change); } if(keycode == KeyCode.S) { camera.setTranslateZ(camera.getTranslateZ() - change); } //Step 2d: Add Strafe controls if(keycode == KeyCode.A) { camera.setTranslateX(camera.getTranslateX() - change); } if(keycode == KeyCode.D) { camera.setTranslateX(camera.getTranslateX() + change); } }); scene.setOnMousePressed((MouseEvent me) -> { mousePosX = me.getSceneX(); mousePosY = me.getSceneY(); mouseOldX = me.getSceneX(); mouseOldY = me.getSceneY(); }); scene.setOnMouseDragged((MouseEvent me) -> { mouseOldX = mousePosX; mouseOldY = mousePosY; mousePosX = me.getSceneX(); mousePosY = me.getSceneY(); mouseDeltaX = (mousePosX - mouseOldX); mouseDeltaY = (mousePosY - mouseOldY); double modifier = 10.0; double modifierFactor = 0.1; if (me.isControlDown()) { modifier = 0.1; } if (me.isShiftDown()) { modifier = 50.0; } if (me.isPrimaryButtonDown()) { cameraTransform.ry.setAngle(((cameraTransform.ry.getAngle() + mouseDeltaX * modifierFactor * modifier * 2.0) % 360 + 540) % 360 - 180); // + cameraTransform.rx.setAngle(((cameraTransform.rx.getAngle() - mouseDeltaY * modifierFactor * modifier * 2.0) % 360 + 540) % 360 - 180); // - } else if (me.isSecondaryButtonDown()) { double z = camera.getTranslateZ(); double newZ = z + mouseDeltaX * modifierFactor * modifier; camera.setTranslateZ(newZ); } else if (me.isMiddleButtonDown()) { cameraTransform.t.setX(cameraTransform.t.getX() + mouseDeltaX * modifierFactor * modifier * 0.3); // - cameraTransform.t.setY(cameraTransform.t.getY() + mouseDeltaY * modifierFactor * modifier * 0.3); // - } }); lastEffect = System.nanoTime(); AtomicInteger count=new AtomicInteger(); AnimationTimer timerEffect = new AnimationTimer() { @Override public void handle(long now) { if (now > lastEffect + 100_000_000l) { double cont1=0.1+(count.get()%60)/10d; double cont2=0.1+(count.getAndIncrement()%30)/10d; // dens = p->(float)(3d*Math.pow(Math.sin(p.phi),2)*Math.pow(Math.abs(Math.cos(p.theta)),cont1)+ // Math.pow(Math.cos(p.phi),2)*Math.pow(Math.abs(Math.sin(p.theta)),cont2)); //dens = p->10*cont1*Math.pow(Math.abs(p.x),cont1)*Math.pow(Math.abs(p.y),cont2)*Math.pow(p.z,2); double t=count.getAndIncrement()%10; dens = p->(double)(p.x+t)*(p.y+t)*(p.z+t); ico.setDensity(dens); // ico.setColors((int)Math.pow(2,count.get()%16)); // ico.setLevel(count.get()%8); // ico.setDiameter(0.5f+10*(float)cont1); lastEffect = now; } } }; Timeline timeline = new Timeline(); timeline.setCycleCount(Timeline.INDEFINITE); timeline.getKeyFrames().add(new KeyFrame(Duration.seconds(50), new KeyValue(rotateY.angleProperty(), 360))); primaryStage.setTitle("F(X)yz - Moving Contour Plot Test"); primaryStage.setScene(scene); primaryStage.show(); timerEffect.start(); // timeline.play(); } /** * @param args the command line arguments */ public static void main(String[] args) { launch(args); } }