Pular para o conteúdo principal

Quick visual effects apps development with JavaFX

Processing is a great programming language based on Java with versions for Javascript and for Python. If you don't know it, just watch a few Daniel Shiffman videos to quickly fall in love with this technology. I talked about processing and JavaFX in this post.
JavaFX is great as well and it is available in the JDK 1.8 - which means that no external libraries is required to create JavaFX applications. In this article I will show you a class I have been using to approach JavaFX to the Processing programming style.
This is not intended to have processing running on top of JavaFX. Processing is big and I would take a few days porting all methods and classes to a JavaFX app. The idea is quickly start drawing instead have to create stage, initializing, etc. Of course, the code is on github, so if you want to contribute a PR is more than welcome!
So the idea is:


  • Extend a class;
  • Override setup method to define app title, frames, width, height;
  • Override draw to animate things - bear in mind draw is called X times per second depending on value you set on frames;
  • Override event listeners methods you want;

The class to extend is DrawingApp and an example is the classing bouncing balls app. Source code:

package org.fxapps.drawingfx;
import javafx.scene.paint.Color;
public class BouncingBalls extends DrawingApp {
Ball[] balls = new Ball[20];
public static void main(String[] args) {
launch();
}
@Override
void setup() {
title = "Bouncing Ball Example";
width = 800;
height = 600;
for (int i = 0; i < balls.length; i++) {
balls[i] = new Ball(width / 2, height / 2);
}
}
@Override
void draw() {
ctx.setFill(Color.LIGHTGRAY);
ctx.fillRect(0, 0, width, height);
for (Ball ball : balls) {
ball.update();
ball.show();
}
}
class Ball {
int x, y, r, speedX, speedY;
Color c;
public Ball(int x, int y) {
this.x = x;
this.y = y;
this.c = Color.rgb(random.nextInt(255), random.nextInt(255), random.nextInt(255));
r = random.nextInt(100);
speedX = 40 - random.nextInt(40) - 20;
speedY = random.nextInt(40) - 20;
}
void update() {
this.x+= speedX;
this.y+= speedY;
if(x < 0 || x > width) {
speedX *= -1;
}
if(y < 0 || y > height) {
speedY *= -1;
}
}
void show() {
ctx.setFill(c);
ctx.fillOval(x, y, r, r);
}
}
}
package org.fxapps.drawingfx;
import static java.lang.Math.pow;
import static java.lang.Math.sqrt;
import java.util.Random;
import javafx.animation.KeyFrame;
import javafx.animation.Timeline;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.canvas.Canvas;
import javafx.scene.canvas.GraphicsContext;
import javafx.scene.input.KeyEvent;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
import javafx.util.Duration;
/**
*
* Class to quick start drawing with JavaFX. Just extend this class and create your application!
*
* @author wsiqueir
*
*/
public abstract class DrawingApp extends Application {
public int frames = 10;
public String title = "My App";
public static int width = 600;
public static int height = 400;
public static Random random = new Random();
Canvas canvas = new Canvas();
GraphicsContext ctx = canvas.getGraphicsContext2D();
@Override
public void start(Stage stage) throws Exception {
setup();
canvas.setHeight(height);
canvas.setWidth(width);
canvas.setOnMouseClicked(this::mouseCliked);
canvas.setOnMouseDragged(this::mouseDragged);
canvas.setOnMouseMoved(this::mouseMoved);
canvas.setOnMouseEntered(this::mouseEntered);
canvas.setOnMouseExited(this::mouseExited);
canvas.setOnKeyPressed(this::keyPressed);
canvas.setOnKeyTyped(this::keyTyped);
canvas.setOnKeyReleased(this::keyReleased);
StackPane raiz = new StackPane(canvas);
stage.setTitle(title);
stage.setScene(new Scene(raiz, width, height));
stage.show();
canvas.requestFocus();
KeyFrame frame = new KeyFrame(Duration.millis(1000 / frames), e -> draw());
Timeline timeline = new Timeline(frame);
timeline.setCycleCount(Timeline.INDEFINITE);
timeline.play();
}
// classical setup and draw methods from Processing
void setup() {
}
void draw() {
}
// event listeners - if user override the method with event, the method
// without event won't be called
public void mouseCliked(MouseEvent e) {
mouseCliked();
}
public void mouseDragged(MouseEvent e) {
mouseDragged();
}
public void mouseMoved(MouseEvent e) {
mouseMoved();
}
public void mouseEntered(MouseEvent e) {
mouseEntered();
}
public void mouseExited(MouseEvent e) {
mouseExited();
}
public void keyPressed(KeyEvent e) {
keyPressed();
}
public void keyTyped(KeyEvent e) {
keyTyped();
}
public void keyReleased(KeyEvent e) {
keyReleased();
}
public void mouseCliked() {
}
public void mouseDragged() {
}
public void mouseMoved() {
}
public void mouseEntered() {
}
public void mouseExited() {
}
public void keyPressed() {
}
public void keyTyped() {
}
public void keyReleased() {
}
/*
* Utility methods
*/
public double distance(double x, double y, double x2, double y2) {
return sqrt(pow(x2 - x, 2) + pow(y2 - y, 2));
}
}
view raw DrawingApp.java hosted with ❤ by GitHub
Which results in:


Bouncing balls example

I didn't bother to get rid of the main method - if you  have any idea to avoid it, please let me know!

Conclusion


I liked this idea and to be honest, I wanted to have a "Processing JavaFX" thing so I would be able to use processing inside a JavaFX app, but I am happy with this class I have been using in some fun stuff I created. If you have any idea of improvement, please send me PRs on github or comment on this post!

Comentários

Postagens mais visitadas deste blog

Dancing lights with Arduino - The idea

I have been having fun with Arduino these days! In this article I am going to show how did I use an electret mic with Arduino to create a Dancing Lights circuit. Dancing Lights   I used to be an eletronician before starting the IT college. I had my own electronics maintenance office to fix television, radios, etc. In my free time I used to create electronic projects to sell and I made a few "reais" selling a version of Dancing lights, but it was too limited: it simply animated lamps using a relay in the output of a 4017 CMOS IC. The circuit was a decimal counter  controlled by a 555. 4017 decimal counter. Source in the image When I met Arduino a few years ago, I was skeptical because I said: I can do this with IC, why should I use a microcontroller. I thought that Arduino was for kids. But now my pride is gone and I am having a lot of fun with Arduino :-) The implementation of Dancing Lights with Arduino uses an electret mic to capture the sound and light leds...

Simplest JavaFX ComboBox autocomplete

Based on this Brazilian community post , I've created a sample Combobox auto complete. What it basically does is: When user type with the combobox selected, it will work on a temporary string to store the typed text; Each key typed leads to the combobox to be showed and updated If backspace is type, we update the filter Each key typed shows the combo box items, when the combobox is hidden, the filter is cleaned and the tooltip is hidden:   The class code and a sample application is below. I also added the source to my personal github , sent me PR to improve it and there are a lot of things to improve, like space and accents support.

Genetic algorithms with Java

One of the most fascinating topics in computer science world is Artificial Intelligence . A subset of Artificial intelligence are the algorithms that were created inspired in the nature. In this group, we have Genetic Algorithms  (GA). Genetic Algorithms  To find out more about this topic I recommend the following MIT lecture and the Nature of Code book and videos created by Daniel Shiffman. Genetic Algorithms using Java After I remembered the basics about it, I wanted to practice, so I tried my own implementation, but I would have to write a lot of code to do what certainly others already did. So I started looking for Genetic Algorithm libraries and found Jenetics , which is a modern library that uses Java 8 concepts and APIs, and there's also JGAP . I decided to use Jenetics because the User Guide was so clear and it has no other dependency, but Java 8. The only thing I missed for Jenetics are more small examples like the ones I will show i...